tar-tree deprecation: we eat our own dog food.
[git.git] / gitweb / gitweb.perl
blob6e1496d6ac9678b7fe582e25cd6cfd4f39ca4c06
1 #!/usr/bin/perl
3 # gitweb - simple web interface to track changes in git repositories
5 # (C) 2005-2006, Kay Sievers <kay.sievers@vrfy.org>
6 # (C) 2005, Christian Gierke
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)}
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
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]},
107 sub gitweb_check_feature {
108 my ($name) = @_;
109 return 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;
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 ();
155 return ($ctype, $suffix, $command);
158 sub gitweb_have_snapshot {
159 my ($ctype, $suffix, $command) = gitweb_check_feature('snapshot');
160 my $have_snapshot = (defined $ctype && defined $suffix);
162 return $have_snapshot;
165 # To enable system wide have in $GITWEB_CONFIG
166 # $feature{'pickaxe'}{'default'} = [1];
167 # To have project specific config enable override in $GITWEB_CONFIG
168 # $feature{'pickaxe'}{'override'} = 1;
169 # and in project config gitweb.pickaxe = 0|1;
171 sub feature_pickaxe {
172 my ($val) = git_get_project_config('pickaxe', '--bool');
174 if ($val eq 'true') {
175 return (1);
176 } elsif ($val eq 'false') {
177 return (0);
180 return ($_[0]);
183 # rename detection options for git-diff and git-diff-tree
184 # - default is '-M', with the cost proportional to
185 # (number of removed files) * (number of new files).
186 # - more costly is '-C' (or '-C', '-M'), with the cost proportional to
187 # (number of changed files + number of removed files) * (number of new files)
188 # - even more costly is '-C', '--find-copies-harder' with cost
189 # (number of files in the original tree) * (number of new files)
190 # - one might want to include '-B' option, e.g. '-B', '-M'
191 our @diff_opts = ('-M'); # taken from git_commit
193 our $GITWEB_CONFIG = $ENV{'GITWEB_CONFIG'} || "++GITWEB_CONFIG++";
194 do $GITWEB_CONFIG if -e $GITWEB_CONFIG;
196 # version of the core git binary
197 our $git_version = qx($GIT --version) =~ m/git version (.*)$/ ? $1 : "unknown";
199 $projects_list ||= $projectroot;
201 # ======================================================================
202 # input validation and dispatch
203 our $action = $cgi->param('a');
204 if (defined $action) {
205 if ($action =~ m/[^0-9a-zA-Z\.\-_]/) {
206 die_error(undef, "Invalid action parameter");
210 # parameters which are pathnames
211 our $project = $cgi->param('p');
212 if (defined $project) {
213 if (!validate_pathname($project) ||
214 !(-d "$projectroot/$project") ||
215 !(-e "$projectroot/$project/HEAD") ||
216 ($export_ok && !(-e "$projectroot/$project/$export_ok")) ||
217 ($strict_export && !project_in_list($project))) {
218 undef $project;
219 die_error(undef, "No such project");
223 our $file_name = $cgi->param('f');
224 if (defined $file_name) {
225 if (!validate_pathname($file_name)) {
226 die_error(undef, "Invalid file parameter");
230 our $file_parent = $cgi->param('fp');
231 if (defined $file_parent) {
232 if (!validate_pathname($file_parent)) {
233 die_error(undef, "Invalid file parent parameter");
237 # parameters which are refnames
238 our $hash = $cgi->param('h');
239 if (defined $hash) {
240 if (!validate_refname($hash)) {
241 die_error(undef, "Invalid hash parameter");
245 our $hash_parent = $cgi->param('hp');
246 if (defined $hash_parent) {
247 if (!validate_refname($hash_parent)) {
248 die_error(undef, "Invalid hash parent parameter");
252 our $hash_base = $cgi->param('hb');
253 if (defined $hash_base) {
254 if (!validate_refname($hash_base)) {
255 die_error(undef, "Invalid hash base parameter");
259 our $hash_parent_base = $cgi->param('hpb');
260 if (defined $hash_parent_base) {
261 if (!validate_refname($hash_parent_base)) {
262 die_error(undef, "Invalid hash parent base parameter");
266 # other parameters
267 our $page = $cgi->param('pg');
268 if (defined $page) {
269 if ($page =~ m/[^0-9]/) {
270 die_error(undef, "Invalid page parameter");
274 our $searchtext = $cgi->param('s');
275 if (defined $searchtext) {
276 if ($searchtext =~ m/[^a-zA-Z0-9_\.\/\-\+\:\@ ]/) {
277 die_error(undef, "Invalid search parameter");
279 $searchtext = quotemeta $searchtext;
282 # now read PATH_INFO and use it as alternative to parameters
283 sub evaluate_path_info {
284 return if defined $project;
285 my $path_info = $ENV{"PATH_INFO"};
286 return if !$path_info;
287 $path_info =~ s,^/+,,;
288 return if !$path_info;
289 # find which part of PATH_INFO is project
290 $project = $path_info;
291 $project =~ s,/+$,,;
292 while ($project && !-e "$projectroot/$project/HEAD") {
293 $project =~ s,/*[^/]*$,,;
295 # validate project
296 $project = validate_pathname($project);
297 if (!$project ||
298 ($export_ok && !-e "$projectroot/$project/$export_ok") ||
299 ($strict_export && !project_in_list($project))) {
300 undef $project;
301 return;
303 # do not change any parameters if an action is given using the query string
304 return if $action;
305 $path_info =~ s,^$project/*,,;
306 my ($refname, $pathname) = split(/:/, $path_info, 2);
307 if (defined $pathname) {
308 # we got "project.git/branch:filename" or "project.git/branch:dir/"
309 # we could use git_get_type(branch:pathname), but it needs $git_dir
310 $pathname =~ s,^/+,,;
311 if (!$pathname || substr($pathname, -1) eq "/") {
312 $action ||= "tree";
313 $pathname =~ s,/$,,;
314 } else {
315 $action ||= "blob_plain";
317 $hash_base ||= validate_refname($refname);
318 $file_name ||= validate_pathname($pathname);
319 } elsif (defined $refname) {
320 # we got "project.git/branch"
321 $action ||= "shortlog";
322 $hash ||= validate_refname($refname);
325 evaluate_path_info();
327 # path to the current git repository
328 our $git_dir;
329 $git_dir = "$projectroot/$project" if $project;
331 # dispatch
332 my %actions = (
333 "blame" => \&git_blame2,
334 "blobdiff" => \&git_blobdiff,
335 "blobdiff_plain" => \&git_blobdiff_plain,
336 "blob" => \&git_blob,
337 "blob_plain" => \&git_blob_plain,
338 "commitdiff" => \&git_commitdiff,
339 "commitdiff_plain" => \&git_commitdiff_plain,
340 "commit" => \&git_commit,
341 "heads" => \&git_heads,
342 "history" => \&git_history,
343 "log" => \&git_log,
344 "rss" => \&git_rss,
345 "search" => \&git_search,
346 "shortlog" => \&git_shortlog,
347 "summary" => \&git_summary,
348 "tag" => \&git_tag,
349 "tags" => \&git_tags,
350 "tree" => \&git_tree,
351 "snapshot" => \&git_snapshot,
352 # those below don't need $project
353 "opml" => \&git_opml,
354 "project_list" => \&git_project_list,
355 "project_index" => \&git_project_index,
358 if (defined $project) {
359 $action ||= 'summary';
360 } else {
361 $action ||= 'project_list';
363 if (!defined($actions{$action})) {
364 die_error(undef, "Unknown action");
366 if ($action !~ m/^(opml|project_list|project_index)$/ &&
367 !$project) {
368 die_error(undef, "Project needed");
370 $actions{$action}->();
371 exit;
373 ## ======================================================================
374 ## action links
376 sub href(%) {
377 my %params = @_;
379 my @mapping = (
380 project => "p",
381 action => "a",
382 file_name => "f",
383 file_parent => "fp",
384 hash => "h",
385 hash_parent => "hp",
386 hash_base => "hb",
387 hash_parent_base => "hpb",
388 page => "pg",
389 order => "o",
390 searchtext => "s",
392 my %mapping = @mapping;
394 $params{'project'} = $project unless exists $params{'project'};
396 my @result = ();
397 for (my $i = 0; $i < @mapping; $i += 2) {
398 my ($name, $symbol) = ($mapping[$i], $mapping[$i+1]);
399 if (defined $params{$name}) {
400 push @result, $symbol . "=" . esc_param($params{$name});
403 return "$my_uri?" . join(';', @result);
407 ## ======================================================================
408 ## validation, quoting/unquoting and escaping
410 sub validate_pathname {
411 my $input = shift || return undef;
413 # no '.' or '..' as elements of path, i.e. no '.' nor '..'
414 # at the beginning, at the end, and between slashes.
415 # also this catches doubled slashes
416 if ($input =~ m!(^|/)(|\.|\.\.)(/|$)!) {
417 return undef;
419 # no null characters
420 if ($input =~ m!\0!) {
421 return undef;
423 return $input;
426 sub validate_refname {
427 my $input = shift || return undef;
429 # textual hashes are O.K.
430 if ($input =~ m/^[0-9a-fA-F]{40}$/) {
431 return $input;
433 # it must be correct pathname
434 $input = validate_pathname($input)
435 or return undef;
436 # restrictions on ref name according to git-check-ref-format
437 if ($input =~ m!(/\.|\.\.|[\000-\040\177 ~^:?*\[]|/$)!) {
438 return undef;
440 return $input;
443 # quote unsafe chars, but keep the slash, even when it's not
444 # correct, but quoted slashes look too horrible in bookmarks
445 sub esc_param {
446 my $str = shift;
447 $str =~ s/([^A-Za-z0-9\-_.~()\/:@])/sprintf("%%%02X", ord($1))/eg;
448 $str =~ s/\+/%2B/g;
449 $str =~ s/ /\+/g;
450 return $str;
453 # quote unsafe chars in whole URL, so some charactrs cannot be quoted
454 sub esc_url {
455 my $str = shift;
456 $str =~ s/([^A-Za-z0-9\-_.~();\/;?:@&=])/sprintf("%%%02X", ord($1))/eg;
457 $str =~ s/\+/%2B/g;
458 $str =~ s/ /\+/g;
459 return $str;
462 # replace invalid utf8 character with SUBSTITUTION sequence
463 sub esc_html {
464 my $str = shift;
465 $str = decode("utf8", $str, Encode::FB_DEFAULT);
466 $str = escapeHTML($str);
467 $str =~ s/\014/^L/g; # escape FORM FEED (FF) character (e.g. in COPYING file)
468 $str =~ s/\033/^[/g; # "escape" ESCAPE (\e) character (e.g. commit 20a3847d8a5032ce41f90dcc68abfb36e6fee9b1)
469 return $str;
472 # git may return quoted and escaped filenames
473 sub unquote {
474 my $str = shift;
475 if ($str =~ m/^"(.*)"$/) {
476 $str = $1;
477 $str =~ s/\\([0-7]{1,3})/chr(oct($1))/eg;
479 return $str;
482 # escape tabs (convert tabs to spaces)
483 sub untabify {
484 my $line = shift;
486 while ((my $pos = index($line, "\t")) != -1) {
487 if (my $count = (8 - ($pos % 8))) {
488 my $spaces = ' ' x $count;
489 $line =~ s/\t/$spaces/;
493 return $line;
496 sub project_in_list {
497 my $project = shift;
498 my @list = git_get_projects_list();
499 return @list && scalar(grep { $_->{'path'} eq $project } @list);
502 ## ----------------------------------------------------------------------
503 ## HTML aware string manipulation
505 sub chop_str {
506 my $str = shift;
507 my $len = shift;
508 my $add_len = shift || 10;
510 # allow only $len chars, but don't cut a word if it would fit in $add_len
511 # if it doesn't fit, cut it if it's still longer than the dots we would add
512 $str =~ m/^(.{0,$len}[^ \/\-_:\.@]{0,$add_len})(.*)/;
513 my $body = $1;
514 my $tail = $2;
515 if (length($tail) > 4) {
516 $tail = " ...";
517 $body =~ s/&[^;]*$//; # remove chopped character entities
519 return "$body$tail";
522 ## ----------------------------------------------------------------------
523 ## functions returning short strings
525 # CSS class for given age value (in seconds)
526 sub age_class {
527 my $age = shift;
529 if ($age < 60*60*2) {
530 return "age0";
531 } elsif ($age < 60*60*24*2) {
532 return "age1";
533 } else {
534 return "age2";
538 # convert age in seconds to "nn units ago" string
539 sub age_string {
540 my $age = shift;
541 my $age_str;
543 if ($age > 60*60*24*365*2) {
544 $age_str = (int $age/60/60/24/365);
545 $age_str .= " years ago";
546 } elsif ($age > 60*60*24*(365/12)*2) {
547 $age_str = int $age/60/60/24/(365/12);
548 $age_str .= " months ago";
549 } elsif ($age > 60*60*24*7*2) {
550 $age_str = int $age/60/60/24/7;
551 $age_str .= " weeks ago";
552 } elsif ($age > 60*60*24*2) {
553 $age_str = int $age/60/60/24;
554 $age_str .= " days ago";
555 } elsif ($age > 60*60*2) {
556 $age_str = int $age/60/60;
557 $age_str .= " hours ago";
558 } elsif ($age > 60*2) {
559 $age_str = int $age/60;
560 $age_str .= " min ago";
561 } elsif ($age > 2) {
562 $age_str = int $age;
563 $age_str .= " sec ago";
564 } else {
565 $age_str .= " right now";
567 return $age_str;
570 # convert file mode in octal to symbolic file mode string
571 sub mode_str {
572 my $mode = oct shift;
574 if (S_ISDIR($mode & S_IFMT)) {
575 return 'drwxr-xr-x';
576 } elsif (S_ISLNK($mode)) {
577 return 'lrwxrwxrwx';
578 } elsif (S_ISREG($mode)) {
579 # git cares only about the executable bit
580 if ($mode & S_IXUSR) {
581 return '-rwxr-xr-x';
582 } else {
583 return '-rw-r--r--';
585 } else {
586 return '----------';
590 # convert file mode in octal to file type string
591 sub file_type {
592 my $mode = shift;
594 if ($mode !~ m/^[0-7]+$/) {
595 return $mode;
596 } else {
597 $mode = oct $mode;
600 if (S_ISDIR($mode & S_IFMT)) {
601 return "directory";
602 } elsif (S_ISLNK($mode)) {
603 return "symlink";
604 } elsif (S_ISREG($mode)) {
605 return "file";
606 } else {
607 return "unknown";
611 ## ----------------------------------------------------------------------
612 ## functions returning short HTML fragments, or transforming HTML fragments
613 ## which don't beling to other sections
615 # format line of commit message or tag comment
616 sub format_log_line_html {
617 my $line = shift;
619 $line = esc_html($line);
620 $line =~ s/ /&nbsp;/g;
621 if ($line =~ m/([0-9a-fA-F]{40})/) {
622 my $hash_text = $1;
623 if (git_get_type($hash_text) eq "commit") {
624 my $link =
625 $cgi->a({-href => href(action=>"commit", hash=>$hash_text),
626 -class => "text"}, $hash_text);
627 $line =~ s/$hash_text/$link/;
630 return $line;
633 # format marker of refs pointing to given object
634 sub format_ref_marker {
635 my ($refs, $id) = @_;
636 my $markers = '';
638 if (defined $refs->{$id}) {
639 foreach my $ref (@{$refs->{$id}}) {
640 my ($type, $name) = qw();
641 # e.g. tags/v2.6.11 or heads/next
642 if ($ref =~ m!^(.*?)s?/(.*)$!) {
643 $type = $1;
644 $name = $2;
645 } else {
646 $type = "ref";
647 $name = $ref;
650 $markers .= " <span class=\"$type\">" . esc_html($name) . "</span>";
654 if ($markers) {
655 return ' <span class="refs">'. $markers . '</span>';
656 } else {
657 return "";
661 # format, perhaps shortened and with markers, title line
662 sub format_subject_html {
663 my ($long, $short, $href, $extra) = @_;
664 $extra = '' unless defined($extra);
666 if (length($short) < length($long)) {
667 return $cgi->a({-href => $href, -class => "list subject",
668 -title => decode("utf8", $long, Encode::FB_DEFAULT)},
669 esc_html($short) . $extra);
670 } else {
671 return $cgi->a({-href => $href, -class => "list subject"},
672 esc_html($long) . $extra);
676 sub format_diff_line {
677 my $line = shift;
678 my $char = substr($line, 0, 1);
679 my $diff_class = "";
681 chomp $line;
683 if ($char eq '+') {
684 $diff_class = " add";
685 } elsif ($char eq "-") {
686 $diff_class = " rem";
687 } elsif ($char eq "@") {
688 $diff_class = " chunk_header";
689 } elsif ($char eq "\\") {
690 $diff_class = " incomplete";
692 $line = untabify($line);
693 return "<div class=\"diff$diff_class\">" . esc_html($line) . "</div>\n";
696 ## ----------------------------------------------------------------------
697 ## git utility subroutines, invoking git commands
699 # returns path to the core git executable and the --git-dir parameter as list
700 sub git_cmd {
701 return $GIT, '--git-dir='.$git_dir;
704 # returns path to the core git executable and the --git-dir parameter as string
705 sub git_cmd_str {
706 return join(' ', git_cmd());
709 # get HEAD ref of given project as hash
710 sub git_get_head_hash {
711 my $project = shift;
712 my $o_git_dir = $git_dir;
713 my $retval = undef;
714 $git_dir = "$projectroot/$project";
715 if (open my $fd, "-|", git_cmd(), "rev-parse", "--verify", "HEAD") {
716 my $head = <$fd>;
717 close $fd;
718 if (defined $head && $head =~ /^([0-9a-fA-F]{40})$/) {
719 $retval = $1;
722 if (defined $o_git_dir) {
723 $git_dir = $o_git_dir;
725 return $retval;
728 # get type of given object
729 sub git_get_type {
730 my $hash = shift;
732 open my $fd, "-|", git_cmd(), "cat-file", '-t', $hash or return;
733 my $type = <$fd>;
734 close $fd or return;
735 chomp $type;
736 return $type;
739 sub git_get_project_config {
740 my ($key, $type) = @_;
742 return unless ($key);
743 $key =~ s/^gitweb\.//;
744 return if ($key =~ m/\W/);
746 my @x = (git_cmd(), 'repo-config');
747 if (defined $type) { push @x, $type; }
748 push @x, "--get";
749 push @x, "gitweb.$key";
750 my $val = qx(@x);
751 chomp $val;
752 return ($val);
755 # get hash of given path at given ref
756 sub git_get_hash_by_path {
757 my $base = shift;
758 my $path = shift || return undef;
759 my $type = shift;
761 $path =~ s,/+$,,;
763 open my $fd, "-|", git_cmd(), "ls-tree", $base, "--", $path
764 or die_error(undef, "Open git-ls-tree failed");
765 my $line = <$fd>;
766 close $fd or return undef;
768 #'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'
769 $line =~ m/^([0-9]+) (.+) ([0-9a-fA-F]{40})\t(.+)$/;
770 if (defined $type && $type ne $2) {
771 # type doesn't match
772 return undef;
774 return $3;
777 ## ......................................................................
778 ## git utility functions, directly accessing git repository
780 sub git_get_project_description {
781 my $path = shift;
783 open my $fd, "$projectroot/$path/description" or return undef;
784 my $descr = <$fd>;
785 close $fd;
786 chomp $descr;
787 return $descr;
790 sub git_get_project_url_list {
791 my $path = shift;
793 open my $fd, "$projectroot/$path/cloneurl" or return;
794 my @git_project_url_list = map { chomp; $_ } <$fd>;
795 close $fd;
797 return wantarray ? @git_project_url_list : \@git_project_url_list;
800 sub git_get_projects_list {
801 my @list;
803 if (-d $projects_list) {
804 # search in directory
805 my $dir = $projects_list;
806 my $pfxlen = length("$dir");
808 File::Find::find({
809 follow_fast => 1, # follow symbolic links
810 dangling_symlinks => 0, # ignore dangling symlinks, silently
811 wanted => sub {
812 # skip project-list toplevel, if we get it.
813 return if (m!^[/.]$!);
814 # only directories can be git repositories
815 return unless (-d $_);
817 my $subdir = substr($File::Find::name, $pfxlen + 1);
818 # we check related file in $projectroot
819 if (-e "$projectroot/$subdir/HEAD" && (!$export_ok ||
820 -e "$projectroot/$subdir/$export_ok")) {
821 push @list, { path => $subdir };
822 $File::Find::prune = 1;
825 }, "$dir");
827 } elsif (-f $projects_list) {
828 # read from file(url-encoded):
829 # 'git%2Fgit.git Linus+Torvalds'
830 # 'libs%2Fklibc%2Fklibc.git H.+Peter+Anvin'
831 # 'linux%2Fhotplug%2Fudev.git Greg+Kroah-Hartman'
832 open my ($fd), $projects_list or return;
833 while (my $line = <$fd>) {
834 chomp $line;
835 my ($path, $owner) = split ' ', $line;
836 $path = unescape($path);
837 $owner = unescape($owner);
838 if (!defined $path) {
839 next;
841 if (-e "$projectroot/$path/HEAD" && (!$export_ok ||
842 -e "$projectroot/$path/$export_ok")) {
843 my $pr = {
844 path => $path,
845 owner => decode("utf8", $owner, Encode::FB_DEFAULT),
847 push @list, $pr
850 close $fd;
852 @list = sort {$a->{'path'} cmp $b->{'path'}} @list;
853 return @list;
856 sub git_get_project_owner {
857 my $project = shift;
858 my $owner;
860 return undef unless $project;
862 # read from file (url-encoded):
863 # 'git%2Fgit.git Linus+Torvalds'
864 # 'libs%2Fklibc%2Fklibc.git H.+Peter+Anvin'
865 # 'linux%2Fhotplug%2Fudev.git Greg+Kroah-Hartman'
866 if (-f $projects_list) {
867 open (my $fd , $projects_list);
868 while (my $line = <$fd>) {
869 chomp $line;
870 my ($pr, $ow) = split ' ', $line;
871 $pr = unescape($pr);
872 $ow = unescape($ow);
873 if ($pr eq $project) {
874 $owner = decode("utf8", $ow, Encode::FB_DEFAULT);
875 last;
878 close $fd;
880 if (!defined $owner) {
881 $owner = get_file_owner("$projectroot/$project");
884 return $owner;
887 sub git_get_references {
888 my $type = shift || "";
889 my %refs;
890 # 5dc01c595e6c6ec9ccda4f6f69c131c0dd945f8c refs/tags/v2.6.11
891 # c39ae07f393806ccf406ef966e9a15afc43cc36a refs/tags/v2.6.11^{}
892 open my $fd, "-|", $GIT, "peek-remote", "$projectroot/$project/"
893 or return;
895 while (my $line = <$fd>) {
896 chomp $line;
897 if ($line =~ m/^([0-9a-fA-F]{40})\trefs\/($type\/?[^\^]+)/) {
898 if (defined $refs{$1}) {
899 push @{$refs{$1}}, $2;
900 } else {
901 $refs{$1} = [ $2 ];
905 close $fd or return;
906 return \%refs;
909 sub git_get_rev_name_tags {
910 my $hash = shift || return undef;
912 open my $fd, "-|", git_cmd(), "name-rev", "--tags", $hash
913 or return;
914 my $name_rev = <$fd>;
915 close $fd;
917 if ($name_rev =~ m|^$hash tags/(.*)$|) {
918 return $1;
919 } else {
920 # catches also '$hash undefined' output
921 return undef;
925 ## ----------------------------------------------------------------------
926 ## parse to hash functions
928 sub parse_date {
929 my $epoch = shift;
930 my $tz = shift || "-0000";
932 my %date;
933 my @months = ("Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec");
934 my @days = ("Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat");
935 my ($sec, $min, $hour, $mday, $mon, $year, $wday, $yday) = gmtime($epoch);
936 $date{'hour'} = $hour;
937 $date{'minute'} = $min;
938 $date{'mday'} = $mday;
939 $date{'day'} = $days[$wday];
940 $date{'month'} = $months[$mon];
941 $date{'rfc2822'} = sprintf "%s, %d %s %4d %02d:%02d:%02d +0000",
942 $days[$wday], $mday, $months[$mon], 1900+$year, $hour ,$min, $sec;
943 $date{'mday-time'} = sprintf "%d %s %02d:%02d",
944 $mday, $months[$mon], $hour ,$min;
946 $tz =~ m/^([+\-][0-9][0-9])([0-9][0-9])$/;
947 my $local = $epoch + ((int $1 + ($2/60)) * 3600);
948 ($sec, $min, $hour, $mday, $mon, $year, $wday, $yday) = gmtime($local);
949 $date{'hour_local'} = $hour;
950 $date{'minute_local'} = $min;
951 $date{'tz_local'} = $tz;
952 return %date;
955 sub parse_tag {
956 my $tag_id = shift;
957 my %tag;
958 my @comment;
960 open my $fd, "-|", git_cmd(), "cat-file", "tag", $tag_id or return;
961 $tag{'id'} = $tag_id;
962 while (my $line = <$fd>) {
963 chomp $line;
964 if ($line =~ m/^object ([0-9a-fA-F]{40})$/) {
965 $tag{'object'} = $1;
966 } elsif ($line =~ m/^type (.+)$/) {
967 $tag{'type'} = $1;
968 } elsif ($line =~ m/^tag (.+)$/) {
969 $tag{'name'} = $1;
970 } elsif ($line =~ m/^tagger (.*) ([0-9]+) (.*)$/) {
971 $tag{'author'} = $1;
972 $tag{'epoch'} = $2;
973 $tag{'tz'} = $3;
974 } elsif ($line =~ m/--BEGIN/) {
975 push @comment, $line;
976 last;
977 } elsif ($line eq "") {
978 last;
981 push @comment, <$fd>;
982 $tag{'comment'} = \@comment;
983 close $fd or return;
984 if (!defined $tag{'name'}) {
985 return
987 return %tag
990 sub parse_commit {
991 my $commit_id = shift;
992 my $commit_text = shift;
994 my @commit_lines;
995 my %co;
997 if (defined $commit_text) {
998 @commit_lines = @$commit_text;
999 } else {
1000 $/ = "\0";
1001 open my $fd, "-|", git_cmd(), "rev-list", "--header", "--parents", "--max-count=1", $commit_id
1002 or return;
1003 @commit_lines = split '\n', <$fd>;
1004 close $fd or return;
1005 $/ = "\n";
1006 pop @commit_lines;
1008 my $header = shift @commit_lines;
1009 if (!($header =~ m/^[0-9a-fA-F]{40}/)) {
1010 return;
1012 ($co{'id'}, my @parents) = split ' ', $header;
1013 $co{'parents'} = \@parents;
1014 $co{'parent'} = $parents[0];
1015 while (my $line = shift @commit_lines) {
1016 last if $line eq "\n";
1017 if ($line =~ m/^tree ([0-9a-fA-F]{40})$/) {
1018 $co{'tree'} = $1;
1019 } elsif ($line =~ m/^author (.*) ([0-9]+) (.*)$/) {
1020 $co{'author'} = $1;
1021 $co{'author_epoch'} = $2;
1022 $co{'author_tz'} = $3;
1023 if ($co{'author'} =~ m/^([^<]+) </) {
1024 $co{'author_name'} = $1;
1025 } else {
1026 $co{'author_name'} = $co{'author'};
1028 } elsif ($line =~ m/^committer (.*) ([0-9]+) (.*)$/) {
1029 $co{'committer'} = $1;
1030 $co{'committer_epoch'} = $2;
1031 $co{'committer_tz'} = $3;
1032 $co{'committer_name'} = $co{'committer'};
1033 $co{'committer_name'} =~ s/ <.*//;
1036 if (!defined $co{'tree'}) {
1037 return;
1040 foreach my $title (@commit_lines) {
1041 $title =~ s/^ //;
1042 if ($title ne "") {
1043 $co{'title'} = chop_str($title, 80, 5);
1044 # remove leading stuff of merges to make the interesting part visible
1045 if (length($title) > 50) {
1046 $title =~ s/^Automatic //;
1047 $title =~ s/^merge (of|with) /Merge ... /i;
1048 if (length($title) > 50) {
1049 $title =~ s/(http|rsync):\/\///;
1051 if (length($title) > 50) {
1052 $title =~ s/(master|www|rsync)\.//;
1054 if (length($title) > 50) {
1055 $title =~ s/kernel.org:?//;
1057 if (length($title) > 50) {
1058 $title =~ s/\/pub\/scm//;
1061 $co{'title_short'} = chop_str($title, 50, 5);
1062 last;
1065 # remove added spaces
1066 foreach my $line (@commit_lines) {
1067 $line =~ s/^ //;
1069 $co{'comment'} = \@commit_lines;
1071 my $age = time - $co{'committer_epoch'};
1072 $co{'age'} = $age;
1073 $co{'age_string'} = age_string($age);
1074 my ($sec, $min, $hour, $mday, $mon, $year, $wday, $yday) = gmtime($co{'committer_epoch'});
1075 if ($age > 60*60*24*7*2) {
1076 $co{'age_string_date'} = sprintf "%4i-%02u-%02i", 1900 + $year, $mon+1, $mday;
1077 $co{'age_string_age'} = $co{'age_string'};
1078 } else {
1079 $co{'age_string_date'} = $co{'age_string'};
1080 $co{'age_string_age'} = sprintf "%4i-%02u-%02i", 1900 + $year, $mon+1, $mday;
1082 return %co;
1085 # parse ref from ref_file, given by ref_id, with given type
1086 sub parse_ref {
1087 my $ref_file = shift;
1088 my $ref_id = shift;
1089 my $type = shift || git_get_type($ref_id);
1090 my %ref_item;
1092 $ref_item{'type'} = $type;
1093 $ref_item{'id'} = $ref_id;
1094 $ref_item{'epoch'} = 0;
1095 $ref_item{'age'} = "unknown";
1096 if ($type eq "tag") {
1097 my %tag = parse_tag($ref_id);
1098 $ref_item{'comment'} = $tag{'comment'};
1099 if ($tag{'type'} eq "commit") {
1100 my %co = parse_commit($tag{'object'});
1101 $ref_item{'epoch'} = $co{'committer_epoch'};
1102 $ref_item{'age'} = $co{'age_string'};
1103 } elsif (defined($tag{'epoch'})) {
1104 my $age = time - $tag{'epoch'};
1105 $ref_item{'epoch'} = $tag{'epoch'};
1106 $ref_item{'age'} = age_string($age);
1108 $ref_item{'reftype'} = $tag{'type'};
1109 $ref_item{'name'} = $tag{'name'};
1110 $ref_item{'refid'} = $tag{'object'};
1111 } elsif ($type eq "commit"){
1112 my %co = parse_commit($ref_id);
1113 $ref_item{'reftype'} = "commit";
1114 $ref_item{'name'} = $ref_file;
1115 $ref_item{'title'} = $co{'title'};
1116 $ref_item{'refid'} = $ref_id;
1117 $ref_item{'epoch'} = $co{'committer_epoch'};
1118 $ref_item{'age'} = $co{'age_string'};
1119 } else {
1120 $ref_item{'reftype'} = $type;
1121 $ref_item{'name'} = $ref_file;
1122 $ref_item{'refid'} = $ref_id;
1125 return %ref_item;
1128 # parse line of git-diff-tree "raw" output
1129 sub parse_difftree_raw_line {
1130 my $line = shift;
1131 my %res;
1133 # ':100644 100644 03b218260e99b78c6df0ed378e59ed9205ccc96d 3b93d5e7cc7f7dd4ebed13a5cc1a4ad976fc94d8 M ls-files.c'
1134 # ':100644 100644 7f9281985086971d3877aca27704f2aaf9c448ce bc190ebc71bbd923f2b728e505408f5e54bd073a M rev-tree.c'
1135 if ($line =~ m/^:([0-7]{6}) ([0-7]{6}) ([0-9a-fA-F]{40}) ([0-9a-fA-F]{40}) (.)([0-9]{0,3})\t(.*)$/) {
1136 $res{'from_mode'} = $1;
1137 $res{'to_mode'} = $2;
1138 $res{'from_id'} = $3;
1139 $res{'to_id'} = $4;
1140 $res{'status'} = $5;
1141 $res{'similarity'} = $6;
1142 if ($res{'status'} eq 'R' || $res{'status'} eq 'C') { # renamed or copied
1143 ($res{'from_file'}, $res{'to_file'}) = map { unquote($_) } split("\t", $7);
1144 } else {
1145 $res{'file'} = unquote($7);
1148 # 'c512b523472485aef4fff9e57b229d9d243c967f'
1149 elsif ($line =~ m/^([0-9a-fA-F]{40})$/) {
1150 $res{'commit'} = $1;
1153 return wantarray ? %res : \%res;
1156 # parse line of git-ls-tree output
1157 sub parse_ls_tree_line ($;%) {
1158 my $line = shift;
1159 my %opts = @_;
1160 my %res;
1162 #'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'
1163 $line =~ m/^([0-9]+) (.+) ([0-9a-fA-F]{40})\t(.+)$/;
1165 $res{'mode'} = $1;
1166 $res{'type'} = $2;
1167 $res{'hash'} = $3;
1168 if ($opts{'-z'}) {
1169 $res{'name'} = $4;
1170 } else {
1171 $res{'name'} = unquote($4);
1174 return wantarray ? %res : \%res;
1177 ## ......................................................................
1178 ## parse to array of hashes functions
1180 sub git_get_refs_list {
1181 my $type = shift || "";
1182 my %refs;
1183 my @reflist;
1185 my @refs;
1186 open my $fd, "-|", $GIT, "peek-remote", "$projectroot/$project/"
1187 or return;
1188 while (my $line = <$fd>) {
1189 chomp $line;
1190 if ($line =~ m/^([0-9a-fA-F]{40})\trefs\/($type\/?([^\^]+))(\^\{\})?$/) {
1191 if (defined $refs{$1}) {
1192 push @{$refs{$1}}, $2;
1193 } else {
1194 $refs{$1} = [ $2 ];
1197 if (! $4) { # unpeeled, direct reference
1198 push @refs, { hash => $1, name => $3 }; # without type
1199 } elsif ($3 eq $refs[-1]{'name'}) {
1200 # most likely a tag is followed by its peeled
1201 # (deref) one, and when that happens we know the
1202 # previous one was of type 'tag'.
1203 $refs[-1]{'type'} = "tag";
1207 close $fd;
1209 foreach my $ref (@refs) {
1210 my $ref_file = $ref->{'name'};
1211 my $ref_id = $ref->{'hash'};
1213 my $type = $ref->{'type'} || git_get_type($ref_id) || next;
1214 my %ref_item = parse_ref($ref_file, $ref_id, $type);
1216 push @reflist, \%ref_item;
1218 # sort refs by age
1219 @reflist = sort {$b->{'epoch'} <=> $a->{'epoch'}} @reflist;
1220 return (\@reflist, \%refs);
1223 ## ----------------------------------------------------------------------
1224 ## filesystem-related functions
1226 sub get_file_owner {
1227 my $path = shift;
1229 my ($dev, $ino, $mode, $nlink, $st_uid, $st_gid, $rdev, $size) = stat($path);
1230 my ($name, $passwd, $uid, $gid, $quota, $comment, $gcos, $dir, $shell) = getpwuid($st_uid);
1231 if (!defined $gcos) {
1232 return undef;
1234 my $owner = $gcos;
1235 $owner =~ s/[,;].*$//;
1236 return decode("utf8", $owner, Encode::FB_DEFAULT);
1239 ## ......................................................................
1240 ## mimetype related functions
1242 sub mimetype_guess_file {
1243 my $filename = shift;
1244 my $mimemap = shift;
1245 -r $mimemap or return undef;
1247 my %mimemap;
1248 open(MIME, $mimemap) or return undef;
1249 while (<MIME>) {
1250 next if m/^#/; # skip comments
1251 my ($mime, $exts) = split(/\t+/);
1252 if (defined $exts) {
1253 my @exts = split(/\s+/, $exts);
1254 foreach my $ext (@exts) {
1255 $mimemap{$ext} = $mime;
1259 close(MIME);
1261 $filename =~ /\.([^.]*)$/;
1262 return $mimemap{$1};
1265 sub mimetype_guess {
1266 my $filename = shift;
1267 my $mime;
1268 $filename =~ /\./ or return undef;
1270 if ($mimetypes_file) {
1271 my $file = $mimetypes_file;
1272 if ($file !~ m!^/!) { # if it is relative path
1273 # it is relative to project
1274 $file = "$projectroot/$project/$file";
1276 $mime = mimetype_guess_file($filename, $file);
1278 $mime ||= mimetype_guess_file($filename, '/etc/mime.types');
1279 return $mime;
1282 sub blob_mimetype {
1283 my $fd = shift;
1284 my $filename = shift;
1286 if ($filename) {
1287 my $mime = mimetype_guess($filename);
1288 $mime and return $mime;
1291 # just in case
1292 return $default_blob_plain_mimetype unless $fd;
1294 if (-T $fd) {
1295 return 'text/plain' .
1296 ($default_text_plain_charset ? '; charset='.$default_text_plain_charset : '');
1297 } elsif (! $filename) {
1298 return 'application/octet-stream';
1299 } elsif ($filename =~ m/\.png$/i) {
1300 return 'image/png';
1301 } elsif ($filename =~ m/\.gif$/i) {
1302 return 'image/gif';
1303 } elsif ($filename =~ m/\.jpe?g$/i) {
1304 return 'image/jpeg';
1305 } else {
1306 return 'application/octet-stream';
1310 ## ======================================================================
1311 ## functions printing HTML: header, footer, error page
1313 sub git_header_html {
1314 my $status = shift || "200 OK";
1315 my $expires = shift;
1317 my $title = "$site_name git";
1318 if (defined $project) {
1319 $title .= " - $project";
1320 if (defined $action) {
1321 $title .= "/$action";
1322 if (defined $file_name) {
1323 $title .= " - " . esc_html($file_name);
1324 if ($action eq "tree" && $file_name !~ m|/$|) {
1325 $title .= "/";
1330 my $content_type;
1331 # require explicit support from the UA if we are to send the page as
1332 # 'application/xhtml+xml', otherwise send it as plain old 'text/html'.
1333 # we have to do this because MSIE sometimes globs '*/*', pretending to
1334 # support xhtml+xml but choking when it gets what it asked for.
1335 if (defined $cgi->http('HTTP_ACCEPT') &&
1336 $cgi->http('HTTP_ACCEPT') =~ m/(,|;|\s|^)application\/xhtml\+xml(,|;|\s|$)/ &&
1337 $cgi->Accept('application/xhtml+xml') != 0) {
1338 $content_type = 'application/xhtml+xml';
1339 } else {
1340 $content_type = 'text/html';
1342 print $cgi->header(-type=>$content_type, -charset => 'utf-8',
1343 -status=> $status, -expires => $expires);
1344 print <<EOF;
1345 <?xml version="1.0" encoding="utf-8"?>
1346 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
1347 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" lang="en-US">
1348 <!-- git web interface version $version, (C) 2005-2006, Kay Sievers <kay.sievers\@vrfy.org>, Christian Gierke -->
1349 <!-- git core binaries version $git_version -->
1350 <head>
1351 <meta http-equiv="content-type" content="$content_type; charset=utf-8"/>
1352 <meta name="generator" content="gitweb/$version git/$git_version"/>
1353 <meta name="robots" content="index, nofollow"/>
1354 <title>$title</title>
1355 <link rel="stylesheet" type="text/css" href="$stylesheet"/>
1357 if (defined $project) {
1358 printf('<link rel="alternate" title="%s log" '.
1359 'href="%s" type="application/rss+xml"/>'."\n",
1360 esc_param($project), href(action=>"rss"));
1361 } else {
1362 printf('<link rel="alternate" title="%s projects list" '.
1363 'href="%s" type="text/plain; charset=utf-8"/>'."\n",
1364 $site_name, href(project=>undef, action=>"project_index"));
1365 printf('<link rel="alternate" title="%s projects logs" '.
1366 'href="%s" type="text/x-opml"/>'."\n",
1367 $site_name, href(project=>undef, action=>"opml"));
1369 if (defined $favicon) {
1370 print qq(<link rel="shortcut icon" href="$favicon" type="image/png"/>\n);
1373 print "</head>\n" .
1374 "<body>\n" .
1375 "<div class=\"page_header\">\n" .
1376 "<a href=\"http://www.kernel.org/pub/software/scm/git/docs/\" title=\"git documentation\">" .
1377 "<img src=\"$logo\" width=\"72\" height=\"27\" alt=\"git\" style=\"float:right; border-width:0px;\"/>" .
1378 "</a>\n";
1379 print $cgi->a({-href => esc_url($home_link)}, $home_link_str) . " / ";
1380 if (defined $project) {
1381 print $cgi->a({-href => href(action=>"summary")}, esc_html($project));
1382 if (defined $action) {
1383 print " / $action";
1385 print "\n";
1386 if (!defined $searchtext) {
1387 $searchtext = "";
1389 my $search_hash;
1390 if (defined $hash_base) {
1391 $search_hash = $hash_base;
1392 } elsif (defined $hash) {
1393 $search_hash = $hash;
1394 } else {
1395 $search_hash = "HEAD";
1397 $cgi->param("a", "search");
1398 $cgi->param("h", $search_hash);
1399 print $cgi->startform(-method => "get", -action => $my_uri) .
1400 "<div class=\"search\">\n" .
1401 $cgi->hidden(-name => "p") . "\n" .
1402 $cgi->hidden(-name => "a") . "\n" .
1403 $cgi->hidden(-name => "h") . "\n" .
1404 $cgi->textfield(-name => "s", -value => $searchtext) . "\n" .
1405 "</div>" .
1406 $cgi->end_form() . "\n";
1408 print "</div>\n";
1411 sub git_footer_html {
1412 print "<div class=\"page_footer\">\n";
1413 if (defined $project) {
1414 my $descr = git_get_project_description($project);
1415 if (defined $descr) {
1416 print "<div class=\"page_footer_text\">" . esc_html($descr) . "</div>\n";
1418 print $cgi->a({-href => href(action=>"rss"),
1419 -class => "rss_logo"}, "RSS") . "\n";
1420 } else {
1421 print $cgi->a({-href => href(project=>undef, action=>"opml"),
1422 -class => "rss_logo"}, "OPML") . " ";
1423 print $cgi->a({-href => href(project=>undef, action=>"project_index"),
1424 -class => "rss_logo"}, "TXT") . "\n";
1426 print "</div>\n" .
1427 "</body>\n" .
1428 "</html>";
1431 sub die_error {
1432 my $status = shift || "403 Forbidden";
1433 my $error = shift || "Malformed query, file missing or permission denied";
1435 git_header_html($status);
1436 print <<EOF;
1437 <div class="page_body">
1438 <br /><br />
1439 $status - $error
1440 <br />
1441 </div>
1443 git_footer_html();
1444 exit;
1447 ## ----------------------------------------------------------------------
1448 ## functions printing or outputting HTML: navigation
1450 sub git_print_page_nav {
1451 my ($current, $suppress, $head, $treehead, $treebase, $extra) = @_;
1452 $extra = '' if !defined $extra; # pager or formats
1454 my @navs = qw(summary shortlog log commit commitdiff tree);
1455 if ($suppress) {
1456 @navs = grep { $_ ne $suppress } @navs;
1459 my %arg = map { $_ => {action=>$_} } @navs;
1460 if (defined $head) {
1461 for (qw(commit commitdiff)) {
1462 $arg{$_}{hash} = $head;
1464 if ($current =~ m/^(tree | log | shortlog | commit | commitdiff | search)$/x) {
1465 for (qw(shortlog log)) {
1466 $arg{$_}{hash} = $head;
1470 $arg{tree}{hash} = $treehead if defined $treehead;
1471 $arg{tree}{hash_base} = $treebase if defined $treebase;
1473 print "<div class=\"page_nav\">\n" .
1474 (join " | ",
1475 map { $_ eq $current ?
1476 $_ : $cgi->a({-href => href(%{$arg{$_}})}, "$_")
1477 } @navs);
1478 print "<br/>\n$extra<br/>\n" .
1479 "</div>\n";
1482 sub format_paging_nav {
1483 my ($action, $hash, $head, $page, $nrevs) = @_;
1484 my $paging_nav;
1487 if ($hash ne $head || $page) {
1488 $paging_nav .= $cgi->a({-href => href(action=>$action)}, "HEAD");
1489 } else {
1490 $paging_nav .= "HEAD";
1493 if ($page > 0) {
1494 $paging_nav .= " &sdot; " .
1495 $cgi->a({-href => href(action=>$action, hash=>$hash, page=>$page-1),
1496 -accesskey => "p", -title => "Alt-p"}, "prev");
1497 } else {
1498 $paging_nav .= " &sdot; prev";
1501 if ($nrevs >= (100 * ($page+1)-1)) {
1502 $paging_nav .= " &sdot; " .
1503 $cgi->a({-href => href(action=>$action, hash=>$hash, page=>$page+1),
1504 -accesskey => "n", -title => "Alt-n"}, "next");
1505 } else {
1506 $paging_nav .= " &sdot; next";
1509 return $paging_nav;
1512 ## ......................................................................
1513 ## functions printing or outputting HTML: div
1515 sub git_print_header_div {
1516 my ($action, $title, $hash, $hash_base) = @_;
1517 my %args = ();
1519 $args{action} = $action;
1520 $args{hash} = $hash if $hash;
1521 $args{hash_base} = $hash_base if $hash_base;
1523 print "<div class=\"header\">\n" .
1524 $cgi->a({-href => href(%args), -class => "title"},
1525 $title ? $title : $action) .
1526 "\n</div>\n";
1529 #sub git_print_authorship (\%) {
1530 sub git_print_authorship {
1531 my $co = shift;
1533 my %ad = parse_date($co->{'author_epoch'}, $co->{'author_tz'});
1534 print "<div class=\"author_date\">" .
1535 esc_html($co->{'author_name'}) .
1536 " [$ad{'rfc2822'}";
1537 if ($ad{'hour_local'} < 6) {
1538 printf(" (<span class=\"atnight\">%02d:%02d</span> %s)",
1539 $ad{'hour_local'}, $ad{'minute_local'}, $ad{'tz_local'});
1540 } else {
1541 printf(" (%02d:%02d %s)",
1542 $ad{'hour_local'}, $ad{'minute_local'}, $ad{'tz_local'});
1544 print "]</div>\n";
1547 sub git_print_page_path {
1548 my $name = shift;
1549 my $type = shift;
1550 my $hb = shift;
1552 if (!defined $name) {
1553 print "<div class=\"page_path\">/</div>\n";
1554 } else {
1555 my @dirname = split '/', $name;
1556 my $basename = pop @dirname;
1557 my $fullname = '';
1559 print "<div class=\"page_path\">";
1560 print $cgi->a({-href => href(action=>"tree", hash_base=>$hb),
1561 -title => 'tree root'}, "[$project]");
1562 print " / ";
1563 foreach my $dir (@dirname) {
1564 $fullname .= ($fullname ? '/' : '') . $dir;
1565 print $cgi->a({-href => href(action=>"tree", file_name=>$fullname,
1566 hash_base=>$hb),
1567 -title => $fullname}, esc_html($dir));
1568 print " / ";
1570 if (defined $type && $type eq 'blob') {
1571 print $cgi->a({-href => href(action=>"blob_plain", file_name=>$file_name,
1572 hash_base=>$hb),
1573 -title => $name}, esc_html($basename));
1574 } elsif (defined $type && $type eq 'tree') {
1575 print $cgi->a({-href => href(action=>"tree", file_name=>$file_name,
1576 hash_base=>$hb),
1577 -title => $name}, esc_html($basename));
1578 } else {
1579 print esc_html($basename);
1581 print "<br/></div>\n";
1585 # sub git_print_log (\@;%) {
1586 sub git_print_log ($;%) {
1587 my $log = shift;
1588 my %opts = @_;
1590 if ($opts{'-remove_title'}) {
1591 # remove title, i.e. first line of log
1592 shift @$log;
1594 # remove leading empty lines
1595 while (defined $log->[0] && $log->[0] eq "") {
1596 shift @$log;
1599 # print log
1600 my $signoff = 0;
1601 my $empty = 0;
1602 foreach my $line (@$log) {
1603 if ($line =~ m/^ *(signed[ \-]off[ \-]by[ :]|acked[ \-]by[ :]|cc[ :])/i) {
1604 $signoff = 1;
1605 $empty = 0;
1606 if (! $opts{'-remove_signoff'}) {
1607 print "<span class=\"signoff\">" . esc_html($line) . "</span><br/>\n";
1608 next;
1609 } else {
1610 # remove signoff lines
1611 next;
1613 } else {
1614 $signoff = 0;
1617 # print only one empty line
1618 # do not print empty line after signoff
1619 if ($line eq "") {
1620 next if ($empty || $signoff);
1621 $empty = 1;
1622 } else {
1623 $empty = 0;
1626 print format_log_line_html($line) . "<br/>\n";
1629 if ($opts{'-final_empty_line'}) {
1630 # end with single empty line
1631 print "<br/>\n" unless $empty;
1635 sub git_print_simplified_log {
1636 my $log = shift;
1637 my $remove_title = shift;
1639 git_print_log($log,
1640 -final_empty_line=> 1,
1641 -remove_title => $remove_title);
1644 # print tree entry (row of git_tree), but without encompassing <tr> element
1645 sub git_print_tree_entry {
1646 my ($t, $basedir, $hash_base, $have_blame) = @_;
1648 my %base_key = ();
1649 $base_key{hash_base} = $hash_base if defined $hash_base;
1651 # The format of a table row is: mode list link. Where mode is
1652 # the mode of the entry, list is the name of the entry, an href,
1653 # and link is the action links of the entry.
1655 print "<td class=\"mode\">" . mode_str($t->{'mode'}) . "</td>\n";
1656 if ($t->{'type'} eq "blob") {
1657 print "<td class=\"list\">" .
1658 $cgi->a({-href => href(action=>"blob", hash=>$t->{'hash'},
1659 file_name=>"$basedir$t->{'name'}", %base_key),
1660 -class => "list"}, esc_html($t->{'name'})) . "</td>\n";
1661 print "<td class=\"link\">";
1662 if ($have_blame) {
1663 print $cgi->a({-href => href(action=>"blame", hash=>$t->{'hash'},
1664 file_name=>"$basedir$t->{'name'}", %base_key)},
1665 "blame");
1667 if (defined $hash_base) {
1668 if ($have_blame) {
1669 print " | ";
1671 print $cgi->a({-href => href(action=>"history", hash_base=>$hash_base,
1672 hash=>$t->{'hash'}, file_name=>"$basedir$t->{'name'}")},
1673 "history");
1675 print " | " .
1676 $cgi->a({-href => href(action=>"blob_plain", hash_base=>$hash_base,
1677 file_name=>"$basedir$t->{'name'}")},
1678 "raw");
1679 print "</td>\n";
1681 } elsif ($t->{'type'} eq "tree") {
1682 print "<td class=\"list\">";
1683 print $cgi->a({-href => href(action=>"tree", hash=>$t->{'hash'},
1684 file_name=>"$basedir$t->{'name'}", %base_key)},
1685 esc_html($t->{'name'}));
1686 print "</td>\n";
1687 print "<td class=\"link\">";
1688 if (defined $hash_base) {
1689 print $cgi->a({-href => href(action=>"history", hash_base=>$hash_base,
1690 file_name=>"$basedir$t->{'name'}")},
1691 "history");
1693 print "</td>\n";
1697 ## ......................................................................
1698 ## functions printing large fragments of HTML
1700 sub git_difftree_body {
1701 my ($difftree, $hash, $parent) = @_;
1703 print "<div class=\"list_head\">\n";
1704 if ($#{$difftree} > 10) {
1705 print(($#{$difftree} + 1) . " files changed:\n");
1707 print "</div>\n";
1709 print "<table class=\"diff_tree\">\n";
1710 my $alternate = 1;
1711 my $patchno = 0;
1712 foreach my $line (@{$difftree}) {
1713 my %diff = parse_difftree_raw_line($line);
1715 if ($alternate) {
1716 print "<tr class=\"dark\">\n";
1717 } else {
1718 print "<tr class=\"light\">\n";
1720 $alternate ^= 1;
1722 my ($to_mode_oct, $to_mode_str, $to_file_type);
1723 my ($from_mode_oct, $from_mode_str, $from_file_type);
1724 if ($diff{'to_mode'} ne ('0' x 6)) {
1725 $to_mode_oct = oct $diff{'to_mode'};
1726 if (S_ISREG($to_mode_oct)) { # only for regular file
1727 $to_mode_str = sprintf("%04o", $to_mode_oct & 0777); # permission bits
1729 $to_file_type = file_type($diff{'to_mode'});
1731 if ($diff{'from_mode'} ne ('0' x 6)) {
1732 $from_mode_oct = oct $diff{'from_mode'};
1733 if (S_ISREG($to_mode_oct)) { # only for regular file
1734 $from_mode_str = sprintf("%04o", $from_mode_oct & 0777); # permission bits
1736 $from_file_type = file_type($diff{'from_mode'});
1739 if ($diff{'status'} eq "A") { # created
1740 my $mode_chng = "<span class=\"file_status new\">[new $to_file_type";
1741 $mode_chng .= " with mode: $to_mode_str" if $to_mode_str;
1742 $mode_chng .= "]</span>";
1743 print "<td>";
1744 print $cgi->a({-href => href(action=>"blob", hash=>$diff{'to_id'},
1745 hash_base=>$hash, file_name=>$diff{'file'}),
1746 -class => "list"}, esc_html($diff{'file'}));
1747 print "</td>\n";
1748 print "<td>$mode_chng</td>\n";
1749 print "<td class=\"link\">";
1750 if ($action eq 'commitdiff') {
1751 # link to patch
1752 $patchno++;
1753 print $cgi->a({-href => "#patch$patchno"}, "patch");
1755 print "</td>\n";
1757 } elsif ($diff{'status'} eq "D") { # deleted
1758 my $mode_chng = "<span class=\"file_status deleted\">[deleted $from_file_type]</span>";
1759 print "<td>";
1760 print $cgi->a({-href => href(action=>"blob", hash=>$diff{'from_id'},
1761 hash_base=>$parent, file_name=>$diff{'file'}),
1762 -class => "list"}, esc_html($diff{'file'}));
1763 print "</td>\n";
1764 print "<td>$mode_chng</td>\n";
1765 print "<td class=\"link\">";
1766 if ($action eq 'commitdiff') {
1767 # link to patch
1768 $patchno++;
1769 print $cgi->a({-href => "#patch$patchno"}, "patch");
1770 print " | ";
1772 print $cgi->a({-href => href(action=>"blame", hash_base=>$parent,
1773 file_name=>$diff{'file'})},
1774 "blame") . " | ";
1775 print $cgi->a({-href => href(action=>"history", hash_base=>$parent,
1776 file_name=>$diff{'file'})},
1777 "history");
1778 print "</td>\n";
1780 } elsif ($diff{'status'} eq "M" || $diff{'status'} eq "T") { # modified, or type changed
1781 my $mode_chnge = "";
1782 if ($diff{'from_mode'} != $diff{'to_mode'}) {
1783 $mode_chnge = "<span class=\"file_status mode_chnge\">[changed";
1784 if ($from_file_type != $to_file_type) {
1785 $mode_chnge .= " from $from_file_type to $to_file_type";
1787 if (($from_mode_oct & 0777) != ($to_mode_oct & 0777)) {
1788 if ($from_mode_str && $to_mode_str) {
1789 $mode_chnge .= " mode: $from_mode_str->$to_mode_str";
1790 } elsif ($to_mode_str) {
1791 $mode_chnge .= " mode: $to_mode_str";
1794 $mode_chnge .= "]</span>\n";
1796 print "<td>";
1797 print $cgi->a({-href => href(action=>"blob", hash=>$diff{'to_id'},
1798 hash_base=>$hash, file_name=>$diff{'file'}),
1799 -class => "list"}, esc_html($diff{'file'}));
1800 print "</td>\n";
1801 print "<td>$mode_chnge</td>\n";
1802 print "<td class=\"link\">";
1803 if ($diff{'to_id'} ne $diff{'from_id'}) { # modified
1804 if ($action eq 'commitdiff') {
1805 # link to patch
1806 $patchno++;
1807 print $cgi->a({-href => "#patch$patchno"}, "patch");
1808 } else {
1809 print $cgi->a({-href => href(action=>"blobdiff",
1810 hash=>$diff{'to_id'}, hash_parent=>$diff{'from_id'},
1811 hash_base=>$hash, hash_parent_base=>$parent,
1812 file_name=>$diff{'file'})},
1813 "diff");
1815 print " | ";
1817 print $cgi->a({-href => href(action=>"blame", hash_base=>$hash,
1818 file_name=>$diff{'file'})},
1819 "blame") . " | ";
1820 print $cgi->a({-href => href(action=>"history", hash_base=>$hash,
1821 file_name=>$diff{'file'})},
1822 "history");
1823 print "</td>\n";
1825 } elsif ($diff{'status'} eq "R" || $diff{'status'} eq "C") { # renamed or copied
1826 my %status_name = ('R' => 'moved', 'C' => 'copied');
1827 my $nstatus = $status_name{$diff{'status'}};
1828 my $mode_chng = "";
1829 if ($diff{'from_mode'} != $diff{'to_mode'}) {
1830 # mode also for directories, so we cannot use $to_mode_str
1831 $mode_chng = sprintf(", mode: %04o", $to_mode_oct & 0777);
1833 print "<td>" .
1834 $cgi->a({-href => href(action=>"blob", hash_base=>$hash,
1835 hash=>$diff{'to_id'}, file_name=>$diff{'to_file'}),
1836 -class => "list"}, esc_html($diff{'to_file'})) . "</td>\n" .
1837 "<td><span class=\"file_status $nstatus\">[$nstatus from " .
1838 $cgi->a({-href => href(action=>"blob", hash_base=>$parent,
1839 hash=>$diff{'from_id'}, file_name=>$diff{'from_file'}),
1840 -class => "list"}, esc_html($diff{'from_file'})) .
1841 " with " . (int $diff{'similarity'}) . "% similarity$mode_chng]</span></td>\n" .
1842 "<td class=\"link\">";
1843 if ($diff{'to_id'} ne $diff{'from_id'}) {
1844 if ($action eq 'commitdiff') {
1845 # link to patch
1846 $patchno++;
1847 print $cgi->a({-href => "#patch$patchno"}, "patch");
1848 } else {
1849 print $cgi->a({-href => href(action=>"blobdiff",
1850 hash=>$diff{'to_id'}, hash_parent=>$diff{'from_id'},
1851 hash_base=>$hash, hash_parent_base=>$parent,
1852 file_name=>$diff{'to_file'}, file_parent=>$diff{'from_file'})},
1853 "diff");
1855 print " | ";
1857 print $cgi->a({-href => href(action=>"blame", hash_base=>$parent,
1858 file_name=>$diff{'from_file'})},
1859 "blame") . " | ";
1860 print $cgi->a({-href => href(action=>"history", hash_base=>$parent,
1861 file_name=>$diff{'from_file'})},
1862 "history");
1863 print "</td>\n";
1865 } # we should not encounter Unmerged (U) or Unknown (X) status
1866 print "</tr>\n";
1868 print "</table>\n";
1871 sub git_patchset_body {
1872 my ($fd, $difftree, $hash, $hash_parent) = @_;
1874 my $patch_idx = 0;
1875 my $in_header = 0;
1876 my $patch_found = 0;
1877 my $diffinfo;
1879 print "<div class=\"patchset\">\n";
1881 LINE:
1882 while (my $patch_line = <$fd>) {
1883 chomp $patch_line;
1885 if ($patch_line =~ m/^diff /) { # "git diff" header
1886 # beginning of patch (in patchset)
1887 if ($patch_found) {
1888 # close previous patch
1889 print "</div>\n"; # class="patch"
1890 } else {
1891 # first patch in patchset
1892 $patch_found = 1;
1894 print "<div class=\"patch\" id=\"patch". ($patch_idx+1) ."\">\n";
1896 if (ref($difftree->[$patch_idx]) eq "HASH") {
1897 $diffinfo = $difftree->[$patch_idx];
1898 } else {
1899 $diffinfo = parse_difftree_raw_line($difftree->[$patch_idx]);
1901 $patch_idx++;
1903 # for now, no extended header, hence we skip empty patches
1904 # companion to next LINE if $in_header;
1905 if ($diffinfo->{'from_id'} eq $diffinfo->{'to_id'}) { # no change
1906 $in_header = 1;
1907 next LINE;
1910 if ($diffinfo->{'status'} eq "A") { # added
1911 print "<div class=\"diff_info\">" . file_type($diffinfo->{'to_mode'}) . ":" .
1912 $cgi->a({-href => href(action=>"blob", hash_base=>$hash,
1913 hash=>$diffinfo->{'to_id'}, file_name=>$diffinfo->{'file'})},
1914 $diffinfo->{'to_id'}) . "(new)" .
1915 "</div>\n"; # class="diff_info"
1917 } elsif ($diffinfo->{'status'} eq "D") { # deleted
1918 print "<div class=\"diff_info\">" . file_type($diffinfo->{'from_mode'}) . ":" .
1919 $cgi->a({-href => href(action=>"blob", hash_base=>$hash_parent,
1920 hash=>$diffinfo->{'from_id'}, file_name=>$diffinfo->{'file'})},
1921 $diffinfo->{'from_id'}) . "(deleted)" .
1922 "</div>\n"; # class="diff_info"
1924 } elsif ($diffinfo->{'status'} eq "R" || # renamed
1925 $diffinfo->{'status'} eq "C" || # copied
1926 $diffinfo->{'status'} eq "2") { # with two filenames (from git_blobdiff)
1927 print "<div class=\"diff_info\">" .
1928 file_type($diffinfo->{'from_mode'}) . ":" .
1929 $cgi->a({-href => href(action=>"blob", hash_base=>$hash_parent,
1930 hash=>$diffinfo->{'from_id'}, file_name=>$diffinfo->{'from_file'})},
1931 $diffinfo->{'from_id'}) .
1932 " -> " .
1933 file_type($diffinfo->{'to_mode'}) . ":" .
1934 $cgi->a({-href => href(action=>"blob", hash_base=>$hash,
1935 hash=>$diffinfo->{'to_id'}, file_name=>$diffinfo->{'to_file'})},
1936 $diffinfo->{'to_id'});
1937 print "</div>\n"; # class="diff_info"
1939 } else { # modified, mode changed, ...
1940 print "<div class=\"diff_info\">" .
1941 file_type($diffinfo->{'from_mode'}) . ":" .
1942 $cgi->a({-href => href(action=>"blob", hash_base=>$hash_parent,
1943 hash=>$diffinfo->{'from_id'}, file_name=>$diffinfo->{'file'})},
1944 $diffinfo->{'from_id'}) .
1945 " -> " .
1946 file_type($diffinfo->{'to_mode'}) . ":" .
1947 $cgi->a({-href => href(action=>"blob", hash_base=>$hash,
1948 hash=>$diffinfo->{'to_id'}, file_name=>$diffinfo->{'file'})},
1949 $diffinfo->{'to_id'});
1950 print "</div>\n"; # class="diff_info"
1953 #print "<div class=\"diff extended_header\">\n";
1954 $in_header = 1;
1955 next LINE;
1956 } # start of patch in patchset
1959 if ($in_header && $patch_line =~ m/^---/) {
1960 #print "</div>\n"; # class="diff extended_header"
1961 $in_header = 0;
1963 my $file = $diffinfo->{'from_file'};
1964 $file ||= $diffinfo->{'file'};
1965 $file = $cgi->a({-href => href(action=>"blob", hash_base=>$hash_parent,
1966 hash=>$diffinfo->{'from_id'}, file_name=>$file),
1967 -class => "list"}, esc_html($file));
1968 $patch_line =~ s|a/.*$|a/$file|g;
1969 print "<div class=\"diff from_file\">$patch_line</div>\n";
1971 $patch_line = <$fd>;
1972 chomp $patch_line;
1974 #$patch_line =~ m/^+++/;
1975 $file = $diffinfo->{'to_file'};
1976 $file ||= $diffinfo->{'file'};
1977 $file = $cgi->a({-href => href(action=>"blob", hash_base=>$hash,
1978 hash=>$diffinfo->{'to_id'}, file_name=>$file),
1979 -class => "list"}, esc_html($file));
1980 $patch_line =~ s|b/.*|b/$file|g;
1981 print "<div class=\"diff to_file\">$patch_line</div>\n";
1983 next LINE;
1985 next LINE if $in_header;
1987 print format_diff_line($patch_line);
1989 print "</div>\n" if $patch_found; # class="patch"
1991 print "</div>\n"; # class="patchset"
1994 # . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
1996 sub git_shortlog_body {
1997 # uses global variable $project
1998 my ($revlist, $from, $to, $refs, $extra) = @_;
2000 $from = 0 unless defined $from;
2001 $to = $#{$revlist} if (!defined $to || $#{$revlist} < $to);
2003 print "<table class=\"shortlog\" cellspacing=\"0\">\n";
2004 my $alternate = 1;
2005 for (my $i = $from; $i <= $to; $i++) {
2006 my $commit = $revlist->[$i];
2007 #my $ref = defined $refs ? format_ref_marker($refs, $commit) : '';
2008 my $ref = format_ref_marker($refs, $commit);
2009 my %co = parse_commit($commit);
2010 if ($alternate) {
2011 print "<tr class=\"dark\">\n";
2012 } else {
2013 print "<tr class=\"light\">\n";
2015 $alternate ^= 1;
2016 # git_summary() used print "<td><i>$co{'age_string'}</i></td>\n" .
2017 print "<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n" .
2018 "<td><i>" . esc_html(chop_str($co{'author_name'}, 10)) . "</i></td>\n" .
2019 "<td>";
2020 print format_subject_html($co{'title'}, $co{'title_short'},
2021 href(action=>"commit", hash=>$commit), $ref);
2022 print "</td>\n" .
2023 "<td class=\"link\">" .
2024 $cgi->a({-href => href(action=>"commitdiff", hash=>$commit)}, "commitdiff") . " | " .
2025 $cgi->a({-href => href(action=>"tree", hash=>$commit, hash_base=>$commit)}, "tree") . " | " .
2026 $cgi->a({-href => href(action=>"snapshot", hash=>$commit)}, "snapshot");
2027 print "</td>\n" .
2028 "</tr>\n";
2030 if (defined $extra) {
2031 print "<tr>\n" .
2032 "<td colspan=\"4\">$extra</td>\n" .
2033 "</tr>\n";
2035 print "</table>\n";
2038 sub git_history_body {
2039 # Warning: assumes constant type (blob or tree) during history
2040 my ($revlist, $from, $to, $refs, $hash_base, $ftype, $extra) = @_;
2042 $from = 0 unless defined $from;
2043 $to = $#{$revlist} unless (defined $to && $to <= $#{$revlist});
2045 print "<table class=\"history\" cellspacing=\"0\">\n";
2046 my $alternate = 1;
2047 for (my $i = $from; $i <= $to; $i++) {
2048 if ($revlist->[$i] !~ m/^([0-9a-fA-F]{40})/) {
2049 next;
2052 my $commit = $1;
2053 my %co = parse_commit($commit);
2054 if (!%co) {
2055 next;
2058 my $ref = format_ref_marker($refs, $commit);
2060 if ($alternate) {
2061 print "<tr class=\"dark\">\n";
2062 } else {
2063 print "<tr class=\"light\">\n";
2065 $alternate ^= 1;
2066 print "<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n" .
2067 # shortlog uses chop_str($co{'author_name'}, 10)
2068 "<td><i>" . esc_html(chop_str($co{'author_name'}, 15, 3)) . "</i></td>\n" .
2069 "<td>";
2070 # originally git_history used chop_str($co{'title'}, 50)
2071 print format_subject_html($co{'title'}, $co{'title_short'},
2072 href(action=>"commit", hash=>$commit), $ref);
2073 print "</td>\n" .
2074 "<td class=\"link\">" .
2075 $cgi->a({-href => href(action=>$ftype, hash_base=>$commit, file_name=>$file_name)}, $ftype) . " | " .
2076 $cgi->a({-href => href(action=>"commitdiff", hash=>$commit)}, "commitdiff");
2078 if ($ftype eq 'blob') {
2079 my $blob_current = git_get_hash_by_path($hash_base, $file_name);
2080 my $blob_parent = git_get_hash_by_path($commit, $file_name);
2081 if (defined $blob_current && defined $blob_parent &&
2082 $blob_current ne $blob_parent) {
2083 print " | " .
2084 $cgi->a({-href => href(action=>"blobdiff",
2085 hash=>$blob_current, hash_parent=>$blob_parent,
2086 hash_base=>$hash_base, hash_parent_base=>$commit,
2087 file_name=>$file_name)},
2088 "diff to current");
2091 print "</td>\n" .
2092 "</tr>\n";
2094 if (defined $extra) {
2095 print "<tr>\n" .
2096 "<td colspan=\"4\">$extra</td>\n" .
2097 "</tr>\n";
2099 print "</table>\n";
2102 sub git_tags_body {
2103 # uses global variable $project
2104 my ($taglist, $from, $to, $extra) = @_;
2105 $from = 0 unless defined $from;
2106 $to = $#{$taglist} if (!defined $to || $#{$taglist} < $to);
2108 print "<table class=\"tags\" cellspacing=\"0\">\n";
2109 my $alternate = 1;
2110 for (my $i = $from; $i <= $to; $i++) {
2111 my $entry = $taglist->[$i];
2112 my %tag = %$entry;
2113 my $comment_lines = $tag{'comment'};
2114 my $comment = shift @$comment_lines;
2115 my $comment_short;
2116 if (defined $comment) {
2117 $comment_short = chop_str($comment, 30, 5);
2119 if ($alternate) {
2120 print "<tr class=\"dark\">\n";
2121 } else {
2122 print "<tr class=\"light\">\n";
2124 $alternate ^= 1;
2125 print "<td><i>$tag{'age'}</i></td>\n" .
2126 "<td>" .
2127 $cgi->a({-href => href(action=>$tag{'reftype'}, hash=>$tag{'refid'}),
2128 -class => "list name"}, esc_html($tag{'name'})) .
2129 "</td>\n" .
2130 "<td>";
2131 if (defined $comment) {
2132 print format_subject_html($comment, $comment_short,
2133 href(action=>"tag", hash=>$tag{'id'}));
2135 print "</td>\n" .
2136 "<td class=\"selflink\">";
2137 if ($tag{'type'} eq "tag") {
2138 print $cgi->a({-href => href(action=>"tag", hash=>$tag{'id'})}, "tag");
2139 } else {
2140 print "&nbsp;";
2142 print "</td>\n" .
2143 "<td class=\"link\">" . " | " .
2144 $cgi->a({-href => href(action=>$tag{'reftype'}, hash=>$tag{'refid'})}, $tag{'reftype'});
2145 if ($tag{'reftype'} eq "commit") {
2146 print " | " . $cgi->a({-href => href(action=>"shortlog", hash=>$tag{'name'})}, "shortlog") .
2147 " | " . $cgi->a({-href => href(action=>"log", hash=>$tag{'refid'})}, "log");
2148 } elsif ($tag{'reftype'} eq "blob") {
2149 print " | " . $cgi->a({-href => href(action=>"blob_plain", hash=>$tag{'refid'})}, "raw");
2151 print "</td>\n" .
2152 "</tr>";
2154 if (defined $extra) {
2155 print "<tr>\n" .
2156 "<td colspan=\"5\">$extra</td>\n" .
2157 "</tr>\n";
2159 print "</table>\n";
2162 sub git_heads_body {
2163 # uses global variable $project
2164 my ($headlist, $head, $from, $to, $extra) = @_;
2165 $from = 0 unless defined $from;
2166 $to = $#{$headlist} if (!defined $to || $#{$headlist} < $to);
2168 print "<table class=\"heads\" cellspacing=\"0\">\n";
2169 my $alternate = 1;
2170 for (my $i = $from; $i <= $to; $i++) {
2171 my $entry = $headlist->[$i];
2172 my %tag = %$entry;
2173 my $curr = $tag{'id'} eq $head;
2174 if ($alternate) {
2175 print "<tr class=\"dark\">\n";
2176 } else {
2177 print "<tr class=\"light\">\n";
2179 $alternate ^= 1;
2180 print "<td><i>$tag{'age'}</i></td>\n" .
2181 ($tag{'id'} eq $head ? "<td class=\"current_head\">" : "<td>") .
2182 $cgi->a({-href => href(action=>"shortlog", hash=>$tag{'name'}),
2183 -class => "list name"},esc_html($tag{'name'})) .
2184 "</td>\n" .
2185 "<td class=\"link\">" .
2186 $cgi->a({-href => href(action=>"shortlog", hash=>$tag{'name'})}, "shortlog") . " | " .
2187 $cgi->a({-href => href(action=>"log", hash=>$tag{'name'})}, "log") . " | " .
2188 $cgi->a({-href => href(action=>"tree", hash=>$tag{'name'}, hash_base=>$tag{'name'})}, "tree") .
2189 "</td>\n" .
2190 "</tr>";
2192 if (defined $extra) {
2193 print "<tr>\n" .
2194 "<td colspan=\"3\">$extra</td>\n" .
2195 "</tr>\n";
2197 print "</table>\n";
2200 ## ======================================================================
2201 ## ======================================================================
2202 ## actions
2204 sub git_project_list {
2205 my $order = $cgi->param('o');
2206 if (defined $order && $order !~ m/project|descr|owner|age/) {
2207 die_error(undef, "Unknown order parameter");
2210 my @list = git_get_projects_list();
2211 my @projects;
2212 if (!@list) {
2213 die_error(undef, "No projects found");
2215 foreach my $pr (@list) {
2216 my $head = git_get_head_hash($pr->{'path'});
2217 if (!defined $head) {
2218 next;
2220 $git_dir = "$projectroot/$pr->{'path'}";
2221 my %co = parse_commit($head);
2222 if (!%co) {
2223 next;
2225 $pr->{'commit'} = \%co;
2226 if (!defined $pr->{'descr'}) {
2227 my $descr = git_get_project_description($pr->{'path'}) || "";
2228 $pr->{'descr'} = chop_str($descr, 25, 5);
2230 if (!defined $pr->{'owner'}) {
2231 $pr->{'owner'} = get_file_owner("$projectroot/$pr->{'path'}") || "";
2233 push @projects, $pr;
2236 git_header_html();
2237 if (-f $home_text) {
2238 print "<div class=\"index_include\">\n";
2239 open (my $fd, $home_text);
2240 print <$fd>;
2241 close $fd;
2242 print "</div>\n";
2244 print "<table class=\"project_list\">\n" .
2245 "<tr>\n";
2246 $order ||= "project";
2247 if ($order eq "project") {
2248 @projects = sort {$a->{'path'} cmp $b->{'path'}} @projects;
2249 print "<th>Project</th>\n";
2250 } else {
2251 print "<th>" .
2252 $cgi->a({-href => href(project=>undef, order=>'project'),
2253 -class => "header"}, "Project") .
2254 "</th>\n";
2256 if ($order eq "descr") {
2257 @projects = sort {$a->{'descr'} cmp $b->{'descr'}} @projects;
2258 print "<th>Description</th>\n";
2259 } else {
2260 print "<th>" .
2261 $cgi->a({-href => href(project=>undef, order=>'descr'),
2262 -class => "header"}, "Description") .
2263 "</th>\n";
2265 if ($order eq "owner") {
2266 @projects = sort {$a->{'owner'} cmp $b->{'owner'}} @projects;
2267 print "<th>Owner</th>\n";
2268 } else {
2269 print "<th>" .
2270 $cgi->a({-href => href(project=>undef, order=>'owner'),
2271 -class => "header"}, "Owner") .
2272 "</th>\n";
2274 if ($order eq "age") {
2275 @projects = sort {$a->{'commit'}{'age'} <=> $b->{'commit'}{'age'}} @projects;
2276 print "<th>Last Change</th>\n";
2277 } else {
2278 print "<th>" .
2279 $cgi->a({-href => href(project=>undef, order=>'age'),
2280 -class => "header"}, "Last Change") .
2281 "</th>\n";
2283 print "<th></th>\n" .
2284 "</tr>\n";
2285 my $alternate = 1;
2286 foreach my $pr (@projects) {
2287 if ($alternate) {
2288 print "<tr class=\"dark\">\n";
2289 } else {
2290 print "<tr class=\"light\">\n";
2292 $alternate ^= 1;
2293 print "<td>" . $cgi->a({-href => href(project=>$pr->{'path'}, action=>"summary"),
2294 -class => "list"}, esc_html($pr->{'path'})) . "</td>\n" .
2295 "<td>" . esc_html($pr->{'descr'}) . "</td>\n" .
2296 "<td><i>" . chop_str($pr->{'owner'}, 15) . "</i></td>\n";
2297 print "<td class=\"". age_class($pr->{'commit'}{'age'}) . "\">" .
2298 $pr->{'commit'}{'age_string'} . "</td>\n" .
2299 "<td class=\"link\">" .
2300 $cgi->a({-href => href(project=>$pr->{'path'}, action=>"summary")}, "summary") . " | " .
2301 $cgi->a({-href => href(project=>$pr->{'path'}, action=>"shortlog")}, "shortlog") . " | " .
2302 $cgi->a({-href => href(project=>$pr->{'path'}, action=>"log")}, "log") . " | " .
2303 $cgi->a({-href => href(project=>$pr->{'path'}, action=>"tree")}, "tree") .
2304 "</td>\n" .
2305 "</tr>\n";
2307 print "</table>\n";
2308 git_footer_html();
2311 sub git_project_index {
2312 my @projects = git_get_projects_list();
2314 print $cgi->header(
2315 -type => 'text/plain',
2316 -charset => 'utf-8',
2317 -content_disposition => 'inline; filename="index.aux"');
2319 foreach my $pr (@projects) {
2320 if (!exists $pr->{'owner'}) {
2321 $pr->{'owner'} = get_file_owner("$projectroot/$project");
2324 my ($path, $owner) = ($pr->{'path'}, $pr->{'owner'});
2325 # quote as in CGI::Util::encode, but keep the slash, and use '+' for ' '
2326 $path =~ s/([^a-zA-Z0-9_.\-\/ ])/sprintf("%%%02X", ord($1))/eg;
2327 $owner =~ s/([^a-zA-Z0-9_.\-\/ ])/sprintf("%%%02X", ord($1))/eg;
2328 $path =~ s/ /\+/g;
2329 $owner =~ s/ /\+/g;
2331 print "$path $owner\n";
2335 sub git_summary {
2336 my $descr = git_get_project_description($project) || "none";
2337 my $head = git_get_head_hash($project);
2338 my %co = parse_commit($head);
2339 my %cd = parse_date($co{'committer_epoch'}, $co{'committer_tz'});
2341 my $owner = git_get_project_owner($project);
2343 my ($reflist, $refs) = git_get_refs_list();
2345 my @taglist;
2346 my @headlist;
2347 foreach my $ref (@$reflist) {
2348 if ($ref->{'name'} =~ s!^heads/!!) {
2349 push @headlist, $ref;
2350 } else {
2351 $ref->{'name'} =~ s!^tags/!!;
2352 push @taglist, $ref;
2356 git_header_html();
2357 git_print_page_nav('summary','', $head);
2359 print "<div class=\"title\">&nbsp;</div>\n";
2360 print "<table cellspacing=\"0\">\n" .
2361 "<tr><td>description</td><td>" . esc_html($descr) . "</td></tr>\n" .
2362 "<tr><td>owner</td><td>$owner</td></tr>\n" .
2363 "<tr><td>last change</td><td>$cd{'rfc2822'}</td></tr>\n";
2364 # use per project git URL list in $projectroot/$project/cloneurl
2365 # or make project git URL from git base URL and project name
2366 my $url_tag = "URL";
2367 my @url_list = git_get_project_url_list($project);
2368 @url_list = map { "$_/$project" } @git_base_url_list unless @url_list;
2369 foreach my $git_url (@url_list) {
2370 next unless $git_url;
2371 print "<tr><td>$url_tag</td><td>$git_url</td></tr>\n";
2372 $url_tag = "";
2374 print "</table>\n";
2376 open my $fd, "-|", git_cmd(), "rev-list", "--max-count=17",
2377 git_get_head_hash($project)
2378 or die_error(undef, "Open git-rev-list failed");
2379 my @revlist = map { chomp; $_ } <$fd>;
2380 close $fd;
2381 git_print_header_div('shortlog');
2382 git_shortlog_body(\@revlist, 0, 15, $refs,
2383 $cgi->a({-href => href(action=>"shortlog")}, "..."));
2385 if (@taglist) {
2386 git_print_header_div('tags');
2387 git_tags_body(\@taglist, 0, 15,
2388 $cgi->a({-href => href(action=>"tags")}, "..."));
2391 if (@headlist) {
2392 git_print_header_div('heads');
2393 git_heads_body(\@headlist, $head, 0, 15,
2394 $cgi->a({-href => href(action=>"heads")}, "..."));
2397 git_footer_html();
2400 sub git_tag {
2401 my $head = git_get_head_hash($project);
2402 git_header_html();
2403 git_print_page_nav('','', $head,undef,$head);
2404 my %tag = parse_tag($hash);
2405 git_print_header_div('commit', esc_html($tag{'name'}), $hash);
2406 print "<div class=\"title_text\">\n" .
2407 "<table cellspacing=\"0\">\n" .
2408 "<tr>\n" .
2409 "<td>object</td>\n" .
2410 "<td>" . $cgi->a({-class => "list", -href => href(action=>$tag{'type'}, hash=>$tag{'object'})},
2411 $tag{'object'}) . "</td>\n" .
2412 "<td class=\"link\">" . $cgi->a({-href => href(action=>$tag{'type'}, hash=>$tag{'object'})},
2413 $tag{'type'}) . "</td>\n" .
2414 "</tr>\n";
2415 if (defined($tag{'author'})) {
2416 my %ad = parse_date($tag{'epoch'}, $tag{'tz'});
2417 print "<tr><td>author</td><td>" . esc_html($tag{'author'}) . "</td></tr>\n";
2418 print "<tr><td></td><td>" . $ad{'rfc2822'} .
2419 sprintf(" (%02d:%02d %s)", $ad{'hour_local'}, $ad{'minute_local'}, $ad{'tz_local'}) .
2420 "</td></tr>\n";
2422 print "</table>\n\n" .
2423 "</div>\n";
2424 print "<div class=\"page_body\">";
2425 my $comment = $tag{'comment'};
2426 foreach my $line (@$comment) {
2427 print esc_html($line) . "<br/>\n";
2429 print "</div>\n";
2430 git_footer_html();
2433 sub git_blame2 {
2434 my $fd;
2435 my $ftype;
2437 my ($have_blame) = gitweb_check_feature('blame');
2438 if (!$have_blame) {
2439 die_error('403 Permission denied', "Permission denied");
2441 die_error('404 Not Found', "File name not defined") if (!$file_name);
2442 $hash_base ||= git_get_head_hash($project);
2443 die_error(undef, "Couldn't find base commit") unless ($hash_base);
2444 my %co = parse_commit($hash_base)
2445 or die_error(undef, "Reading commit failed");
2446 if (!defined $hash) {
2447 $hash = git_get_hash_by_path($hash_base, $file_name, "blob")
2448 or die_error(undef, "Error looking up file");
2450 $ftype = git_get_type($hash);
2451 if ($ftype !~ "blob") {
2452 die_error("400 Bad Request", "Object is not a blob");
2454 open ($fd, "-|", git_cmd(), "blame", '-l', '--', $file_name, $hash_base)
2455 or die_error(undef, "Open git-blame failed");
2456 git_header_html();
2457 my $formats_nav =
2458 $cgi->a({-href => href(action=>"blob", hash=>$hash, hash_base=>$hash_base, file_name=>$file_name)},
2459 "blob") .
2460 " | " .
2461 $cgi->a({-href => href(action=>"history", hash=>$hash, hash_base=>$hash_base, file_name=>$file_name)},
2462 "history") .
2463 " | " .
2464 $cgi->a({-href => href(action=>"blame", file_name=>$file_name)},
2465 "HEAD");
2466 git_print_page_nav('','', $hash_base,$co{'tree'},$hash_base, $formats_nav);
2467 git_print_header_div('commit', esc_html($co{'title'}), $hash_base);
2468 git_print_page_path($file_name, $ftype, $hash_base);
2469 my @rev_color = (qw(light2 dark2));
2470 my $num_colors = scalar(@rev_color);
2471 my $current_color = 0;
2472 my $last_rev;
2473 print <<HTML;
2474 <div class="page_body">
2475 <table class="blame">
2476 <tr><th>Commit</th><th>Line</th><th>Data</th></tr>
2477 HTML
2478 while (<$fd>) {
2479 /^([0-9a-fA-F]{40}).*?(\d+)\)\s{1}(\s*.*)/;
2480 my $full_rev = $1;
2481 my $rev = substr($full_rev, 0, 8);
2482 my $lineno = $2;
2483 my $data = $3;
2485 if (!defined $last_rev) {
2486 $last_rev = $full_rev;
2487 } elsif ($last_rev ne $full_rev) {
2488 $last_rev = $full_rev;
2489 $current_color = ++$current_color % $num_colors;
2491 print "<tr class=\"$rev_color[$current_color]\">\n";
2492 print "<td class=\"sha1\">" .
2493 $cgi->a({-href => href(action=>"commit", hash=>$full_rev, file_name=>$file_name)},
2494 esc_html($rev)) . "</td>\n";
2495 print "<td class=\"linenr\"><a id=\"l$lineno\" href=\"#l$lineno\" class=\"linenr\">" .
2496 esc_html($lineno) . "</a></td>\n";
2497 print "<td class=\"pre\">" . esc_html($data) . "</td>\n";
2498 print "</tr>\n";
2500 print "</table>\n";
2501 print "</div>";
2502 close $fd
2503 or print "Reading blob failed\n";
2504 git_footer_html();
2507 sub git_blame {
2508 my $fd;
2510 my ($have_blame) = gitweb_check_feature('blame');
2511 if (!$have_blame) {
2512 die_error('403 Permission denied', "Permission denied");
2514 die_error('404 Not Found', "File name not defined") if (!$file_name);
2515 $hash_base ||= git_get_head_hash($project);
2516 die_error(undef, "Couldn't find base commit") unless ($hash_base);
2517 my %co = parse_commit($hash_base)
2518 or die_error(undef, "Reading commit failed");
2519 if (!defined $hash) {
2520 $hash = git_get_hash_by_path($hash_base, $file_name, "blob")
2521 or die_error(undef, "Error lookup file");
2523 open ($fd, "-|", git_cmd(), "annotate", '-l', '-t', '-r', $file_name, $hash_base)
2524 or die_error(undef, "Open git-annotate failed");
2525 git_header_html();
2526 my $formats_nav =
2527 $cgi->a({-href => href(action=>"blob", hash=>$hash, hash_base=>$hash_base, file_name=>$file_name)},
2528 "blob") .
2529 " | " .
2530 $cgi->a({-href => href(action=>"history", hash=>$hash, hash_base=>$hash_base, file_name=>$file_name)},
2531 "history") .
2532 " | " .
2533 $cgi->a({-href => href(action=>"blame", file_name=>$file_name)},
2534 "HEAD");
2535 git_print_page_nav('','', $hash_base,$co{'tree'},$hash_base, $formats_nav);
2536 git_print_header_div('commit', esc_html($co{'title'}), $hash_base);
2537 git_print_page_path($file_name, 'blob', $hash_base);
2538 print "<div class=\"page_body\">\n";
2539 print <<HTML;
2540 <table class="blame">
2541 <tr>
2542 <th>Commit</th>
2543 <th>Age</th>
2544 <th>Author</th>
2545 <th>Line</th>
2546 <th>Data</th>
2547 </tr>
2548 HTML
2549 my @line_class = (qw(light dark));
2550 my $line_class_len = scalar (@line_class);
2551 my $line_class_num = $#line_class;
2552 while (my $line = <$fd>) {
2553 my $long_rev;
2554 my $short_rev;
2555 my $author;
2556 my $time;
2557 my $lineno;
2558 my $data;
2559 my $age;
2560 my $age_str;
2561 my $age_class;
2563 chomp $line;
2564 $line_class_num = ($line_class_num + 1) % $line_class_len;
2566 if ($line =~ m/^([0-9a-fA-F]{40})\t\(\s*([^\t]+)\t(\d+) [+-]\d\d\d\d\t(\d+)\)(.*)$/) {
2567 $long_rev = $1;
2568 $author = $2;
2569 $time = $3;
2570 $lineno = $4;
2571 $data = $5;
2572 } else {
2573 print qq( <tr><td colspan="5" class="error">Unable to parse: $line</td></tr>\n);
2574 next;
2576 $short_rev = substr ($long_rev, 0, 8);
2577 $age = time () - $time;
2578 $age_str = age_string ($age);
2579 $age_str =~ s/ /&nbsp;/g;
2580 $age_class = age_class($age);
2581 $author = esc_html ($author);
2582 $author =~ s/ /&nbsp;/g;
2584 $data = untabify($data);
2585 $data = esc_html ($data);
2587 print <<HTML;
2588 <tr class="$line_class[$line_class_num]">
2589 <td class="sha1"><a href="${\href (action=>"commit", hash=>$long_rev)}" class="text">$short_rev..</a></td>
2590 <td class="$age_class">$age_str</td>
2591 <td>$author</td>
2592 <td class="linenr"><a id="$lineno" href="#$lineno" class="linenr">$lineno</a></td>
2593 <td class="pre">$data</td>
2594 </tr>
2595 HTML
2596 } # while (my $line = <$fd>)
2597 print "</table>\n\n";
2598 close $fd
2599 or print "Reading blob failed.\n";
2600 print "</div>";
2601 git_footer_html();
2604 sub git_tags {
2605 my $head = git_get_head_hash($project);
2606 git_header_html();
2607 git_print_page_nav('','', $head,undef,$head);
2608 git_print_header_div('summary', $project);
2610 my ($taglist) = git_get_refs_list("tags");
2611 if (@$taglist) {
2612 git_tags_body($taglist);
2614 git_footer_html();
2617 sub git_heads {
2618 my $head = git_get_head_hash($project);
2619 git_header_html();
2620 git_print_page_nav('','', $head,undef,$head);
2621 git_print_header_div('summary', $project);
2623 my ($headlist) = git_get_refs_list("heads");
2624 if (@$headlist) {
2625 git_heads_body($headlist, $head);
2627 git_footer_html();
2630 sub git_blob_plain {
2631 my $expires;
2633 if (!defined $hash) {
2634 if (defined $file_name) {
2635 my $base = $hash_base || git_get_head_hash($project);
2636 $hash = git_get_hash_by_path($base, $file_name, "blob")
2637 or die_error(undef, "Error lookup file");
2638 } else {
2639 die_error(undef, "No file name defined");
2641 } elsif ($hash =~ m/^[0-9a-fA-F]{40}$/) {
2642 # blobs defined by non-textual hash id's can be cached
2643 $expires = "+1d";
2646 my $type = shift;
2647 open my $fd, "-|", git_cmd(), "cat-file", "blob", $hash
2648 or die_error(undef, "Couldn't cat $file_name, $hash");
2650 $type ||= blob_mimetype($fd, $file_name);
2652 # save as filename, even when no $file_name is given
2653 my $save_as = "$hash";
2654 if (defined $file_name) {
2655 $save_as = $file_name;
2656 } elsif ($type =~ m/^text\//) {
2657 $save_as .= '.txt';
2660 print $cgi->header(
2661 -type => "$type",
2662 -expires=>$expires,
2663 -content_disposition => 'inline; filename="' . "$save_as" . '"');
2664 undef $/;
2665 binmode STDOUT, ':raw';
2666 print <$fd>;
2667 binmode STDOUT, ':utf8'; # as set at the beginning of gitweb.cgi
2668 $/ = "\n";
2669 close $fd;
2672 sub git_blob {
2673 my $expires;
2675 if (!defined $hash) {
2676 if (defined $file_name) {
2677 my $base = $hash_base || git_get_head_hash($project);
2678 $hash = git_get_hash_by_path($base, $file_name, "blob")
2679 or die_error(undef, "Error lookup file");
2680 } else {
2681 die_error(undef, "No file name defined");
2683 } elsif ($hash =~ m/^[0-9a-fA-F]{40}$/) {
2684 # blobs defined by non-textual hash id's can be cached
2685 $expires = "+1d";
2688 my ($have_blame) = gitweb_check_feature('blame');
2689 open my $fd, "-|", git_cmd(), "cat-file", "blob", $hash
2690 or die_error(undef, "Couldn't cat $file_name, $hash");
2691 my $mimetype = blob_mimetype($fd, $file_name);
2692 if ($mimetype !~ m/^text\//) {
2693 close $fd;
2694 return git_blob_plain($mimetype);
2696 git_header_html(undef, $expires);
2697 my $formats_nav = '';
2698 if (defined $hash_base && (my %co = parse_commit($hash_base))) {
2699 if (defined $file_name) {
2700 if ($have_blame) {
2701 $formats_nav .=
2702 $cgi->a({-href => href(action=>"blame", hash_base=>$hash_base,
2703 hash=>$hash, file_name=>$file_name)},
2704 "blame") .
2705 " | ";
2707 $formats_nav .=
2708 $cgi->a({-href => href(action=>"history", hash_base=>$hash_base,
2709 hash=>$hash, file_name=>$file_name)},
2710 "history") .
2711 " | " .
2712 $cgi->a({-href => href(action=>"blob_plain",
2713 hash=>$hash, file_name=>$file_name)},
2714 "raw") .
2715 " | " .
2716 $cgi->a({-href => href(action=>"blob",
2717 hash_base=>"HEAD", file_name=>$file_name)},
2718 "HEAD");
2719 } else {
2720 $formats_nav .=
2721 $cgi->a({-href => href(action=>"blob_plain", hash=>$hash)}, "raw");
2723 git_print_page_nav('','', $hash_base,$co{'tree'},$hash_base, $formats_nav);
2724 git_print_header_div('commit', esc_html($co{'title'}), $hash_base);
2725 } else {
2726 print "<div class=\"page_nav\">\n" .
2727 "<br/><br/></div>\n" .
2728 "<div class=\"title\">$hash</div>\n";
2730 git_print_page_path($file_name, "blob", $hash_base);
2731 print "<div class=\"page_body\">\n";
2732 my $nr;
2733 while (my $line = <$fd>) {
2734 chomp $line;
2735 $nr++;
2736 $line = untabify($line);
2737 printf "<div class=\"pre\"><a id=\"l%i\" href=\"#l%i\" class=\"linenr\">%4i</a> %s</div>\n",
2738 $nr, $nr, $nr, esc_html($line);
2740 close $fd
2741 or print "Reading blob failed.\n";
2742 print "</div>";
2743 git_footer_html();
2746 sub git_tree {
2747 my $have_snapshot = gitweb_have_snapshot();
2749 if (!defined $hash_base) {
2750 $hash_base = "HEAD";
2752 if (!defined $hash) {
2753 if (defined $file_name) {
2754 $hash = git_get_hash_by_path($hash_base, $file_name, "tree");
2755 } else {
2756 $hash = $hash_base;
2759 $/ = "\0";
2760 open my $fd, "-|", git_cmd(), "ls-tree", '-z', $hash
2761 or die_error(undef, "Open git-ls-tree failed");
2762 my @entries = map { chomp; $_ } <$fd>;
2763 close $fd or die_error(undef, "Reading tree failed");
2764 $/ = "\n";
2766 my $refs = git_get_references();
2767 my $ref = format_ref_marker($refs, $hash_base);
2768 git_header_html();
2769 my $base = "";
2770 my ($have_blame) = gitweb_check_feature('blame');
2771 if (defined $hash_base && (my %co = parse_commit($hash_base))) {
2772 my @views_nav = ();
2773 if (defined $file_name) {
2774 push @views_nav,
2775 $cgi->a({-href => href(action=>"history", hash_base=>$hash_base,
2776 hash=>$hash, file_name=>$file_name)},
2777 "history"),
2778 $cgi->a({-href => href(action=>"tree",
2779 hash_base=>"HEAD", file_name=>$file_name)},
2780 "HEAD"),
2782 if ($have_snapshot) {
2783 # FIXME: Should be available when we have no hash base as well.
2784 push @views_nav,
2785 $cgi->a({-href => href(action=>"snapshot", hash=>$hash)},
2786 "snapshot");
2788 git_print_page_nav('tree','', $hash_base, undef, undef, join(' | ', @views_nav));
2789 git_print_header_div('commit', esc_html($co{'title'}) . $ref, $hash_base);
2790 } else {
2791 undef $hash_base;
2792 print "<div class=\"page_nav\">\n";
2793 print "<br/><br/></div>\n";
2794 print "<div class=\"title\">$hash</div>\n";
2796 if (defined $file_name) {
2797 $base = esc_html("$file_name/");
2799 git_print_page_path($file_name, 'tree', $hash_base);
2800 print "<div class=\"page_body\">\n";
2801 print "<table cellspacing=\"0\">\n";
2802 my $alternate = 1;
2803 foreach my $line (@entries) {
2804 my %t = parse_ls_tree_line($line, -z => 1);
2806 if ($alternate) {
2807 print "<tr class=\"dark\">\n";
2808 } else {
2809 print "<tr class=\"light\">\n";
2811 $alternate ^= 1;
2813 git_print_tree_entry(\%t, $base, $hash_base, $have_blame);
2815 print "</tr>\n";
2817 print "</table>\n" .
2818 "</div>";
2819 git_footer_html();
2822 sub git_snapshot {
2823 my ($ctype, $suffix, $command) = gitweb_check_feature('snapshot');
2824 my $have_snapshot = (defined $ctype && defined $suffix);
2825 if (!$have_snapshot) {
2826 die_error('403 Permission denied', "Permission denied");
2829 if (!defined $hash) {
2830 $hash = git_get_head_hash($project);
2833 my $filename = basename($project) . "-$hash.tar.$suffix";
2835 print $cgi->header(
2836 -type => 'application/x-tar',
2837 -content_encoding => $ctype,
2838 -content_disposition => 'inline; filename="' . "$filename" . '"',
2839 -status => '200 OK');
2841 my $git = git_cmd_str();
2842 my $name = $project;
2843 $name =~ s/\047/\047\\\047\047/g;
2844 open my $fd, "-|",
2845 "$git archive --format=tar --prefix=\'$name\'/ $hash | $command"
2846 or die_error(undef, "Execute git-tar-tree failed.");
2847 binmode STDOUT, ':raw';
2848 print <$fd>;
2849 binmode STDOUT, ':utf8'; # as set at the beginning of gitweb.cgi
2850 close $fd;
2854 sub git_log {
2855 my $head = git_get_head_hash($project);
2856 if (!defined $hash) {
2857 $hash = $head;
2859 if (!defined $page) {
2860 $page = 0;
2862 my $refs = git_get_references();
2864 my $limit = sprintf("--max-count=%i", (100 * ($page+1)));
2865 open my $fd, "-|", git_cmd(), "rev-list", $limit, $hash
2866 or die_error(undef, "Open git-rev-list failed");
2867 my @revlist = map { chomp; $_ } <$fd>;
2868 close $fd;
2870 my $paging_nav = format_paging_nav('log', $hash, $head, $page, $#revlist);
2872 git_header_html();
2873 git_print_page_nav('log','', $hash,undef,undef, $paging_nav);
2875 if (!@revlist) {
2876 my %co = parse_commit($hash);
2878 git_print_header_div('summary', $project);
2879 print "<div class=\"page_body\"> Last change $co{'age_string'}.<br/><br/></div>\n";
2881 for (my $i = ($page * 100); $i <= $#revlist; $i++) {
2882 my $commit = $revlist[$i];
2883 my $ref = format_ref_marker($refs, $commit);
2884 my %co = parse_commit($commit);
2885 next if !%co;
2886 my %ad = parse_date($co{'author_epoch'});
2887 git_print_header_div('commit',
2888 "<span class=\"age\">$co{'age_string'}</span>" .
2889 esc_html($co{'title'}) . $ref,
2890 $commit);
2891 print "<div class=\"title_text\">\n" .
2892 "<div class=\"log_link\">\n" .
2893 $cgi->a({-href => href(action=>"commit", hash=>$commit)}, "commit") .
2894 " | " .
2895 $cgi->a({-href => href(action=>"commitdiff", hash=>$commit)}, "commitdiff") .
2896 " | " .
2897 $cgi->a({-href => href(action=>"tree", hash=>$commit, hash_base=>$commit)}, "tree") .
2898 "<br/>\n" .
2899 "</div>\n" .
2900 "<i>" . esc_html($co{'author_name'}) . " [$ad{'rfc2822'}]</i><br/>\n" .
2901 "</div>\n";
2903 print "<div class=\"log_body\">\n";
2904 git_print_simplified_log($co{'comment'});
2905 print "</div>\n";
2907 git_footer_html();
2910 sub git_commit {
2911 my %co = parse_commit($hash);
2912 if (!%co) {
2913 die_error(undef, "Unknown commit object");
2915 my %ad = parse_date($co{'author_epoch'}, $co{'author_tz'});
2916 my %cd = parse_date($co{'committer_epoch'}, $co{'committer_tz'});
2918 my $parent = $co{'parent'};
2919 if (!defined $parent) {
2920 $parent = "--root";
2922 open my $fd, "-|", git_cmd(), "diff-tree", '-r', @diff_opts, $parent, $hash
2923 or die_error(undef, "Open git-diff-tree failed");
2924 my @difftree = map { chomp; $_ } <$fd>;
2925 close $fd or die_error(undef, "Reading git-diff-tree failed");
2927 # non-textual hash id's can be cached
2928 my $expires;
2929 if ($hash =~ m/^[0-9a-fA-F]{40}$/) {
2930 $expires = "+1d";
2932 my $refs = git_get_references();
2933 my $ref = format_ref_marker($refs, $co{'id'});
2935 my $have_snapshot = gitweb_have_snapshot();
2937 my @views_nav = ();
2938 if (defined $file_name && defined $co{'parent'}) {
2939 push @views_nav,
2940 $cgi->a({-href => href(action=>"blame", hash_parent=>$parent, file_name=>$file_name)},
2941 "blame");
2943 if (defined $co{'parent'}) {
2944 push @views_nav,
2945 $cgi->a({-href => href(action=>"shortlog", hash=>$hash)}, "shortlog"),
2946 $cgi->a({-href => href(action=>"log", hash=>$hash)}, "log");
2948 git_header_html(undef, $expires);
2949 git_print_page_nav('commit', defined $co{'parent'} ? '' : 'commitdiff',
2950 $hash, $co{'tree'}, $hash,
2951 join (' | ', @views_nav));
2953 if (defined $co{'parent'}) {
2954 git_print_header_div('commitdiff', esc_html($co{'title'}) . $ref, $hash);
2955 } else {
2956 git_print_header_div('tree', esc_html($co{'title'}) . $ref, $co{'tree'}, $hash);
2958 print "<div class=\"title_text\">\n" .
2959 "<table cellspacing=\"0\">\n";
2960 print "<tr><td>author</td><td>" . esc_html($co{'author'}) . "</td></tr>\n".
2961 "<tr>" .
2962 "<td></td><td> $ad{'rfc2822'}";
2963 if ($ad{'hour_local'} < 6) {
2964 printf(" (<span class=\"atnight\">%02d:%02d</span> %s)",
2965 $ad{'hour_local'}, $ad{'minute_local'}, $ad{'tz_local'});
2966 } else {
2967 printf(" (%02d:%02d %s)",
2968 $ad{'hour_local'}, $ad{'minute_local'}, $ad{'tz_local'});
2970 print "</td>" .
2971 "</tr>\n";
2972 print "<tr><td>committer</td><td>" . esc_html($co{'committer'}) . "</td></tr>\n";
2973 print "<tr><td></td><td> $cd{'rfc2822'}" .
2974 sprintf(" (%02d:%02d %s)", $cd{'hour_local'}, $cd{'minute_local'}, $cd{'tz_local'}) .
2975 "</td></tr>\n";
2976 print "<tr><td>commit</td><td class=\"sha1\">$co{'id'}</td></tr>\n";
2977 print "<tr>" .
2978 "<td>tree</td>" .
2979 "<td class=\"sha1\">" .
2980 $cgi->a({-href => href(action=>"tree", hash=>$co{'tree'}, hash_base=>$hash),
2981 class => "list"}, $co{'tree'}) .
2982 "</td>" .
2983 "<td class=\"link\">" .
2984 $cgi->a({-href => href(action=>"tree", hash=>$co{'tree'}, hash_base=>$hash)},
2985 "tree");
2986 if ($have_snapshot) {
2987 print " | " .
2988 $cgi->a({-href => href(action=>"snapshot", hash=>$hash)}, "snapshot");
2990 print "</td>" .
2991 "</tr>\n";
2992 my $parents = $co{'parents'};
2993 foreach my $par (@$parents) {
2994 print "<tr>" .
2995 "<td>parent</td>" .
2996 "<td class=\"sha1\">" .
2997 $cgi->a({-href => href(action=>"commit", hash=>$par),
2998 class => "list"}, $par) .
2999 "</td>" .
3000 "<td class=\"link\">" .
3001 $cgi->a({-href => href(action=>"commit", hash=>$par)}, "commit") .
3002 " | " .
3003 $cgi->a({-href => href(action=>"commitdiff", hash=>$hash, hash_parent=>$par)}, "diff") .
3004 "</td>" .
3005 "</tr>\n";
3007 print "</table>".
3008 "</div>\n";
3010 print "<div class=\"page_body\">\n";
3011 git_print_log($co{'comment'});
3012 print "</div>\n";
3014 git_difftree_body(\@difftree, $hash, $parent);
3016 git_footer_html();
3019 sub git_blobdiff {
3020 my $format = shift || 'html';
3022 my $fd;
3023 my @difftree;
3024 my %diffinfo;
3025 my $expires;
3027 # preparing $fd and %diffinfo for git_patchset_body
3028 # new style URI
3029 if (defined $hash_base && defined $hash_parent_base) {
3030 if (defined $file_name) {
3031 # read raw output
3032 open $fd, "-|", git_cmd(), "diff-tree", '-r', @diff_opts, $hash_parent_base, $hash_base,
3033 "--", $file_name
3034 or die_error(undef, "Open git-diff-tree failed");
3035 @difftree = map { chomp; $_ } <$fd>;
3036 close $fd
3037 or die_error(undef, "Reading git-diff-tree failed");
3038 @difftree
3039 or die_error('404 Not Found', "Blob diff not found");
3041 } elsif (defined $hash &&
3042 $hash =~ /[0-9a-fA-F]{40}/) {
3043 # try to find filename from $hash
3045 # read filtered raw output
3046 open $fd, "-|", git_cmd(), "diff-tree", '-r', @diff_opts, $hash_parent_base, $hash_base
3047 or die_error(undef, "Open git-diff-tree failed");
3048 @difftree =
3049 # ':100644 100644 03b21826... 3b93d5e7... M ls-files.c'
3050 # $hash == to_id
3051 grep { /^:[0-7]{6} [0-7]{6} [0-9a-fA-F]{40} $hash/ }
3052 map { chomp; $_ } <$fd>;
3053 close $fd
3054 or die_error(undef, "Reading git-diff-tree failed");
3055 @difftree
3056 or die_error('404 Not Found', "Blob diff not found");
3058 } else {
3059 die_error('404 Not Found', "Missing one of the blob diff parameters");
3062 if (@difftree > 1) {
3063 die_error('404 Not Found', "Ambiguous blob diff specification");
3066 %diffinfo = parse_difftree_raw_line($difftree[0]);
3067 $file_parent ||= $diffinfo{'from_file'} || $file_name || $diffinfo{'file'};
3068 $file_name ||= $diffinfo{'to_file'} || $diffinfo{'file'};
3070 $hash_parent ||= $diffinfo{'from_id'};
3071 $hash ||= $diffinfo{'to_id'};
3073 # non-textual hash id's can be cached
3074 if ($hash_base =~ m/^[0-9a-fA-F]{40}$/ &&
3075 $hash_parent_base =~ m/^[0-9a-fA-F]{40}$/) {
3076 $expires = '+1d';
3079 # open patch output
3080 open $fd, "-|", git_cmd(), "diff-tree", '-r', @diff_opts,
3081 '-p', $hash_parent_base, $hash_base,
3082 "--", $file_name
3083 or die_error(undef, "Open git-diff-tree failed");
3086 # old/legacy style URI
3087 if (!%diffinfo && # if new style URI failed
3088 defined $hash && defined $hash_parent) {
3089 # fake git-diff-tree raw output
3090 $diffinfo{'from_mode'} = $diffinfo{'to_mode'} = "blob";
3091 $diffinfo{'from_id'} = $hash_parent;
3092 $diffinfo{'to_id'} = $hash;
3093 if (defined $file_name) {
3094 if (defined $file_parent) {
3095 $diffinfo{'status'} = '2';
3096 $diffinfo{'from_file'} = $file_parent;
3097 $diffinfo{'to_file'} = $file_name;
3098 } else { # assume not renamed
3099 $diffinfo{'status'} = '1';
3100 $diffinfo{'from_file'} = $file_name;
3101 $diffinfo{'to_file'} = $file_name;
3103 } else { # no filename given
3104 $diffinfo{'status'} = '2';
3105 $diffinfo{'from_file'} = $hash_parent;
3106 $diffinfo{'to_file'} = $hash;
3109 # non-textual hash id's can be cached
3110 if ($hash =~ m/^[0-9a-fA-F]{40}$/ &&
3111 $hash_parent =~ m/^[0-9a-fA-F]{40}$/) {
3112 $expires = '+1d';
3115 # open patch output
3116 open $fd, "-|", git_cmd(), "diff", '-p', @diff_opts, $hash_parent, $hash
3117 or die_error(undef, "Open git-diff failed");
3118 } else {
3119 die_error('404 Not Found', "Missing one of the blob diff parameters")
3120 unless %diffinfo;
3123 # header
3124 if ($format eq 'html') {
3125 my $formats_nav =
3126 $cgi->a({-href => href(action=>"blobdiff_plain",
3127 hash=>$hash, hash_parent=>$hash_parent,
3128 hash_base=>$hash_base, hash_parent_base=>$hash_parent_base,
3129 file_name=>$file_name, file_parent=>$file_parent)},
3130 "raw");
3131 git_header_html(undef, $expires);
3132 if (defined $hash_base && (my %co = parse_commit($hash_base))) {
3133 git_print_page_nav('','', $hash_base,$co{'tree'},$hash_base, $formats_nav);
3134 git_print_header_div('commit', esc_html($co{'title'}), $hash_base);
3135 } else {
3136 print "<div class=\"page_nav\"><br/>$formats_nav<br/></div>\n";
3137 print "<div class=\"title\">$hash vs $hash_parent</div>\n";
3139 if (defined $file_name) {
3140 git_print_page_path($file_name, "blob", $hash_base);
3141 } else {
3142 print "<div class=\"page_path\"></div>\n";
3145 } elsif ($format eq 'plain') {
3146 print $cgi->header(
3147 -type => 'text/plain',
3148 -charset => 'utf-8',
3149 -expires => $expires,
3150 -content_disposition => 'inline; filename="' . "$file_name" . '.patch"');
3152 print "X-Git-Url: " . $cgi->self_url() . "\n\n";
3154 } else {
3155 die_error(undef, "Unknown blobdiff format");
3158 # patch
3159 if ($format eq 'html') {
3160 print "<div class=\"page_body\">\n";
3162 git_patchset_body($fd, [ \%diffinfo ], $hash_base, $hash_parent_base);
3163 close $fd;
3165 print "</div>\n"; # class="page_body"
3166 git_footer_html();
3168 } else {
3169 while (my $line = <$fd>) {
3170 $line =~ s!a/($hash|$hash_parent)!'a/'.esc_html($diffinfo{'from_file'})!eg;
3171 $line =~ s!b/($hash|$hash_parent)!'b/'.esc_html($diffinfo{'to_file'})!eg;
3173 print $line;
3175 last if $line =~ m!^\+\+\+!;
3177 local $/ = undef;
3178 print <$fd>;
3179 close $fd;
3183 sub git_blobdiff_plain {
3184 git_blobdiff('plain');
3187 sub git_commitdiff {
3188 my $format = shift || 'html';
3189 my %co = parse_commit($hash);
3190 if (!%co) {
3191 die_error(undef, "Unknown commit object");
3193 if (!defined $hash_parent) {
3194 $hash_parent = $co{'parent'} || '--root';
3197 # read commitdiff
3198 my $fd;
3199 my @difftree;
3200 if ($format eq 'html') {
3201 open $fd, "-|", git_cmd(), "diff-tree", '-r', @diff_opts,
3202 "--patch-with-raw", "--full-index", $hash_parent, $hash
3203 or die_error(undef, "Open git-diff-tree failed");
3205 while (chomp(my $line = <$fd>)) {
3206 # empty line ends raw part of diff-tree output
3207 last unless $line;
3208 push @difftree, $line;
3211 } elsif ($format eq 'plain') {
3212 open $fd, "-|", git_cmd(), "diff-tree", '-r', @diff_opts,
3213 '-p', $hash_parent, $hash
3214 or die_error(undef, "Open git-diff-tree failed");
3216 } else {
3217 die_error(undef, "Unknown commitdiff format");
3220 # non-textual hash id's can be cached
3221 my $expires;
3222 if ($hash =~ m/^[0-9a-fA-F]{40}$/) {
3223 $expires = "+1d";
3226 # write commit message
3227 if ($format eq 'html') {
3228 my $refs = git_get_references();
3229 my $ref = format_ref_marker($refs, $co{'id'});
3230 my $formats_nav =
3231 $cgi->a({-href => href(action=>"commitdiff_plain",
3232 hash=>$hash, hash_parent=>$hash_parent)},
3233 "raw");
3235 git_header_html(undef, $expires);
3236 git_print_page_nav('commitdiff','', $hash,$co{'tree'},$hash, $formats_nav);
3237 git_print_header_div('commit', esc_html($co{'title'}) . $ref, $hash);
3238 git_print_authorship(\%co);
3239 print "<div class=\"page_body\">\n";
3240 print "<div class=\"log\">\n";
3241 git_print_simplified_log($co{'comment'}, 1); # skip title
3242 print "</div>\n"; # class="log"
3244 } elsif ($format eq 'plain') {
3245 my $refs = git_get_references("tags");
3246 my $tagname = git_get_rev_name_tags($hash);
3247 my $filename = basename($project) . "-$hash.patch";
3249 print $cgi->header(
3250 -type => 'text/plain',
3251 -charset => 'utf-8',
3252 -expires => $expires,
3253 -content_disposition => 'inline; filename="' . "$filename" . '"');
3254 my %ad = parse_date($co{'author_epoch'}, $co{'author_tz'});
3255 print <<TEXT;
3256 From: $co{'author'}
3257 Date: $ad{'rfc2822'} ($ad{'tz_local'})
3258 Subject: $co{'title'}
3259 TEXT
3260 print "X-Git-Tag: $tagname\n" if $tagname;
3261 print "X-Git-Url: " . $cgi->self_url() . "\n\n";
3263 foreach my $line (@{$co{'comment'}}) {
3264 print "$line\n";
3266 print "---\n\n";
3269 # write patch
3270 if ($format eq 'html') {
3271 git_difftree_body(\@difftree, $hash, $hash_parent);
3272 print "<br/>\n";
3274 git_patchset_body($fd, \@difftree, $hash, $hash_parent);
3275 close $fd;
3276 print "</div>\n"; # class="page_body"
3277 git_footer_html();
3279 } elsif ($format eq 'plain') {
3280 local $/ = undef;
3281 print <$fd>;
3282 close $fd
3283 or print "Reading git-diff-tree failed\n";
3287 sub git_commitdiff_plain {
3288 git_commitdiff('plain');
3291 sub git_history {
3292 if (!defined $hash_base) {
3293 $hash_base = git_get_head_hash($project);
3295 if (!defined $page) {
3296 $page = 0;
3298 my $ftype;
3299 my %co = parse_commit($hash_base);
3300 if (!%co) {
3301 die_error(undef, "Unknown commit object");
3304 my $refs = git_get_references();
3305 my $limit = sprintf("--max-count=%i", (100 * ($page+1)));
3307 if (!defined $hash && defined $file_name) {
3308 $hash = git_get_hash_by_path($hash_base, $file_name);
3310 if (defined $hash) {
3311 $ftype = git_get_type($hash);
3314 open my $fd, "-|",
3315 git_cmd(), "rev-list", $limit, "--full-history", $hash_base, "--", $file_name
3316 or die_error(undef, "Open git-rev-list-failed");
3317 my @revlist = map { chomp; $_ } <$fd>;
3318 close $fd
3319 or die_error(undef, "Reading git-rev-list failed");
3321 my $paging_nav = '';
3322 if ($page > 0) {
3323 $paging_nav .=
3324 $cgi->a({-href => href(action=>"history", hash=>$hash, hash_base=>$hash_base,
3325 file_name=>$file_name)},
3326 "first");
3327 $paging_nav .= " &sdot; " .
3328 $cgi->a({-href => href(action=>"history", hash=>$hash, hash_base=>$hash_base,
3329 file_name=>$file_name, page=>$page-1),
3330 -accesskey => "p", -title => "Alt-p"}, "prev");
3331 } else {
3332 $paging_nav .= "first";
3333 $paging_nav .= " &sdot; prev";
3335 if ($#revlist >= (100 * ($page+1)-1)) {
3336 $paging_nav .= " &sdot; " .
3337 $cgi->a({-href => href(action=>"history", hash=>$hash, hash_base=>$hash_base,
3338 file_name=>$file_name, page=>$page+1),
3339 -accesskey => "n", -title => "Alt-n"}, "next");
3340 } else {
3341 $paging_nav .= " &sdot; next";
3343 my $next_link = '';
3344 if ($#revlist >= (100 * ($page+1)-1)) {
3345 $next_link =
3346 $cgi->a({-href => href(action=>"history", hash=>$hash, hash_base=>$hash_base,
3347 file_name=>$file_name, page=>$page+1),
3348 -title => "Alt-n"}, "next");
3351 git_header_html();
3352 git_print_page_nav('history','', $hash_base,$co{'tree'},$hash_base, $paging_nav);
3353 git_print_header_div('commit', esc_html($co{'title'}), $hash_base);
3354 git_print_page_path($file_name, $ftype, $hash_base);
3356 git_history_body(\@revlist, ($page * 100), $#revlist,
3357 $refs, $hash_base, $ftype, $next_link);
3359 git_footer_html();
3362 sub git_search {
3363 if (!defined $searchtext) {
3364 die_error(undef, "Text field empty");
3366 if (!defined $hash) {
3367 $hash = git_get_head_hash($project);
3369 my %co = parse_commit($hash);
3370 if (!%co) {
3371 die_error(undef, "Unknown commit object");
3374 my $commit_search = 1;
3375 my $author_search = 0;
3376 my $committer_search = 0;
3377 my $pickaxe_search = 0;
3378 if ($searchtext =~ s/^author\\://i) {
3379 $author_search = 1;
3380 } elsif ($searchtext =~ s/^committer\\://i) {
3381 $committer_search = 1;
3382 } elsif ($searchtext =~ s/^pickaxe\\://i) {
3383 $commit_search = 0;
3384 $pickaxe_search = 1;
3386 # pickaxe may take all resources of your box and run for several minutes
3387 # with every query - so decide by yourself how public you make this feature
3388 my ($have_pickaxe) = gitweb_check_feature('pickaxe');
3389 if (!$have_pickaxe) {
3390 die_error('403 Permission denied', "Permission denied");
3393 git_header_html();
3394 git_print_page_nav('','', $hash,$co{'tree'},$hash);
3395 git_print_header_div('commit', esc_html($co{'title'}), $hash);
3397 print "<table cellspacing=\"0\">\n";
3398 my $alternate = 1;
3399 if ($commit_search) {
3400 $/ = "\0";
3401 open my $fd, "-|", git_cmd(), "rev-list", "--header", "--parents", $hash or next;
3402 while (my $commit_text = <$fd>) {
3403 if (!grep m/$searchtext/i, $commit_text) {
3404 next;
3406 if ($author_search && !grep m/\nauthor .*$searchtext/i, $commit_text) {
3407 next;
3409 if ($committer_search && !grep m/\ncommitter .*$searchtext/i, $commit_text) {
3410 next;
3412 my @commit_lines = split "\n", $commit_text;
3413 my %co = parse_commit(undef, \@commit_lines);
3414 if (!%co) {
3415 next;
3417 if ($alternate) {
3418 print "<tr class=\"dark\">\n";
3419 } else {
3420 print "<tr class=\"light\">\n";
3422 $alternate ^= 1;
3423 print "<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n" .
3424 "<td><i>" . esc_html(chop_str($co{'author_name'}, 15, 5)) . "</i></td>\n" .
3425 "<td>" .
3426 $cgi->a({-href => href(action=>"commit", hash=>$co{'id'}), -class => "list subject"},
3427 esc_html(chop_str($co{'title'}, 50)) . "<br/>");
3428 my $comment = $co{'comment'};
3429 foreach my $line (@$comment) {
3430 if ($line =~ m/^(.*)($searchtext)(.*)$/i) {
3431 my $lead = esc_html($1) || "";
3432 $lead = chop_str($lead, 30, 10);
3433 my $match = esc_html($2) || "";
3434 my $trail = esc_html($3) || "";
3435 $trail = chop_str($trail, 30, 10);
3436 my $text = "$lead<span class=\"match\">$match</span>$trail";
3437 print chop_str($text, 80, 5) . "<br/>\n";
3440 print "</td>\n" .
3441 "<td class=\"link\">" .
3442 $cgi->a({-href => href(action=>"commit", hash=>$co{'id'})}, "commit") .
3443 " | " .
3444 $cgi->a({-href => href(action=>"tree", hash=>$co{'tree'}, hash_base=>$co{'id'})}, "tree");
3445 print "</td>\n" .
3446 "</tr>\n";
3448 close $fd;
3451 if ($pickaxe_search) {
3452 $/ = "\n";
3453 my $git_command = git_cmd_str();
3454 open my $fd, "-|", "$git_command rev-list $hash | " .
3455 "$git_command diff-tree -r --stdin -S\'$searchtext\'";
3456 undef %co;
3457 my @files;
3458 while (my $line = <$fd>) {
3459 if (%co && $line =~ m/^:([0-7]{6}) ([0-7]{6}) ([0-9a-fA-F]{40}) ([0-9a-fA-F]{40}) (.)\t(.*)$/) {
3460 my %set;
3461 $set{'file'} = $6;
3462 $set{'from_id'} = $3;
3463 $set{'to_id'} = $4;
3464 $set{'id'} = $set{'to_id'};
3465 if ($set{'id'} =~ m/0{40}/) {
3466 $set{'id'} = $set{'from_id'};
3468 if ($set{'id'} =~ m/0{40}/) {
3469 next;
3471 push @files, \%set;
3472 } elsif ($line =~ m/^([0-9a-fA-F]{40})$/){
3473 if (%co) {
3474 if ($alternate) {
3475 print "<tr class=\"dark\">\n";
3476 } else {
3477 print "<tr class=\"light\">\n";
3479 $alternate ^= 1;
3480 print "<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n" .
3481 "<td><i>" . esc_html(chop_str($co{'author_name'}, 15, 5)) . "</i></td>\n" .
3482 "<td>" .
3483 $cgi->a({-href => href(action=>"commit", hash=>$co{'id'}),
3484 -class => "list subject"},
3485 esc_html(chop_str($co{'title'}, 50)) . "<br/>");
3486 while (my $setref = shift @files) {
3487 my %set = %$setref;
3488 print $cgi->a({-href => href(action=>"blob", hash_base=>$co{'id'},
3489 hash=>$set{'id'}, file_name=>$set{'file'}),
3490 -class => "list"},
3491 "<span class=\"match\">" . esc_html($set{'file'}) . "</span>") .
3492 "<br/>\n";
3494 print "</td>\n" .
3495 "<td class=\"link\">" .
3496 $cgi->a({-href => href(action=>"commit", hash=>$co{'id'})}, "commit") .
3497 " | " .
3498 $cgi->a({-href => href(action=>"tree", hash=>$co{'tree'}, hash_base=>$co{'id'})}, "tree");
3499 print "</td>\n" .
3500 "</tr>\n";
3502 %co = parse_commit($1);
3505 close $fd;
3507 print "</table>\n";
3508 git_footer_html();
3511 sub git_shortlog {
3512 my $head = git_get_head_hash($project);
3513 if (!defined $hash) {
3514 $hash = $head;
3516 if (!defined $page) {
3517 $page = 0;
3519 my $refs = git_get_references();
3521 my $limit = sprintf("--max-count=%i", (100 * ($page+1)));
3522 open my $fd, "-|", git_cmd(), "rev-list", $limit, $hash
3523 or die_error(undef, "Open git-rev-list failed");
3524 my @revlist = map { chomp; $_ } <$fd>;
3525 close $fd;
3527 my $paging_nav = format_paging_nav('shortlog', $hash, $head, $page, $#revlist);
3528 my $next_link = '';
3529 if ($#revlist >= (100 * ($page+1)-1)) {
3530 $next_link =
3531 $cgi->a({-href => href(action=>"shortlog", hash=>$hash, page=>$page+1),
3532 -title => "Alt-n"}, "next");
3536 git_header_html();
3537 git_print_page_nav('shortlog','', $hash,$hash,$hash, $paging_nav);
3538 git_print_header_div('summary', $project);
3540 git_shortlog_body(\@revlist, ($page * 100), $#revlist, $refs, $next_link);
3542 git_footer_html();
3545 ## ......................................................................
3546 ## feeds (RSS, OPML)
3548 sub git_rss {
3549 # http://www.notestips.com/80256B3A007F2692/1/NAMO5P9UPQ
3550 open my $fd, "-|", git_cmd(), "rev-list", "--max-count=150", git_get_head_hash($project)
3551 or die_error(undef, "Open git-rev-list failed");
3552 my @revlist = map { chomp; $_ } <$fd>;
3553 close $fd or die_error(undef, "Reading git-rev-list failed");
3554 print $cgi->header(-type => 'text/xml', -charset => 'utf-8');
3555 print <<XML;
3556 <?xml version="1.0" encoding="utf-8"?>
3557 <rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/">
3558 <channel>
3559 <title>$project $my_uri $my_url</title>
3560 <link>${\esc_html("$my_url?p=$project;a=summary")}</link>
3561 <description>$project log</description>
3562 <language>en</language>
3565 for (my $i = 0; $i <= $#revlist; $i++) {
3566 my $commit = $revlist[$i];
3567 my %co = parse_commit($commit);
3568 # we read 150, we always show 30 and the ones more recent than 48 hours
3569 if (($i >= 20) && ((time - $co{'committer_epoch'}) > 48*60*60)) {
3570 last;
3572 my %cd = parse_date($co{'committer_epoch'});
3573 open $fd, "-|", git_cmd(), "diff-tree", '-r', @diff_opts,
3574 $co{'parent'}, $co{'id'}
3575 or next;
3576 my @difftree = map { chomp; $_ } <$fd>;
3577 close $fd
3578 or next;
3579 print "<item>\n" .
3580 "<title>" .
3581 sprintf("%d %s %02d:%02d", $cd{'mday'}, $cd{'month'}, $cd{'hour'}, $cd{'minute'}) . " - " . esc_html($co{'title'}) .
3582 "</title>\n" .
3583 "<author>" . esc_html($co{'author'}) . "</author>\n" .
3584 "<pubDate>$cd{'rfc2822'}</pubDate>\n" .
3585 "<guid isPermaLink=\"true\">" . esc_html("$my_url?p=$project;a=commit;h=$commit") . "</guid>\n" .
3586 "<link>" . esc_html("$my_url?p=$project;a=commit;h=$commit") . "</link>\n" .
3587 "<description>" . esc_html($co{'title'}) . "</description>\n" .
3588 "<content:encoded>" .
3589 "<![CDATA[\n";
3590 my $comment = $co{'comment'};
3591 foreach my $line (@$comment) {
3592 $line = decode("utf8", $line, Encode::FB_DEFAULT);
3593 print "$line<br/>\n";
3595 print "<br/>\n";
3596 foreach my $line (@difftree) {
3597 if (!($line =~ m/^:([0-7]{6}) ([0-7]{6}) ([0-9a-fA-F]{40}) ([0-9a-fA-F]{40}) (.)([0-9]{0,3})\t(.*)$/)) {
3598 next;
3600 my $file = esc_html(unquote($7));
3601 $file = decode("utf8", $file, Encode::FB_DEFAULT);
3602 print "$file<br/>\n";
3604 print "]]>\n" .
3605 "</content:encoded>\n" .
3606 "</item>\n";
3608 print "</channel></rss>";
3611 sub git_opml {
3612 my @list = git_get_projects_list();
3614 print $cgi->header(-type => 'text/xml', -charset => 'utf-8');
3615 print <<XML;
3616 <?xml version="1.0" encoding="utf-8"?>
3617 <opml version="1.0">
3618 <head>
3619 <title>$site_name Git OPML Export</title>
3620 </head>
3621 <body>
3622 <outline text="git RSS feeds">
3625 foreach my $pr (@list) {
3626 my %proj = %$pr;
3627 my $head = git_get_head_hash($proj{'path'});
3628 if (!defined $head) {
3629 next;
3631 $git_dir = "$projectroot/$proj{'path'}";
3632 my %co = parse_commit($head);
3633 if (!%co) {
3634 next;
3637 my $path = esc_html(chop_str($proj{'path'}, 25, 5));
3638 my $rss = "$my_url?p=$proj{'path'};a=rss";
3639 my $html = "$my_url?p=$proj{'path'};a=summary";
3640 print "<outline type=\"rss\" text=\"$path\" title=\"$path\" xmlUrl=\"$rss\" htmlUrl=\"$html\"/>\n";
3642 print <<XML;
3643 </outline>
3644 </body>
3645 </opml>