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
12 use CGI qw(:standard :escapeHTML -nosticky);
13 use CGI::Util qw(unescape);
14 use CGI::Carp qw(fatalsToBrowser);
17 binmode STDOUT, ':utf8';
21 our $my_url = $cgi->url();
22 our $my_uri = $cgi->url(-absolute => 1);
25 # core git executable to use
26 # this can just be "git" if your webserver has a sensible PATH
27 our $GIT = "/usr/bin/git";
29 # absolute fs-path which will be prepended to the project path
30 #our $projectroot = "/pub/scm";
31 our $projectroot = "/home/kay/public_html/pub/scm";
33 # version of the core git binary
34 our $git_version = qx($GIT --version) =~ m/git version (.*)$/ ? $1 : "unknown";
36 # location for temporary files needed for diffs
37 our $git_temp = "/tmp/gitweb";
39 mkdir($git_temp, 0700) || die_error("Couldn't mkdir $git_temp");
42 # target of the home link on top of all pages
43 our $home_link = $my_uri;
45 # name of your site or organization to appear in page titles
46 # replace this with something more descriptive for clearer bookmarks
47 our $site_name = $ENV{'SERVER_NAME'} || "Untitled";
49 # html text to include at home page
50 our $home_text = "indextext.html";
52 # URI of default stylesheet
53 our $stylesheet = "gitweb.css";
55 # source of projects list
56 #our $projects_list = $projectroot;
57 our $projects_list = "index/index.aux";
59 # default blob_plain mimetype and default charset for text/plain blob
60 our $default_blob_plain_mimetype = 'text/plain';
61 our $default_text_plain_charset = undef;
63 # file to use for guessing MIME types before trying /etc/mime.types
64 # (relative to the current git repository)
65 our $mimetypes_file = undef;
67 # input validation and dispatch
68 our $action = $cgi->param('a');
69 if (defined $action) {
70 if ($action =~ m/[^0-9a-zA-Z\.\-_]/) {
72 die_error(undef, "Invalid action parameter.");
74 if ($action eq "git-logo.png") {
77 } elsif ($action eq "opml") {
83 our $order = $cgi->param('o');
85 if ($order =~ m/[^0-9a-zA-Z_]/) {
87 die_error(undef, "Invalid order parameter.");
91 our $project = ($cgi->param('p') || $ENV{'PATH_INFO'});
92 if (defined $project) {
93 $project =~ s|^/||; $project =~ s|/$||;
94 $project = validate_input($project);
95 if (!defined($project)) {
96 die_error(undef, "Invalid project parameter.");
98 if (!(-d "$projectroot/$project")) {
100 die_error(undef, "No such directory.");
102 if (!(-e "$projectroot/$project/HEAD")) {
104 die_error(undef, "No such project.");
106 $rss_link = "<link rel=\"alternate\" title=\"" . esc_param($project) . " log\" href=\"" .
107 "$my_uri?" . esc_param("p=$project;a=rss") . "\" type=\"application/rss+xml\"/>";
108 $ENV{'GIT_DIR'} = "$projectroot/$project";
114 our $file_name = $cgi->param('f');
115 if (defined $file_name) {
116 $file_name = validate_input($file_name);
117 if (!defined($file_name)) {
118 die_error(undef, "Invalid file parameter.");
122 our $hash = $cgi->param('h');
124 $hash = validate_input($hash);
125 if (!defined($hash)) {
126 die_error(undef, "Invalid hash parameter.");
130 our $hash_parent = $cgi->param('hp');
131 if (defined $hash_parent) {
132 $hash_parent = validate_input($hash_parent);
133 if (!defined($hash_parent)) {
134 die_error(undef, "Invalid hash parent parameter.");
138 our $hash_base = $cgi->param('hb');
139 if (defined $hash_base) {
140 $hash_base = validate_input($hash_base);
141 if (!defined($hash_base)) {
142 die_error(undef, "Invalid hash base parameter.");
146 our $page = $cgi->param('pg');
148 if ($page =~ m/[^0-9]$/) {
150 die_error(undef, "Invalid page parameter.");
154 our $searchtext = $cgi->param('s');
155 if (defined $searchtext) {
156 if ($searchtext =~ m/[^a-zA-Z0-9_\.\/\-\+\:\@ ]/) {
158 die_error(undef, "Invalid search parameter.");
160 $searchtext = quotemeta $searchtext;
166 if ($input =~ m/^[0-9a-fA-F]{40}$/) {
169 if ($input =~ m/(^|\/)(|\.|\.\.)($|\/)/) {
172 if ($input =~ m/[^a-zA-Z0-9_\x80-\xff\ \t\.\/\-\+\#\~\%]/) {
178 if (!defined $action || $action eq "summary") {
181 } elsif ($action eq "heads") {
184 } elsif ($action eq "tags") {
187 } elsif ($action eq "blob") {
190 } elsif ($action eq "blob_plain") {
193 } elsif ($action eq "tree") {
196 } elsif ($action eq "rss") {
199 } elsif ($action eq "commit") {
202 } elsif ($action eq "log") {
205 } elsif ($action eq "blobdiff") {
208 } elsif ($action eq "blobdiff_plain") {
209 git_blobdiff_plain();
211 } elsif ($action eq "commitdiff") {
214 } elsif ($action eq "commitdiff_plain") {
215 git_commitdiff_plain();
217 } elsif ($action eq "history") {
220 } elsif ($action eq "search") {
223 } elsif ($action eq "shortlog") {
226 } elsif ($action eq "tag") {
229 } elsif ($action eq "blame") {
234 die_error(undef, "Unknown action.");
238 # quote unsafe chars, but keep the slash, even when it's not
239 # correct, but quoted slashes look too horrible in bookmarks
242 $str =~ s/([^A-Za-z0-9\-_.~();\/;?:@&=])/sprintf("%%%02X", ord($1))/eg;
248 # replace invalid utf8 character with SUBSTITUTION sequence
251 $str = decode("utf8", $str, Encode::FB_DEFAULT);
252 $str = escapeHTML($str);
253 $str =~ s/\014/^L/g; # escape FORM FEED (FF) character (e.g. in COPYING file)
257 # git may return quoted and escaped filenames
260 if ($str =~ m/^"(.*)"$/) {
262 $str =~ s/\\([0-7]{1,3})/chr(oct($1))/eg;
267 # CSS class for given age value (in seconds)
271 if ($age < 60*60*2) {
273 } elsif ($age < 60*60*24*2) {
280 sub git_header_html {
281 my $status = shift || "200 OK";
284 my $title = "$site_name git";
285 if (defined $project) {
286 $title .= " - $project";
287 if (defined $action) {
288 $title .= "/$action";
289 if (defined $file_name) {
290 $title .= " - $file_name";
291 if ($action eq "tree" && $file_name !~ m|/$|) {
298 # require explicit support from the UA if we are to send the page as
299 # 'application/xhtml+xml', otherwise send it as plain old 'text/html'.
300 # we have to do this because MSIE sometimes globs '*/*', pretending to
301 # support xhtml+xml but choking when it gets what it asked for.
302 if ($cgi->http('HTTP_ACCEPT') =~ m/(,|;|\s|^)application\/xhtml\+xml(,|;|\s|$)/ && $cgi->Accept('application/xhtml+xml') != 0) {
303 $content_type = 'application/xhtml+xml';
305 $content_type = 'text/html';
307 print $cgi->header(-type=>$content_type, -charset => 'utf-8', -status=> $status, -expires => $expires);
309 <?xml version="1.0" encoding="utf-8"?>
310 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
311 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" lang="en-US">
312 <!-- git web interface v$version, (C) 2005-2006, Kay Sievers <kay.sievers\@vrfy.org>, Christian Gierke -->
313 <!-- git core binaries version $git_version -->
315 <meta http-equiv="content-type" content="$content_type; charset=utf-8"/>
316 <meta name="robots" content="index, nofollow"/>
317 <title>$title</title>
318 <link rel="stylesheet" type="text/css" href="$stylesheet"/>
323 print "<div class=\"page_header\">\n" .
324 "<a href=\"http://www.kernel.org/pub/software/scm/git/docs/\" title=\"git documentation\">" .
325 "<img src=\"$my_uri?" . esc_param("a=git-logo.png") . "\" width=\"72\" height=\"27\" alt=\"git\" style=\"float:right; border-width:0px;\"/>" .
327 print $cgi->a({-href => esc_param($home_link)}, "projects") . " / ";
328 if (defined $project) {
329 print $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=summary")}, esc_html($project));
330 if (defined $action) {
334 if (!defined $searchtext) {
338 if (defined $hash_base) {
339 $search_hash = $hash_base;
340 } elsif (defined $hash) {
341 $search_hash = $hash;
343 $search_hash = "HEAD";
345 $cgi->param("a", "search");
346 $cgi->param("h", $search_hash);
347 print $cgi->startform(-method => "get", -action => $my_uri) .
348 "<div class=\"search\">\n" .
349 $cgi->hidden(-name => "p") . "\n" .
350 $cgi->hidden(-name => "a") . "\n" .
351 $cgi->hidden(-name => "h") . "\n" .
352 $cgi->textfield(-name => "s", -value => $searchtext) . "\n" .
354 $cgi->end_form() . "\n";
359 sub git_footer_html {
360 print "<div class=\"page_footer\">\n";
361 if (defined $project) {
362 my $descr = git_read_description($project);
363 if (defined $descr) {
364 print "<div class=\"page_footer_text\">" . esc_html($descr) . "</div>\n";
366 print $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=rss"), -class => "rss_logo"}, "RSS") . "\n";
368 print $cgi->a({-href => "$my_uri?" . esc_param("a=opml"), -class => "rss_logo"}, "OPML") . "\n";
376 my $status = shift || "403 Forbidden";
377 my $error = shift || "Malformed query, file missing or permission denied";
379 git_header_html($status);
380 print "<div class=\"page_body\">\n" .
382 "$status - $error\n" .
390 my ($current, $suppress, $head, $treehead, $treebase, $extra) = @_;
391 $extra = '' if !defined $extra; # pager or formats
393 my @navs = qw(summary shortlog log commit commitdiff tree);
395 @navs = grep { $_ ne $suppress } @navs;
398 my %arg = map { $_, ''} @navs;
400 for (qw(commit commitdiff)) {
401 $arg{$_} = ";h=$head";
403 if ($current =~ m/^(tree | log | shortlog | commit | commitdiff | search)$/x) {
404 for (qw(shortlog log)) {
405 $arg{$_} = ";h=$head";
409 $arg{tree} .= ";h=$treehead" if defined $treehead;
410 $arg{tree} .= ";hb=$treebase" if defined $treebase;
412 print "<div class=\"page_nav\">\n" .
416 : $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=$_$arg{$_}")}, "$_")
419 print "<br/>\n$extra<br/>\n" .
424 my ($action, $title, $hash, $hash_base) = @_;
427 $rest .= ";h=$hash" if $hash;
428 $rest .= ";hb=$hash_base" if $hash_base;
430 print "<div class=\"header\">\n" .
431 $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=$action$rest"),
432 -class => "title"}, $title ? $title : $action) . "\n" .
436 sub git_get_paging_nav {
437 my ($action, $hash, $head, $page, $nrevs) = @_;
441 if ($hash ne $head || $page) {
442 $paging_nav .= $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=$action")}, "HEAD");
444 $paging_nav .= "HEAD";
448 $paging_nav .= " ⋅ " .
449 $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=$action;h=$hash;pg=" . ($page-1)),
450 -accesskey => "p", -title => "Alt-p"}, "prev");
452 $paging_nav .= " ⋅ prev";
455 if ($nrevs >= (100 * ($page+1)-1)) {
456 $paging_nav .= " ⋅ " .
457 $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=$action;h=$hash;pg=" . ($page+1)),
458 -accesskey => "n", -title => "Alt-n"}, "next");
460 $paging_nav .= " ⋅ next";
469 open my $fd, "-|", $GIT, "cat-file", '-t', $hash or return;
478 my $oENV = $ENV{'GIT_DIR'};
480 $ENV{'GIT_DIR'} = "$projectroot/$project";
481 if (open my $fd, "-|", $GIT, "rev-parse", "--verify", "HEAD") {
484 if (defined $head && $head =~ /^([0-9a-fA-F]{40})$/) {
489 $ENV{'GIT_DIR'} = $oENV;
497 open my $fd, "$projectroot/$path" or return undef;
501 if ($head =~ m/^[0-9a-fA-F]{40}$/) {
506 sub git_read_description {
509 open my $fd, "$projectroot/$path/description" or return undef;
521 open my $fd, "-|", $GIT, "cat-file", "tag", $tag_id or return;
522 $tag{'id'} = $tag_id;
523 while (my $line = <$fd>) {
525 if ($line =~ m/^object ([0-9a-fA-F]{40})$/) {
527 } elsif ($line =~ m/^type (.+)$/) {
529 } elsif ($line =~ m/^tag (.+)$/) {
531 } elsif ($line =~ m/^tagger (.*) ([0-9]+) (.*)$/) {
535 } elsif ($line =~ m/--BEGIN/) {
536 push @comment, $line;
538 } elsif ($line eq "") {
542 push @comment, <$fd>;
543 $tag{'comment'} = \@comment;
545 if (!defined $tag{'name'}) {
555 if ($age > 60*60*24*365*2) {
556 $age_str = (int $age/60/60/24/365);
557 $age_str .= " years ago";
558 } elsif ($age > 60*60*24*(365/12)*2) {
559 $age_str = int $age/60/60/24/(365/12);
560 $age_str .= " months ago";
561 } elsif ($age > 60*60*24*7*2) {
562 $age_str = int $age/60/60/24/7;
563 $age_str .= " weeks ago";
564 } elsif ($age > 60*60*24*2) {
565 $age_str = int $age/60/60/24;
566 $age_str .= " days ago";
567 } elsif ($age > 60*60*2) {
568 $age_str = int $age/60/60;
569 $age_str .= " hours ago";
570 } elsif ($age > 60*2) {
571 $age_str = int $age/60;
572 $age_str .= " min ago";
575 $age_str .= " sec ago";
577 $age_str .= " right now";
582 sub git_read_commit {
583 my $commit_id = shift;
584 my $commit_text = shift;
589 if (defined $commit_text) {
590 @commit_lines = @$commit_text;
593 open my $fd, "-|", $GIT, "rev-list", "--header", "--parents", "--max-count=1", $commit_id or return;
594 @commit_lines = split '\n', <$fd>;
599 my $header = shift @commit_lines;
600 if (!($header =~ m/^[0-9a-fA-F]{40}/)) {
603 ($co{'id'}, my @parents) = split ' ', $header;
604 $co{'parents'} = \@parents;
605 $co{'parent'} = $parents[0];
606 while (my $line = shift @commit_lines) {
607 last if $line eq "\n";
608 if ($line =~ m/^tree ([0-9a-fA-F]{40})$/) {
610 } elsif ($line =~ m/^author (.*) ([0-9]+) (.*)$/) {
612 $co{'author_epoch'} = $2;
613 $co{'author_tz'} = $3;
614 if ($co{'author'} =~ m/^([^<]+) </) {
615 $co{'author_name'} = $1;
617 $co{'author_name'} = $co{'author'};
619 } elsif ($line =~ m/^committer (.*) ([0-9]+) (.*)$/) {
620 $co{'committer'} = $1;
621 $co{'committer_epoch'} = $2;
622 $co{'committer_tz'} = $3;
623 $co{'committer_name'} = $co{'committer'};
624 $co{'committer_name'} =~ s/ <.*//;
627 if (!defined $co{'tree'}) {
631 foreach my $title (@commit_lines) {
634 $co{'title'} = chop_str($title, 80, 5);
635 # remove leading stuff of merges to make the interesting part visible
636 if (length($title) > 50) {
637 $title =~ s/^Automatic //;
638 $title =~ s/^merge (of|with) /Merge ... /i;
639 if (length($title) > 50) {
640 $title =~ s/(http|rsync):\/\///;
642 if (length($title) > 50) {
643 $title =~ s/(master|www|rsync)\.//;
645 if (length($title) > 50) {
646 $title =~ s/kernel.org:?//;
648 if (length($title) > 50) {
649 $title =~ s/\/pub\/scm//;
652 $co{'title_short'} = chop_str($title, 50, 5);
656 # remove added spaces
657 foreach my $line (@commit_lines) {
660 $co{'comment'} = \@commit_lines;
662 my $age = time - $co{'committer_epoch'};
664 $co{'age_string'} = age_string($age);
665 my ($sec, $min, $hour, $mday, $mon, $year, $wday, $yday) = gmtime($co{'committer_epoch'});
666 if ($age > 60*60*24*7*2) {
667 $co{'age_string_date'} = sprintf "%4i-%02u-%02i", 1900 + $year, $mon+1, $mday;
668 $co{'age_string_age'} = $co{'age_string'};
670 $co{'age_string_date'} = $co{'age_string'};
671 $co{'age_string_age'} = sprintf "%4i-%02u-%02i", 1900 + $year, $mon+1, $mday;
678 my $from_name = shift;
681 my $format = shift || "html";
683 my $from_tmp = "/dev/null";
684 my $to_tmp = "/dev/null";
687 # create tmp from-file
689 $from_tmp = "$git_temp/gitweb_" . $$ . "_from";
690 open my $fd2, "> $from_tmp";
691 open my $fd, "-|", $GIT, "cat-file", "blob", $from;
700 $to_tmp = "$git_temp/gitweb_" . $$ . "_to";
701 open my $fd2, "> $to_tmp";
702 open my $fd, "-|", $GIT, "cat-file", "blob", $to;
709 open my $fd, "-|", "/usr/bin/diff -u -p -L \'$from_name\' -L \'$to_name\' $from_tmp $to_tmp";
710 if ($format eq "plain") {
715 while (my $line = <$fd>) {
717 my $char = substr($line, 0, 1);
720 $diff_class = " add";
721 } elsif ($char eq "-") {
722 $diff_class = " rem";
723 } elsif ($char eq "@") {
724 $diff_class = " chunk_header";
725 } elsif ($char eq "\\") {
729 while ((my $pos = index($line, "\t")) != -1) {
730 if (my $count = (8 - (($pos-1) % 8))) {
731 my $spaces = ' ' x $count;
732 $line =~ s/\t/$spaces/;
735 print "<div class=\"diff$diff_class\">" . esc_html($line) . "</div>\n";
749 my $mode = oct shift;
751 if (S_ISDIR($mode & S_IFMT)) {
753 } elsif (S_ISLNK($mode)) {
755 } elsif (S_ISREG($mode)) {
756 # git cares only about the executable bit
757 if ($mode & S_IXUSR) {
770 my $add_len = shift || 10;
772 # allow only $len chars, but don't cut a word if it would fit in $add_len
773 # if it doesn't fit, cut it if it's still longer than the dots we would add
774 $str =~ m/^(.{0,$len}[^ \/\-_:\.@]{0,$add_len})(.*)/;
777 if (length($tail) > 4) {
779 $body =~ s/&[^;]$//; # remove chopped character entities
785 my $mode = oct shift;
787 if (S_ISDIR($mode & S_IFMT)) {
789 } elsif (S_ISLNK($mode)) {
791 } elsif (S_ISREG($mode)) {
798 sub format_log_line_html {
801 $line = esc_html($line);
802 $line =~ s/ / /g;
803 if ($line =~ m/([0-9a-fA-F]{40})/) {
805 if (git_get_type($hash_text) eq "commit") {
806 my $link = $cgi->a({-class => "text", -href => "$my_uri?" . esc_param("p=$project;a=commit;h=$hash_text")}, $hash_text);
807 $line =~ s/$hash_text/$link/;
815 my $tz = shift || "-0000";
818 my @months = ("Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec");
819 my @days = ("Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat");
820 my ($sec, $min, $hour, $mday, $mon, $year, $wday, $yday) = gmtime($epoch);
821 $date{'hour'} = $hour;
822 $date{'minute'} = $min;
823 $date{'mday'} = $mday;
824 $date{'day'} = $days[$wday];
825 $date{'month'} = $months[$mon];
826 $date{'rfc2822'} = sprintf "%s, %d %s %4d %02d:%02d:%02d +0000", $days[$wday], $mday, $months[$mon], 1900+$year, $hour ,$min, $sec;
827 $date{'mday-time'} = sprintf "%d %s %02d:%02d", $mday, $months[$mon], $hour ,$min;
829 $tz =~ m/^([+\-][0-9][0-9])([0-9][0-9])$/;
830 my $local = $epoch + ((int $1 + ($2/60)) * 3600);
831 ($sec, $min, $hour, $mday, $mon, $year, $wday, $yday) = gmtime($local);
832 $date{'hour_local'} = $hour;
833 $date{'minute_local'} = $min;
834 $date{'tz_local'} = $tz;
838 # git-logo (cached in browser for one day)
840 binmode STDOUT, ':raw';
841 print $cgi->header(-type => 'image/png', -expires => '+1d');
842 # cat git-logo.png | hexdump -e '16/1 " %02x" "\n"' | sed 's/ /\\x/g'
843 print "\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52" .
844 "\x00\x00\x00\x48\x00\x00\x00\x1b\x04\x03\x00\x00\x00\x2d\xd9\xd4" .
845 "\x2d\x00\x00\x00\x18\x50\x4c\x54\x45\xff\xff\xff\x60\x60\x5d\xb0" .
846 "\xaf\xaa\x00\x80\x00\xce\xcd\xc7\xc0\x00\x00\xe8\xe8\xe6\xf7\xf7" .
847 "\xf6\x95\x0c\xa7\x47\x00\x00\x00\x73\x49\x44\x41\x54\x28\xcf\x63" .
848 "\x48\x67\x20\x04\x4a\x5c\x18\x0a\x08\x2a\x62\x53\x61\x20\x02\x08" .
849 "\x0d\x69\x45\xac\xa1\xa1\x01\x30\x0c\x93\x60\x36\x26\x52\x91\xb1" .
850 "\x01\x11\xd6\xe1\x55\x64\x6c\x6c\xcc\x6c\x6c\x0c\xa2\x0c\x70\x2a" .
851 "\x62\x06\x2a\xc1\x62\x1d\xb3\x01\x02\x53\xa4\x08\xe8\x00\x03\x18" .
852 "\x26\x56\x11\xd4\xe1\x20\x97\x1b\xe0\xb4\x0e\x35\x24\x71\x29\x82" .
853 "\x99\x30\xb8\x93\x0a\x11\xb9\x45\x88\xc1\x8d\xa0\xa2\x44\x21\x06" .
854 "\x27\x41\x82\x40\x85\xc1\x45\x89\x20\x70\x01\x00\xa4\x3d\x21\xc5" .
855 "\x12\x1c\x9a\xfe\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82";
861 my ($dev, $ino, $mode, $nlink, $st_uid, $st_gid, $rdev, $size) = stat($path);
862 my ($name, $passwd, $uid, $gid, $quota, $comment, $gcos, $dir, $shell) = getpwuid($st_uid);
863 if (!defined $gcos) {
867 $owner =~ s/[,;].*$//;
868 return decode("utf8", $owner, Encode::FB_DEFAULT);
871 sub git_read_projects {
874 if (-d $projects_list) {
875 # search in directory
876 my $dir = $projects_list;
877 opendir my ($dh), $dir or return undef;
878 while (my $dir = readdir($dh)) {
879 if (-e "$projectroot/$dir/HEAD") {
887 } elsif (-f $projects_list) {
888 # read from file(url-encoded):
889 # 'git%2Fgit.git Linus+Torvalds'
890 # 'libs%2Fklibc%2Fklibc.git H.+Peter+Anvin'
891 # 'linux%2Fhotplug%2Fudev.git Greg+Kroah-Hartman'
892 open my ($fd), $projects_list or return undef;
893 while (my $line = <$fd>) {
895 my ($path, $owner) = split ' ', $line;
896 $path = unescape($path);
897 $owner = unescape($owner);
898 if (!defined $path) {
901 if (-e "$projectroot/$path/HEAD") {
904 owner => decode("utf8", $owner, Encode::FB_DEFAULT),
911 @list = sort {$a->{'path'} cmp $b->{'path'}} @list;
915 sub git_get_project_config {
918 return unless ($key);
919 $key =~ s/^gitweb\.//;
920 return if ($key =~ m/\W/);
922 my $val = qx($GIT repo-config --get gitweb.$key);
926 sub git_get_project_config_bool {
927 my $val = git_get_project_config (@_);
928 if ($val and $val =~ m/true|yes|on/) {
931 return; # implicit false
934 sub git_project_list {
935 my @list = git_read_projects();
938 die_error(undef, "No project found.");
940 foreach my $pr (@list) {
941 my $head = git_read_head($pr->{'path'});
942 if (!defined $head) {
945 $ENV{'GIT_DIR'} = "$projectroot/$pr->{'path'}";
946 my %co = git_read_commit($head);
950 $pr->{'commit'} = \%co;
951 if (!defined $pr->{'descr'}) {
952 my $descr = git_read_description($pr->{'path'}) || "";
953 $pr->{'descr'} = chop_str($descr, 25, 5);
955 if (!defined $pr->{'owner'}) {
956 $pr->{'owner'} = get_file_owner("$projectroot/$pr->{'path'}") || "";
962 print "<div class=\"index_include\">\n";
963 open (my $fd, $home_text);
968 print "<table class=\"project_list\">\n" .
970 if (!defined($order) || (defined($order) && ($order eq "project"))) {
971 @projects = sort {$a->{'path'} cmp $b->{'path'}} @projects;
972 print "<th>Project</th>\n";
974 print "<th>" . $cgi->a({-class => "header", -href => "$my_uri?" . esc_param("o=project")}, "Project") . "</th>\n";
976 if (defined($order) && ($order eq "descr")) {
977 @projects = sort {$a->{'descr'} cmp $b->{'descr'}} @projects;
978 print "<th>Description</th>\n";
980 print "<th>" . $cgi->a({-class => "header", -href => "$my_uri?" . esc_param("o=descr")}, "Description") . "</th>\n";
982 if (defined($order) && ($order eq "owner")) {
983 @projects = sort {$a->{'owner'} cmp $b->{'owner'}} @projects;
984 print "<th>Owner</th>\n";
986 print "<th>" . $cgi->a({-class => "header", -href => "$my_uri?" . esc_param("o=owner")}, "Owner") . "</th>\n";
988 if (defined($order) && ($order eq "age")) {
989 @projects = sort {$a->{'commit'}{'age'} <=> $b->{'commit'}{'age'}} @projects;
990 print "<th>Last Change</th>\n";
992 print "<th>" . $cgi->a({-class => "header", -href => "$my_uri?" . esc_param("o=age")}, "Last Change") . "</th>\n";
994 print "<th></th>\n" .
997 foreach my $pr (@projects) {
999 print "<tr class=\"dark\">\n";
1001 print "<tr class=\"light\">\n";
1004 print "<td>" . $cgi->a({-href => "$my_uri?" . esc_param("p=$pr->{'path'};a=summary"), -class => "list"}, esc_html($pr->{'path'})) . "</td>\n" .
1005 "<td>" . esc_html($pr->{'descr'}) . "</td>\n" .
1006 "<td><i>" . chop_str($pr->{'owner'}, 15) . "</i></td>\n";
1007 print "<td class=\"". age_class($pr->{'commit'}{'age'}) . "\">" . $pr->{'commit'}{'age_string'} . "</td>\n" .
1008 "<td class=\"link\">" .
1009 $cgi->a({-href => "$my_uri?" . esc_param("p=$pr->{'path'};a=summary")}, "summary") .
1010 " | " . $cgi->a({-href => "$my_uri?" . esc_param("p=$pr->{'path'};a=shortlog")}, "shortlog") .
1011 " | " . $cgi->a({-href => "$my_uri?" . esc_param("p=$pr->{'path'};a=log")}, "log") .
1020 my $type = shift || "";
1022 # 5dc01c595e6c6ec9ccda4f6f69c131c0dd945f8c refs/tags/v2.6.11
1023 # c39ae07f393806ccf406ef966e9a15afc43cc36a refs/tags/v2.6.11^{}
1024 open my $fd, "$projectroot/$project/info/refs" or return;
1025 while (my $line = <$fd>) {
1027 # attention: for $type == "" it saves only last path part of ref name
1028 # e.g. from 'refs/heads/jn/gitweb' it would leave only 'gitweb'
1029 if ($line =~ m/^([0-9a-fA-F]{40})\t.*$type\/([^\^]+)/) {
1030 if (defined $refs{$1}) {
1031 $refs{$1} .= " / $2";
1037 close $fd or return;
1041 sub git_get_referencing {
1042 my ($refs, $id) = @_;
1044 if (defined $refs->{$id}) {
1045 return ' <span class="tag">' . esc_html($refs->{$id}) . '</span>';
1052 my $ref_dir = shift;
1056 opendir my $dh, "$projectroot/$project/$ref_dir";
1057 while (my $dir = readdir($dh)) {
1058 if ($dir =~ m/^\./) {
1061 if (-d "$projectroot/$project/$ref_dir/$dir") {
1062 opendir my $dh2, "$projectroot/$project/$ref_dir/$dir";
1063 my @subdirs = grep !m/^\./, readdir $dh2;
1065 foreach my $subdir (@subdirs) {
1066 push @refs, "$dir/$subdir"
1073 foreach my $ref_file (@refs) {
1074 my $ref_id = git_read_hash("$project/$ref_dir/$ref_file");
1075 my $type = git_get_type($ref_id) || next;
1078 $ref_item{'type'} = $type;
1079 $ref_item{'id'} = $ref_id;
1080 $ref_item{'epoch'} = 0;
1081 $ref_item{'age'} = "unknown";
1082 if ($type eq "tag") {
1083 my %tag = git_read_tag($ref_id);
1084 $ref_item{'comment'} = $tag{'comment'};
1085 if ($tag{'type'} eq "commit") {
1086 %co = git_read_commit($tag{'object'});
1087 $ref_item{'epoch'} = $co{'committer_epoch'};
1088 $ref_item{'age'} = $co{'age_string'};
1089 } elsif (defined($tag{'epoch'})) {
1090 my $age = time - $tag{'epoch'};
1091 $ref_item{'epoch'} = $tag{'epoch'};
1092 $ref_item{'age'} = age_string($age);
1094 $ref_item{'reftype'} = $tag{'type'};
1095 $ref_item{'name'} = $tag{'name'};
1096 $ref_item{'refid'} = $tag{'object'};
1097 } elsif ($type eq "commit"){
1098 %co = git_read_commit($ref_id);
1099 $ref_item{'reftype'} = "commit";
1100 $ref_item{'name'} = $ref_file;
1101 $ref_item{'title'} = $co{'title'};
1102 $ref_item{'refid'} = $ref_id;
1103 $ref_item{'epoch'} = $co{'committer_epoch'};
1104 $ref_item{'age'} = $co{'age_string'};
1107 push @reflist, \%ref_item;
1110 @reflist = sort {$b->{'epoch'} <=> $a->{'epoch'}} @reflist;
1115 my $descr = git_read_description($project) || "none";
1116 my $head = git_read_head($project);
1117 my %co = git_read_commit($head);
1118 my %cd = date_str($co{'committer_epoch'}, $co{'committer_tz'});
1121 if (-f $projects_list) {
1122 open (my $fd , $projects_list);
1123 while (my $line = <$fd>) {
1125 my ($pr, $ow) = split ' ', $line;
1126 $pr = unescape($pr);
1127 $ow = unescape($ow);
1128 if ($pr eq $project) {
1129 $owner = decode("utf8", $ow, Encode::FB_DEFAULT);
1135 if (!defined $owner) {
1136 $owner = get_file_owner("$projectroot/$project");
1139 my $refs = read_info_ref();
1141 git_page_nav('summary','', $head);
1142 print "<div class=\"title\"> </div>\n";
1143 print "<table cellspacing=\"0\">\n" .
1144 "<tr><td>description</td><td>" . esc_html($descr) . "</td></tr>\n" .
1145 "<tr><td>owner</td><td>$owner</td></tr>\n" .
1146 "<tr><td>last change</td><td>$cd{'rfc2822'}</td></tr>\n" .
1148 open my $fd, "-|", $GIT, "rev-list", "--max-count=17", git_read_head($project)
1149 or die_error(undef, "Open git-rev-list failed.");
1150 my @revlist = map { chomp; $_ } <$fd>;
1152 git_header_div('shortlog');
1154 print "<table cellspacing=\"0\">\n";
1156 foreach my $commit (@revlist) {
1157 my %co = git_read_commit($commit);
1158 my %ad = date_str($co{'author_epoch'});
1160 print "<tr class=\"dark\">\n";
1162 print "<tr class=\"light\">\n";
1166 my $ref = git_get_referencing($refs, $commit);
1167 print "<td><i>$co{'age_string'}</i></td>\n" .
1168 "<td><i>" . esc_html(chop_str($co{'author_name'}, 10)) . "</i></td>\n" .
1170 if (length($co{'title_short'}) < length($co{'title'})) {
1171 print $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=commit;h=$commit"), -class => "list", -title => "$co{'title'}"},
1172 "<b>" . esc_html($co{'title_short'}) . "$ref</b>");
1174 print $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=commit;h=$commit"), -class => "list"},
1175 "<b>" . esc_html($co{'title'}) . "$ref</b>");
1178 "<td class=\"link\">" .
1179 $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=commit;h=$commit")}, "commit") .
1180 " | " . $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=commitdiff;h=$commit")}, "commitdiff") .
1184 print "<td>" . $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=shortlog")}, "...") . "</td>\n" .
1191 my $taglist = git_read_refs("refs/tags");
1192 if (defined @$taglist) {
1193 git_header_div('tags');
1195 print "<table cellspacing=\"0\">\n";
1197 foreach my $entry (@$taglist) {
1199 my $comment_lines = $tag{'comment'};
1200 my $comment = shift @$comment_lines;
1201 if (defined($comment)) {
1202 $comment = chop_str($comment, 30, 5);
1205 print "<tr class=\"dark\">\n";
1207 print "<tr class=\"light\">\n";
1211 print "<td><i>$tag{'age'}</i></td>\n" .
1213 $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=$tag{'reftype'};h=$tag{'refid'}"), -class => "list"},
1214 "<b>" . esc_html($tag{'name'}) . "</b>") .
1217 if (defined($comment)) {
1218 print $cgi->a({-class => "list", -href => "$my_uri?" . esc_param("p=$project;a=tag;h=$tag{'id'}")}, esc_html($comment));
1221 "<td class=\"link\">";
1222 if ($tag{'type'} eq "tag") {
1223 print $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=tag;h=$tag{'id'}")}, "tag") . " | ";
1225 print $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=$tag{'reftype'};h=$tag{'refid'}")}, $tag{'reftype'});
1226 if ($tag{'reftype'} eq "commit") {
1227 print " | " . $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=shortlog;h=$tag{'name'}")}, "shortlog") .
1228 " | " . $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=log;h=$tag{'refid'}")}, "log");
1233 print "<td>" . $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=tags")}, "...") . "</td>\n" .
1241 my $headlist = git_read_refs("refs/heads");
1242 if (defined @$headlist) {
1243 git_header_div('heads');
1245 print "<table cellspacing=\"0\">\n";
1247 foreach my $entry (@$headlist) {
1250 print "<tr class=\"dark\">\n";
1252 print "<tr class=\"light\">\n";
1256 print "<td><i>$tag{'age'}</i></td>\n" .
1258 $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=shortlog;h=$tag{'name'}"), -class => "list"},
1259 "<b>" . esc_html($tag{'name'}) . "</b>") .
1261 "<td class=\"link\">" .
1262 $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=shortlog;h=$tag{'name'}")}, "shortlog") .
1263 " | " . $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=log;h=$tag{'name'}")}, "log") .
1267 print "<td>" . $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=heads")}, "...") . "</td>\n" .
1277 sub git_print_page_path {
1281 if (!defined $name) {
1282 print "<div class=\"page_path\"><b>/</b></div>\n";
1283 } elsif ($type =~ "blob") {
1284 print "<div class=\"page_path\"><b>" .
1285 $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=blob_plain;f=$file_name")}, esc_html($name)) . "</b><br/></div>\n";
1287 print "<div class=\"page_path\"><b>" . esc_html($name) . "</b><br/></div>\n";
1292 my $head = git_read_head($project);
1294 git_page_nav('','', $head,undef,$head);
1295 my %tag = git_read_tag($hash);
1296 git_header_div('commit', esc_html($tag{'name'}), $hash);
1297 print "<div class=\"title_text\">\n" .
1298 "<table cellspacing=\"0\">\n" .
1300 "<td>object</td>\n" .
1301 "<td>" . $cgi->a({-class => "list", -href => "$my_uri?" . esc_param("p=$project;a=$tag{'type'};h=$tag{'object'}")}, $tag{'object'}) . "</td>\n" .
1302 "<td class=\"link\">" . $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=$tag{'type'};h=$tag{'object'}")}, $tag{'type'}) . "</td>\n" .
1304 if (defined($tag{'author'})) {
1305 my %ad = date_str($tag{'epoch'}, $tag{'tz'});
1306 print "<tr><td>author</td><td>" . esc_html($tag{'author'}) . "</td></tr>\n";
1307 print "<tr><td></td><td>" . $ad{'rfc2822'} . sprintf(" (%02d:%02d %s)", $ad{'hour_local'}, $ad{'minute_local'}, $ad{'tz_local'}) . "</td></tr>\n";
1309 print "</table>\n\n" .
1311 print "<div class=\"page_body\">";
1312 my $comment = $tag{'comment'};
1313 foreach my $line (@$comment) {
1314 print esc_html($line) . "<br/>\n";
1323 die_error(undef, "Permission denied.") if (!git_get_project_config_bool ('blame'));
1324 die_error('404 Not Found', "File name not defined") if (!$file_name);
1325 $hash_base ||= git_read_head($project);
1326 die_error(undef, "Reading commit failed") unless ($hash_base);
1327 my %co = git_read_commit($hash_base)
1328 or die_error(undef, "Reading commit failed");
1329 if (!defined $hash) {
1330 $hash = git_get_hash_by_path($hash_base, $file_name, "blob")
1331 or die_error(undef, "Error looking up file");
1333 $ftype = git_get_type($hash);
1334 if ($ftype !~ "blob") {
1335 die_error("400 Bad Request", "object is not a blob");
1337 open ($fd, "-|", $GIT, "blame", '-l', $file_name, $hash_base)
1338 or die_error(undef, "Open git-blame failed.");
1341 $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=blob;h=$hash;hb=$hash_base;f=$file_name")}, "blob") .
1342 " | " . $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=blame;f=$file_name")}, "head");
1343 git_page_nav('','', $hash_base,$co{'tree'},$hash_base, $formats_nav);
1344 git_header_div('commit', esc_html($co{'title'}), $hash_base);
1345 git_print_page_path($file_name, $ftype);
1346 my @rev_color = (qw(light dark));
1347 my $num_colors = scalar(@rev_color);
1348 my $current_color = 0;
1350 print "<div class=\"page_body\">\n";
1351 print "<table class=\"blame\">\n";
1352 print "<tr><th>Commit</th><th>Line</th><th>Data</th></tr>\n";
1354 /^([0-9a-fA-F]{40}).*?(\d+)\)\s{1}(\s*.*)/;
1356 my $rev = substr($full_rev, 0, 8);
1360 if (!defined $last_rev) {
1361 $last_rev = $full_rev;
1362 } elsif ($last_rev ne $full_rev) {
1363 $last_rev = $full_rev;
1364 $current_color = ++$current_color % $num_colors;
1366 print "<tr class=\"$rev_color[$current_color]\">\n";
1367 print "<td class=\"sha1\">" .
1368 $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=commit;h=$full_rev;f=$file_name")}, esc_html($rev)) . "</td>\n";
1369 print "<td class=\"linenr\"><a id=\"l$lineno\" href=\"#l$lineno\" class=\"linenr\">" . esc_html($lineno) . "</a></td>\n";
1370 print "<td class=\"pre\">" . esc_html($data) . "</td>\n";
1375 close $fd or print "Reading blob failed\n";
1381 die_error('403 Permission denied', "Permission denied.") if (!git_get_project_config_bool ('blame'));
1382 die_error('404 Not Found', "What file will it be, master?") if (!$file_name);
1383 $hash_base ||= git_read_head($project);
1384 die_error(undef, "Reading commit failed.") unless ($hash_base);
1385 my %co = git_read_commit($hash_base)
1386 or die_error(undef, "Reading commit failed.");
1387 if (!defined $hash) {
1388 $hash = git_get_hash_by_path($hash_base, $file_name, "blob")
1389 or die_error(undef, "Error lookup file.");
1391 open ($fd, "-|", $GIT, "annotate", '-l', '-t', '-r', $file_name, $hash_base)
1392 or die_error(undef, "Open git-annotate failed.");
1395 $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=blob;h=$hash;hb=$hash_base;f=$file_name")}, "blob") .
1396 " | " . $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=blame;f=$file_name")}, "head");
1397 git_page_nav('','', $hash_base,$co{'tree'},$hash_base, $formats_nav);
1398 git_header_div('commit', esc_html($co{'title'}), $hash_base);
1399 git_print_page_path($file_name);
1400 print "<div class=\"page_body\">\n";
1402 <table class="blame">
1411 my @line_class = (qw(light dark));
1412 my $line_class_len = scalar (@line_class);
1413 my $line_class_num = $#line_class;
1414 while (my $line = <$fd>) {
1426 $line_class_num = ($line_class_num + 1) % $line_class_len;
1428 if ($line =~ m/^([0-9a-fA-F]{40})\t\(\s*([^\t]+)\t(\d+) \+\d\d\d\d\t(\d+)\)(.*)$/) {
1435 print qq( <tr><td colspan="5" class="error">Unable to parse: $line</td></tr>\n);
1438 $short_rev = substr ($long_rev, 0, 8);
1439 $age = time () - $time;
1440 $age_str = age_string ($age);
1441 $age_str =~ s/ / /g;
1442 $age_class = age_class($age);
1443 $author = esc_html ($author);
1444 $author =~ s/ / /g;
1446 while ((my $pos = index($data, "\t")) != -1) {
1447 if (my $count = (8 - ($pos % 8))) {
1448 my $spaces = ' ' x $count;
1449 $data =~ s/\t/$spaces/;
1452 $data = esc_html ($data);
1455 <tr class="$line_class[$line_class_num]">
1456 <td class="sha1"><a href="$my_uri?${\esc_param ("p=$project;a=commit;h=$long_rev")}" class="text">$short_rev..</a></td>
1457 <td class="$age_class">$age_str</td>
1459 <td class="linenr"><a id="$lineno" href="#$lineno" class="linenr">$lineno</a></td>
1460 <td class="pre">$data</td>
1463 } # while (my $line = <$fd>)
1464 print "</table>\n\n";
1465 close $fd or print "Reading blob failed.\n";
1471 my $head = git_read_head($project);
1473 git_page_nav('','', $head,undef,$head);
1474 git_header_div('summary', $project);
1475 print "<table cellspacing=\"0\">\n";
1477 my $taglist = git_read_refs("refs/tags");
1479 if (defined @$taglist) {
1480 foreach my $entry (@$taglist) {
1482 my $comment_lines = $tag{'comment'};
1483 my $comment = shift @$comment_lines;
1484 if (defined($comment)) {
1485 $comment = chop_str($comment, 30, 5);
1488 print "<tr class=\"dark\">\n";
1490 print "<tr class=\"light\">\n";
1493 print "<td><i>$tag{'age'}</i></td>\n" .
1495 $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=$tag{'reftype'};h=$tag{'refid'}"), -class => "list"},
1496 "<b>" . esc_html($tag{'name'}) . "</b>") .
1499 if (defined($comment)) {
1500 print $cgi->a({-class => "list", -href => "$my_uri?" . esc_param("p=$project;a=tag;h=$tag{'id'}")}, $comment);
1503 "<td class=\"link\">";
1504 if ($tag{'type'} eq "tag") {
1505 print $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=tag;h=$tag{'id'}")}, "tag") . " | ";
1507 print $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=$tag{'reftype'};h=$tag{'refid'}")}, $tag{'reftype'});
1508 if ($tag{'reftype'} eq "commit") {
1509 print " | " . $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=shortlog;h=$tag{'name'}")}, "shortlog") .
1510 " | " . $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=log;h=$tag{'refid'}")}, "log");
1521 my $head = git_read_head($project);
1523 git_page_nav('','', $head,undef,$head);
1524 hit_header_div('summary', $project);
1525 print "<table cellspacing=\"0\">\n";
1527 my $taglist = git_read_refs("refs/heads");
1529 if (defined @$taglist) {
1530 foreach my $entry (@$taglist) {
1533 print "<tr class=\"dark\">\n";
1535 print "<tr class=\"light\">\n";
1538 print "<td><i>$tag{'age'}</i></td>\n" .
1540 $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=shortlog;h=$tag{'name'}"), -class => "list"}, "<b>" . esc_html($tag{'name'}) . "</b>") .
1542 "<td class=\"link\">" .
1543 $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=shortlog;h=$tag{'name'}")}, "shortlog") .
1544 " | " . $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=log;h=$tag{'name'}")}, "log") .
1553 sub git_get_hash_by_path {
1555 my $path = shift || return undef;
1559 open my $fd, "-|", $GIT, "ls-tree", $base, "--", $path
1560 or die_error(undef, "Open git-ls-tree failed.");
1562 close $fd or return undef;
1564 #'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'
1565 $line =~ m/^([0-9]+) (.+) ([0-9a-fA-F]{40})\t(.+)$/;
1569 sub mimetype_guess_file {
1570 my $filename = shift;
1571 my $mimemap = shift;
1572 -r $mimemap or return undef;
1575 open(MIME, $mimemap) or return undef;
1577 my ($mime, $exts) = split(/\t+/);
1578 my @exts = split(/\s+/, $exts);
1579 foreach my $ext (@exts) {
1580 $mimemap{$ext} = $mime;
1585 $filename =~ /\.(.*?)$/;
1586 return $mimemap{$1};
1589 sub mimetype_guess {
1590 my $filename = shift;
1592 $filename =~ /\./ or return undef;
1594 if ($mimetypes_file) {
1595 my $file = $mimetypes_file;
1596 #$file =~ m#^/# or $file = "$projectroot/$path/$file";
1597 $mime = mimetype_guess_file($filename, $file);
1599 $mime ||= mimetype_guess_file($filename, '/etc/mime.types');
1603 sub git_blob_plain_mimetype {
1605 my $filename = shift;
1608 my $mime = mimetype_guess($filename);
1609 $mime and return $mime;
1613 return $default_blob_plain_mimetype unless $fd;
1616 return 'text/plain' .
1617 ($default_text_plain_charset ? '; charset='.$default_text_plain_charset : '');
1618 } elsif (! $filename) {
1619 return 'application/octet-stream';
1620 } elsif ($filename =~ m/\.png$/i) {
1622 } elsif ($filename =~ m/\.gif$/i) {
1624 } elsif ($filename =~ m/\.jpe?g$/i) {
1625 return 'image/jpeg';
1627 return 'application/octet-stream';
1631 sub git_blob_plain {
1632 if (!defined $hash) {
1633 if (defined $file_name) {
1634 my $base = $hash_base || git_read_head($project);
1635 $hash = git_get_hash_by_path($base, $file_name, "blob")
1636 or die_error(undef, "Error lookup file.");
1638 die_error(undef, "No file name defined.");
1642 open my $fd, "-|", $GIT, "cat-file", "blob", $hash
1643 or die_error("Couldn't cat $file_name, $hash");
1645 $type ||= git_blob_plain_mimetype($fd, $file_name);
1647 # save as filename, even when no $file_name is given
1648 my $save_as = "$hash";
1649 if (defined $file_name) {
1650 $save_as = $file_name;
1651 } elsif ($type =~ m/^text\//) {
1655 print $cgi->header(-type => "$type", '-content-disposition' => "inline; filename=\"$save_as\"");
1657 binmode STDOUT, ':raw';
1659 binmode STDOUT, ':utf8'; # as set at the beginning of gitweb.cgi
1665 if (!defined $hash) {
1666 if (defined $file_name) {
1667 my $base = $hash_base || git_read_head($project);
1668 $hash = git_get_hash_by_path($base, $file_name, "blob")
1669 or die_error(undef, "Error lookup file.");
1671 die_error(undef, "No file name defined.");
1674 my $have_blame = git_get_project_config_bool ('blame');
1675 open my $fd, "-|", $GIT, "cat-file", "blob", $hash
1676 or die_error(undef, "Couldn't cat $file_name, $hash.");
1677 my $mimetype = git_blob_plain_mimetype($fd, $file_name);
1678 if ($mimetype !~ m/^text\//) {
1680 return git_blob_plain($mimetype);
1683 my $formats_nav = '';
1684 if (defined $hash_base && (my %co = git_read_commit($hash_base))) {
1685 if (defined $file_name) {
1687 $formats_nav .= $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=blame;h=$hash;hb=$hash_base;f=$file_name")}, "blame") . " | ";
1690 $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=blob_plain;h=$hash;f=$file_name")}, "plain") .
1691 " | " . $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=blob;hb=HEAD;f=$file_name")}, "head");
1693 $formats_nav .= $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=blob_plain;h=$hash")}, "plain");
1695 git_page_nav('','', $hash_base,$co{'tree'},$hash_base, $formats_nav);
1696 git_header_div('commit', esc_html($co{'title'}), $hash_base);
1698 print "<div class=\"page_nav\">\n" .
1699 "<br/><br/></div>\n" .
1700 "<div class=\"title\">$hash</div>\n";
1702 git_print_page_path($file_name, "blob");
1703 print "<div class=\"page_body\">\n";
1705 while (my $line = <$fd>) {
1708 while ((my $pos = index($line, "\t")) != -1) {
1709 if (my $count = (8 - ($pos % 8))) {
1710 my $spaces = ' ' x $count;
1711 $line =~ s/\t/$spaces/;
1714 printf "<div class=\"pre\"><a id=\"l%i\" href=\"#l%i\" class=\"linenr\">%4i</a> %s</div>\n", $nr, $nr, $nr, esc_html($line);
1716 close $fd or print "Reading blob failed.\n";
1722 if (!defined $hash) {
1723 $hash = git_read_head($project);
1724 if (defined $file_name) {
1725 my $base = $hash_base || $hash;
1726 $hash = git_get_hash_by_path($base, $file_name, "tree");
1728 if (!defined $hash_base) {
1733 open my $fd, "-|", $GIT, "ls-tree", '-z', $hash
1734 or die_error(undef, "Open git-ls-tree failed.");
1735 my @entries = map { chomp; $_ } <$fd>;
1736 close $fd or die_error(undef, "Reading tree failed.");
1739 my $refs = read_info_ref();
1740 my $ref = git_get_referencing($refs, $hash_base);
1744 if (defined $hash_base && (my %co = git_read_commit($hash_base))) {
1745 $base_key = ";hb=$hash_base";
1746 git_page_nav('tree','', $hash_base);
1747 git_header_div('commit', esc_html($co{'title'}) . $ref, $hash_base);
1749 print "<div class=\"page_nav\">\n";
1750 print "<br/><br/></div>\n";
1751 print "<div class=\"title\">$hash</div>\n";
1753 if (defined $file_name) {
1754 $base = esc_html("$file_name/");
1756 git_print_page_path($file_name);
1757 print "<div class=\"page_body\">\n";
1758 print "<table cellspacing=\"0\">\n";
1760 foreach my $line (@entries) {
1761 #'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'
1762 $line =~ m/^([0-9]+) (.+) ([0-9a-fA-F]{40})\t(.+)$/;
1766 my $t_name = validate_input($4);
1768 print "<tr class=\"dark\">\n";
1770 print "<tr class=\"light\">\n";
1773 print "<td class=\"mode\">" . mode_str($t_mode) . "</td>\n";
1774 if ($t_type eq "blob") {
1775 print "<td class=\"list\">" .
1776 $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=blob;h=$t_hash$base_key;f=$base$t_name"), -class => "list"}, esc_html($t_name)) .
1778 "<td class=\"link\">" .
1779 $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=blob;h=$t_hash$base_key;f=$base$t_name")}, "blob") .
1780 # " | " . $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=blame;h=$t_hash$base_key;f=$base$t_name")}, "blame") .
1781 " | " . $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=history;h=$t_hash;hb=$hash_base;f=$base$t_name")}, "history") .
1782 " | " . $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=blob_plain;h=$t_hash;f=$base$t_name")}, "raw") .
1784 } elsif ($t_type eq "tree") {
1785 print "<td class=\"list\">" .
1786 $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=tree;h=$t_hash$base_key;f=$base$t_name")}, esc_html($t_name)) .
1788 "<td class=\"link\">" .
1789 $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=tree;h=$t_hash$base_key;f=$base$t_name")}, "tree") .
1790 " | " . $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=history;hb=$hash_base;f=$base$t_name")}, "history") .
1795 print "</table>\n" .
1801 # http://www.notestips.com/80256B3A007F2692/1/NAMO5P9UPQ
1802 open my $fd, "-|", $GIT, "rev-list", "--max-count=150", git_read_head($project)
1803 or die_error(undef, "Open git-rev-list failed.");
1804 my @revlist = map { chomp; $_ } <$fd>;
1805 close $fd or die_error(undef, "Reading rev-list failed.");
1806 print $cgi->header(-type => 'text/xml', -charset => 'utf-8');
1807 print "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n".
1808 "<rss version=\"2.0\" xmlns:content=\"http://purl.org/rss/1.0/modules/content/\">\n";
1809 print "<channel>\n";
1810 print "<title>$project</title>\n".
1811 "<link>" . esc_html("$my_url?p=$project;a=summary") . "</link>\n".
1812 "<description>$project log</description>\n".
1813 "<language>en</language>\n";
1815 for (my $i = 0; $i <= $#revlist; $i++) {
1816 my $commit = $revlist[$i];
1817 my %co = git_read_commit($commit);
1818 # we read 150, we always show 30 and the ones more recent than 48 hours
1819 if (($i >= 20) && ((time - $co{'committer_epoch'}) > 48*60*60)) {
1822 my %cd = date_str($co{'committer_epoch'});
1823 open $fd, "-|", $GIT, "diff-tree", '-r', $co{'parent'}, $co{'id'} or next;
1824 my @difftree = map { chomp; $_ } <$fd>;
1828 sprintf("%d %s %02d:%02d", $cd{'mday'}, $cd{'month'}, $cd{'hour'}, $cd{'minute'}) . " - " . esc_html($co{'title'}) .
1830 "<author>" . esc_html($co{'author'}) . "</author>\n" .
1831 "<pubDate>$cd{'rfc2822'}</pubDate>\n" .
1832 "<guid isPermaLink=\"true\">" . esc_html("$my_url?p=$project;a=commit;h=$commit") . "</guid>\n" .
1833 "<link>" . esc_html("$my_url?p=$project;a=commit;h=$commit") . "</link>\n" .
1834 "<description>" . esc_html($co{'title'}) . "</description>\n" .
1835 "<content:encoded>" .
1837 my $comment = $co{'comment'};
1838 foreach my $line (@$comment) {
1839 $line = decode("utf8", $line, Encode::FB_DEFAULT);
1840 print "$line<br/>\n";
1843 foreach my $line (@difftree) {
1844 if (!($line =~ m/^:([0-7]{6}) ([0-7]{6}) ([0-9a-fA-F]{40}) ([0-9a-fA-F]{40}) (.)([0-9]{0,3})\t(.*)$/)) {
1847 my $file = validate_input(unquote($7));
1848 $file = decode("utf8", $file, Encode::FB_DEFAULT);
1849 print "$file<br/>\n";
1852 "</content:encoded>\n" .
1855 print "</channel></rss>";
1859 my @list = git_read_projects();
1861 print $cgi->header(-type => 'text/xml', -charset => 'utf-8');
1862 print "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n".
1863 "<opml version=\"1.0\">\n".
1865 " <title>$site_name Git OPML Export</title>\n".
1868 "<outline text=\"git RSS feeds\">\n";
1870 foreach my $pr (@list) {
1872 my $head = git_read_head($proj{'path'});
1873 if (!defined $head) {
1876 $ENV{'GIT_DIR'} = "$projectroot/$proj{'path'}";
1877 my %co = git_read_commit($head);
1882 my $path = esc_html(chop_str($proj{'path'}, 25, 5));
1883 my $rss = "$my_url?p=$proj{'path'};a=rss";
1884 my $html = "$my_url?p=$proj{'path'};a=summary";
1885 print "<outline type=\"rss\" text=\"$path\" title=\"$path\" xmlUrl=\"$rss\" htmlUrl=\"$html\"/>\n";
1887 print "</outline>\n".
1893 my $head = git_read_head($project);
1894 if (!defined $hash) {
1897 if (!defined $page) {
1900 my $refs = read_info_ref();
1902 my $limit = sprintf("--max-count=%i", (100 * ($page+1)));
1903 open my $fd, "-|", $GIT, "rev-list", $limit, $hash
1904 or die_error(undef, "Open git-rev-list failed.");
1905 my @revlist = map { chomp; $_ } <$fd>;
1908 my $paging_nav = git_get_paging_nav('log', $hash, $head, $page, $#revlist);
1911 git_page_nav('log','', $hash,undef,undef, $paging_nav);
1914 my %co = git_read_commit($hash);
1916 git_header_div('summary', $project);
1917 print "<div class=\"page_body\"> Last change $co{'age_string'}.<br/><br/></div>\n";
1919 for (my $i = ($page * 100); $i <= $#revlist; $i++) {
1920 my $commit = $revlist[$i];
1921 my $ref = git_get_referencing($refs, $commit);
1922 my %co = git_read_commit($commit);
1924 my %ad = date_str($co{'author_epoch'});
1925 git_header_div('commit',
1926 "<span class=\"age\">$co{'age_string'}</span>" .
1927 esc_html($co{'title'}) . $ref,
1929 print "<div class=\"title_text\">\n" .
1930 "<div class=\"log_link\">\n" .
1931 $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=commit;h=$commit")}, "commit") .
1932 " | " . $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=commitdiff;h=$commit")}, "commitdiff") .
1935 "<i>" . esc_html($co{'author_name'}) . " [$ad{'rfc2822'}]</i><br/>\n" .
1937 "<div class=\"log_body\">\n";
1938 my $comment = $co{'comment'};
1940 foreach my $line (@$comment) {
1941 if ($line =~ m/^ *(signed[ \-]off[ \-]by[ :]|acked[ \-]by[ :]|cc[ :])/i) {
1952 print format_log_line_html($line) . "<br/>\n";
1963 my %co = git_read_commit($hash);
1965 die_error(undef, "Unknown commit object.");
1967 my %ad = date_str($co{'author_epoch'}, $co{'author_tz'});
1968 my %cd = date_str($co{'committer_epoch'}, $co{'committer_tz'});
1970 my $parent = $co{'parent'};
1971 if (!defined $parent) {
1974 open my $fd, "-|", $GIT, "diff-tree", '-r', '-M', $parent, $hash
1975 or die_error(undef, "Open git-diff-tree failed.");
1976 my @difftree = map { chomp; $_ } <$fd>;
1977 close $fd or die_error(undef, "Reading git-diff-tree failed.");
1979 # non-textual hash id's can be cached
1981 if ($hash =~ m/^[0-9a-fA-F]{40}$/) {
1984 my $refs = read_info_ref();
1985 my $ref = git_get_referencing($refs, $co{'id'});
1986 my $formats_nav = '';
1987 if (defined $file_name && defined $co{'parent'}) {
1988 my $parent = $co{'parent'};
1989 $formats_nav .= $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=blame;hb=$parent;f=$file_name")}, "blame");
1991 git_header_html(undef, $expires);
1992 git_page_nav('commit', defined $co{'parent'} ? '' : 'commitdiff',
1993 $hash, $co{'tree'}, $hash,
1996 if (defined $co{'parent'}) {
1997 git_header_div('commitdiff', esc_html($co{'title'}) . $ref, $hash);
1999 git_header_div('tree', esc_html($co{'title'}) . $ref, $co{'tree'}, $hash);
2001 print "<div class=\"title_text\">\n" .
2002 "<table cellspacing=\"0\">\n";
2003 print "<tr><td>author</td><td>" . esc_html($co{'author'}) . "</td></tr>\n".
2005 "<td></td><td> $ad{'rfc2822'}";
2006 if ($ad{'hour_local'} < 6) {
2007 printf(" (<span class=\"atnight\">%02d:%02d</span> %s)", $ad{'hour_local'}, $ad{'minute_local'}, $ad{'tz_local'});
2009 printf(" (%02d:%02d %s)", $ad{'hour_local'}, $ad{'minute_local'}, $ad{'tz_local'});
2013 print "<tr><td>committer</td><td>" . esc_html($co{'committer'}) . "</td></tr>\n";
2014 print "<tr><td></td><td> $cd{'rfc2822'}" . sprintf(" (%02d:%02d %s)", $cd{'hour_local'}, $cd{'minute_local'}, $cd{'tz_local'}) . "</td></tr>\n";
2015 print "<tr><td>commit</td><td class=\"sha1\">$co{'id'}</td></tr>\n";
2018 "<td class=\"sha1\">" .
2019 $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=tree;h=$co{'tree'};hb=$hash"), class => "list"}, $co{'tree'}) .
2021 "<td class=\"link\">" . $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=tree;h=$co{'tree'};hb=$hash")}, "tree") .
2024 my $parents = $co{'parents'};
2025 foreach my $par (@$parents) {
2028 "<td class=\"sha1\">" . $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=commit;h=$par"), class => "list"}, $par) . "</td>" .
2029 "<td class=\"link\">" .
2030 $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=commit;h=$par")}, "commit") .
2031 " | " . $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=commitdiff;h=$hash;hp=$par")}, "commitdiff") .
2037 print "<div class=\"page_body\">\n";
2038 my $comment = $co{'comment'};
2041 foreach my $line (@$comment) {
2042 # print only one empty line
2044 if ($empty || $signed) {
2051 if ($line =~ m/^ *(signed[ \-]off[ \-]by[ :]|acked[ \-]by[ :]|cc[ :])/i) {
2053 print "<span class=\"signoff\">" . esc_html($line) . "</span><br/>\n";
2056 print format_log_line_html($line) . "<br/>\n";
2060 print "<div class=\"list_head\">\n";
2061 if ($#difftree > 10) {
2062 print(($#difftree + 1) . " files changed:\n");
2065 print "<table class=\"diff_tree\">\n";
2067 foreach my $line (@difftree) {
2068 # ':100644 100644 03b218260e99b78c6df0ed378e59ed9205ccc96d 3b93d5e7cc7f7dd4ebed13a5cc1a4ad976fc94d8 M ls-files.c'
2069 # ':100644 100644 7f9281985086971d3877aca27704f2aaf9c448ce bc190ebc71bbd923f2b728e505408f5e54bd073a M rev-tree.c'
2070 if (!($line =~ m/^:([0-7]{6}) ([0-7]{6}) ([0-9a-fA-F]{40}) ([0-9a-fA-F]{40}) (.)([0-9]{0,3})\t(.*)$/)) {
2078 my $similarity = $6;
2079 my $file = validate_input(unquote($7));
2081 print "<tr class=\"dark\">\n";
2083 print "<tr class=\"light\">\n";
2086 if ($status eq "A") {
2088 if (S_ISREG(oct $to_mode)) {
2089 $mode_chng = sprintf(" with mode: %04o", (oct $to_mode) & 0777);
2092 $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=blob;h=$to_id;hb=$hash;f=$file"), -class => "list"}, esc_html($file)) . "</td>\n" .
2093 "<td><span class=\"file_status new\">[new " . file_type($to_mode) . "$mode_chng]</span></td>\n" .
2094 "<td class=\"link\">" . $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=blob;h=$to_id;hb=$hash;f=$file")}, "blob") . "</td>\n";
2095 } elsif ($status eq "D") {
2097 $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=blob;h=$from_id;hb=$hash;f=$file"), -class => "list"}, esc_html($file)) . "</td>\n" .
2098 "<td><span class=\"file_status deleted\">[deleted " . file_type($from_mode). "]</span></td>\n" .
2099 "<td class=\"link\">" .
2100 $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=blob;h=$from_id;hb=$hash;f=$file")}, "blob") .
2101 " | " . $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=history;hb=$hash;f=$file")}, "history") .
2103 } elsif ($status eq "M" || $status eq "T") {
2104 my $mode_chnge = "";
2105 if ($from_mode != $to_mode) {
2106 $mode_chnge = " <span class=\"file_status mode_chnge\">[changed";
2107 if (((oct $from_mode) & S_IFMT) != ((oct $to_mode) & S_IFMT)) {
2108 $mode_chnge .= " from " . file_type($from_mode) . " to " . file_type($to_mode);
2110 if (((oct $from_mode) & 0777) != ((oct $to_mode) & 0777)) {
2111 if (S_ISREG($from_mode) && S_ISREG($to_mode)) {
2112 $mode_chnge .= sprintf(" mode: %04o->%04o", (oct $from_mode) & 0777, (oct $to_mode) & 0777);
2113 } elsif (S_ISREG($to_mode)) {
2114 $mode_chnge .= sprintf(" mode: %04o", (oct $to_mode) & 0777);
2117 $mode_chnge .= "]</span>\n";
2120 if ($to_id ne $from_id) {
2121 print $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=blobdiff;h=$to_id;hp=$from_id;hb=$hash;f=$file"), -class => "list"}, esc_html($file));
2123 print $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=blob;h=$to_id;hb=$hash;f=$file"), -class => "list"}, esc_html($file));
2126 "<td>$mode_chnge</td>\n" .
2127 "<td class=\"link\">";
2128 print $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=blob;h=$to_id;hb=$hash;f=$file")}, "blob");
2129 if ($to_id ne $from_id) {
2130 print " | " . $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=blobdiff;h=$to_id;hp=$from_id;hb=$hash;f=$file")}, "diff");
2132 print " | " . $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=history;hb=$hash;f=$file")}, "history") . "\n";
2134 } elsif ($status eq "R") {
2135 my ($from_file, $to_file) = split "\t", $file;
2137 if ($from_mode != $to_mode) {
2138 $mode_chng = sprintf(", mode: %04o", (oct $to_mode) & 0777);
2141 $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=blob;h=$to_id;hb=$hash;f=$to_file"), -class => "list"}, esc_html($to_file)) . "</td>\n" .
2142 "<td><span class=\"file_status moved\">[moved from " .
2143 $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=blob;h=$from_id;hb=$hash;f=$from_file"), -class => "list"}, esc_html($from_file)) .
2144 " with " . (int $similarity) . "% similarity$mode_chng]</span></td>\n" .
2145 "<td class=\"link\">" .
2146 $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=blob;h=$to_id;hb=$hash;f=$to_file")}, "blob");
2147 if ($to_id ne $from_id) {
2148 print " | " . $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=blobdiff;h=$to_id;hp=$from_id;hb=$hash;f=$to_file")}, "diff");
2159 mkdir($git_temp, 0700);
2161 if (defined $hash_base && (my %co = git_read_commit($hash_base))) {
2163 $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=blobdiff_plain;h=$hash;hp=$hash_parent")}, "plain");
2164 git_page_nav('','', $hash_base,$co{'tree'},$hash_base, $formats_nav);
2165 git_header_div('commit', esc_html($co{'title'}), $hash_base);
2167 print "<div class=\"page_nav\">\n" .
2168 "<br/><br/></div>\n" .
2169 "<div class=\"title\">$hash vs $hash_parent</div>\n";
2171 git_print_page_path($file_name, "blob");
2172 print "<div class=\"page_body\">\n" .
2173 "<div class=\"diff_info\">blob:" .
2174 $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=blob;h=$hash_parent;hb=$hash_base;f=$file_name")}, $hash_parent) .
2176 $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=blob;h=$hash;hb=$hash_base;f=$file_name")}, $hash) .
2178 git_diff_print($hash_parent, $file_name || $hash_parent, $hash, $file_name || $hash);
2183 sub git_blobdiff_plain {
2184 mkdir($git_temp, 0700);
2185 print $cgi->header(-type => "text/plain", -charset => 'utf-8');
2186 git_diff_print($hash_parent, $file_name || $hash_parent, $hash, $file_name || $hash, "plain");
2189 sub git_commitdiff {
2190 mkdir($git_temp, 0700);
2191 my %co = git_read_commit($hash);
2193 die_error(undef, "Unknown commit object.");
2195 if (!defined $hash_parent) {
2196 $hash_parent = $co{'parent'};
2198 open my $fd, "-|", $GIT, "diff-tree", '-r', $hash_parent, $hash
2199 or die_error(undef, "Open git-diff-tree failed.");
2200 my @difftree = map { chomp; $_ } <$fd>;
2201 close $fd or die_error(undef, "Reading diff-tree failed.");
2203 # non-textual hash id's can be cached
2205 if ($hash =~ m/^[0-9a-fA-F]{40}$/) {
2208 my $refs = read_info_ref();
2209 my $ref = git_get_referencing($refs, $co{'id'});
2211 $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=commitdiff_plain;h=$hash;hp=$hash_parent")}, "plain");
2212 git_header_html(undef, $expires);
2213 git_page_nav('commitdiff','', $hash,$co{'tree'},$hash, $formats_nav);
2214 git_header_div('commit', esc_html($co{'title'}) . $ref, $hash);
2215 print "<div class=\"page_body\">\n";
2216 my $comment = $co{'comment'};
2219 my @log = @$comment;
2220 # remove first and empty lines after that
2222 while (defined $log[0] && $log[0] eq "") {
2225 foreach my $line (@log) {
2226 if ($line =~ m/^ *(signed[ \-]off[ \-]by[ :]|acked[ \-]by[ :]|cc[ :])/i) {
2237 print format_log_line_html($line) . "<br/>\n";
2240 foreach my $line (@difftree) {
2241 # ':100644 100644 03b218260e99b78c6df0ed378e59ed9205ccc96d 3b93d5e7cc7f7dd4ebed13a5cc1a4ad976fc94d8 M ls-files.c'
2242 # ':100644 100644 7f9281985086971d3877aca27704f2aaf9c448ce bc190ebc71bbd923f2b728e505408f5e54bd073a M rev-tree.c'
2243 $line =~ m/^:([0-7]{6}) ([0-7]{6}) ([0-9a-fA-F]{40}) ([0-9a-fA-F]{40}) (.)\t(.*)$/;
2249 my $file = validate_input(unquote($6));
2250 if ($status eq "A") {
2251 print "<div class=\"diff_info\">" . file_type($to_mode) . ":" .
2252 $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=blob;h=$to_id;hb=$hash;f=$file")}, $to_id) . "(new)" .
2254 git_diff_print(undef, "/dev/null", $to_id, "b/$file");
2255 } elsif ($status eq "D") {
2256 print "<div class=\"diff_info\">" . file_type($from_mode) . ":" .
2257 $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=blob;h=$from_id;hb=$hash;f=$file")}, $from_id) . "(deleted)" .
2259 git_diff_print($from_id, "a/$file", undef, "/dev/null");
2260 } elsif ($status eq "M") {
2261 if ($from_id ne $to_id) {
2262 print "<div class=\"diff_info\">" .
2263 file_type($from_mode) . ":" . $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=blob;h=$from_id;hb=$hash;f=$file")}, $from_id) .
2265 file_type($to_mode) . ":" . $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=blob;h=$to_id;hb=$hash;f=$file")}, $to_id);
2267 git_diff_print($from_id, "a/$file", $to_id, "b/$file");
2276 sub git_commitdiff_plain {
2277 mkdir($git_temp, 0700);
2278 open my $fd, "-|", $GIT, "diff-tree", '-r', $hash_parent, $hash
2279 or die_error(undef, "Open git-diff-tree failed.");
2280 my @difftree = map { chomp; $_ } <$fd>;
2281 close $fd or die_error(undef, "Reading diff-tree failed.");
2283 # try to figure out the next tag after this commit
2285 my $refs = read_info_ref("tags");
2286 open $fd, "-|", $GIT, "rev-list", "HEAD";
2287 my @commits = map { chomp; $_ } <$fd>;
2289 foreach my $commit (@commits) {
2290 if (defined $refs->{$commit}) {
2291 $tagname = $refs->{$commit}
2293 if ($commit eq $hash) {
2298 print $cgi->header(-type => "text/plain", -charset => 'utf-8', '-content-disposition' => "inline; filename=\"git-$hash.patch\"");
2299 my %co = git_read_commit($hash);
2300 my %ad = date_str($co{'author_epoch'}, $co{'author_tz'});
2301 my $comment = $co{'comment'};
2302 print "From: $co{'author'}\n" .
2303 "Date: $ad{'rfc2822'} ($ad{'tz_local'})\n".
2304 "Subject: $co{'title'}\n";
2305 if (defined $tagname) {
2306 print "X-Git-Tag: $tagname\n";
2308 print "X-Git-Url: $my_url?p=$project;a=commitdiff;h=$hash\n" .
2311 foreach my $line (@$comment) {;
2316 foreach my $line (@difftree) {
2317 $line =~ m/^:([0-7]{6}) ([0-7]{6}) ([0-9a-fA-F]{40}) ([0-9a-fA-F]{40}) (.)\t(.*)$/;
2322 if ($status eq "A") {
2323 git_diff_print(undef, "/dev/null", $to_id, "b/$file", "plain");
2324 } elsif ($status eq "D") {
2325 git_diff_print($from_id, "a/$file", undef, "/dev/null", "plain");
2326 } elsif ($status eq "M") {
2327 git_diff_print($from_id, "a/$file", $to_id, "b/$file", "plain");
2333 if (!defined $hash_base) {
2334 $hash_base = git_read_head($project);
2337 my %co = git_read_commit($hash_base);
2339 die_error(undef, "Unknown commit object.");
2341 my $refs = read_info_ref();
2343 git_page_nav('','', $hash_base,$co{'tree'},$hash_base);
2344 git_header_div('commit', esc_html($co{'title'}), $hash_base);
2345 if (!defined $hash && defined $file_name) {
2346 $hash = git_get_hash_by_path($hash_base, $file_name);
2348 if (defined $hash) {
2349 $ftype = git_get_type($hash);
2351 git_print_page_path($file_name, $ftype);
2354 $GIT, "rev-list", "--full-history", $hash_base, "--", "\'$file_name\'";
2355 print "<table cellspacing=\"0\">\n";
2357 while (my $line = <$fd>) {
2358 if ($line =~ m/^([0-9a-fA-F]{40})/){
2360 my %co = git_read_commit($commit);
2364 my $ref = git_get_referencing($refs, $commit);
2366 print "<tr class=\"dark\">\n";
2368 print "<tr class=\"light\">\n";
2371 print "<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n" .
2372 "<td><i>" . esc_html(chop_str($co{'author_name'}, 15, 3)) . "</i></td>\n" .
2373 "<td>" . $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=commit;h=$commit"), -class => "list"}, "<b>" .
2374 esc_html(chop_str($co{'title'}, 50)) . "$ref</b>") . "</td>\n" .
2375 "<td class=\"link\">" .
2376 $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=commit;h=$commit")}, "commit") .
2377 " | " . $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=commitdiff;h=$commit")}, "commitdiff") .
2378 " | " . $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=blob;hb=$commit;f=$file_name")}, "blob");
2379 my $blob = git_get_hash_by_path($hash_base, $file_name);
2380 my $blob_parent = git_get_hash_by_path($commit, $file_name);
2381 if (defined $blob && defined $blob_parent && $blob ne $blob_parent) {
2383 $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=blobdiff;h=$blob;hp=$blob_parent;hb=$commit;f=$file_name")},
2396 if (!defined $searchtext) {
2397 die_error("", "Text field empty.");
2399 if (!defined $hash) {
2400 $hash = git_read_head($project);
2402 my %co = git_read_commit($hash);
2404 die_error(undef, "Unknown commit object.");
2406 # pickaxe may take all resources of your box and run for several minutes
2407 # with every query - so decide by yourself how public you make this feature :)
2408 my $commit_search = 1;
2409 my $author_search = 0;
2410 my $committer_search = 0;
2411 my $pickaxe_search = 0;
2412 if ($searchtext =~ s/^author\\://i) {
2414 } elsif ($searchtext =~ s/^committer\\://i) {
2415 $committer_search = 1;
2416 } elsif ($searchtext =~ s/^pickaxe\\://i) {
2418 $pickaxe_search = 1;
2421 git_page_nav('','', $hash,$co{'tree'},$hash);
2422 git_header_div('commit', esc_html($co{'title'}), $hash);
2424 print "<table cellspacing=\"0\">\n";
2426 if ($commit_search) {
2428 open my $fd, "-|", $GIT, "rev-list", "--header", "--parents", $hash or next;
2429 while (my $commit_text = <$fd>) {
2430 if (!grep m/$searchtext/i, $commit_text) {
2433 if ($author_search && !grep m/\nauthor .*$searchtext/i, $commit_text) {
2436 if ($committer_search && !grep m/\ncommitter .*$searchtext/i, $commit_text) {
2439 my @commit_lines = split "\n", $commit_text;
2440 my %co = git_read_commit(undef, \@commit_lines);
2445 print "<tr class=\"dark\">\n";
2447 print "<tr class=\"light\">\n";
2450 print "<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n" .
2451 "<td><i>" . esc_html(chop_str($co{'author_name'}, 15, 5)) . "</i></td>\n" .
2453 $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=commit;h=$co{'id'}"), -class => "list"}, "<b>" . esc_html(chop_str($co{'title'}, 50)) . "</b><br/>");
2454 my $comment = $co{'comment'};
2455 foreach my $line (@$comment) {
2456 if ($line =~ m/^(.*)($searchtext)(.*)$/i) {
2457 my $lead = esc_html($1) || "";
2458 $lead = chop_str($lead, 30, 10);
2459 my $match = esc_html($2) || "";
2460 my $trail = esc_html($3) || "";
2461 $trail = chop_str($trail, 30, 10);
2462 my $text = "$lead<span class=\"match\">$match</span>$trail";
2463 print chop_str($text, 80, 5) . "<br/>\n";
2467 "<td class=\"link\">" .
2468 $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=commit;h=$co{'id'}")}, "commit") .
2469 " | " . $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=tree;h=$co{'tree'};hb=$co{'id'}")}, "tree");
2476 if ($pickaxe_search) {
2478 open my $fd, "-|", "$GIT rev-list $hash | $GIT diff-tree -r --stdin -S\'$searchtext\'";
2481 while (my $line = <$fd>) {
2482 if (%co && $line =~ m/^:([0-7]{6}) ([0-7]{6}) ([0-9a-fA-F]{40}) ([0-9a-fA-F]{40}) (.)\t(.*)$/) {
2485 $set{'from_id'} = $3;
2487 $set{'id'} = $set{'to_id'};
2488 if ($set{'id'} =~ m/0{40}/) {
2489 $set{'id'} = $set{'from_id'};
2491 if ($set{'id'} =~ m/0{40}/) {
2495 } elsif ($line =~ m/^([0-9a-fA-F]{40})$/){
2498 print "<tr class=\"dark\">\n";
2500 print "<tr class=\"light\">\n";
2503 print "<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n" .
2504 "<td><i>" . esc_html(chop_str($co{'author_name'}, 15, 5)) . "</i></td>\n" .
2506 $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=commit;h=$co{'id'}"), -class => "list"}, "<b>" .
2507 esc_html(chop_str($co{'title'}, 50)) . "</b><br/>");
2508 while (my $setref = shift @files) {
2510 print $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=blob;h=$set{'id'};hb=$co{'id'};f=$set{'file'}"), class => "list"},
2511 "<span class=\"match\">" . esc_html($set{'file'}) . "</span>") .
2515 "<td class=\"link\">" .
2516 $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=commit;h=$co{'id'}")}, "commit") .
2517 " | " . $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=tree;h=$co{'tree'};hb=$co{'id'}")}, "tree");
2521 %co = git_read_commit($1);
2531 my $head = git_read_head($project);
2532 if (!defined $hash) {
2535 if (!defined $page) {
2538 my $refs = read_info_ref();
2540 my $limit = sprintf("--max-count=%i", (100 * ($page+1)));
2541 open my $fd, "-|", $GIT, "rev-list", $limit, $hash
2542 or die_error(undef, "Open git-rev-list failed.");
2543 my @revlist = map { chomp; $_ } <$fd>;
2546 my $paging_nav = git_get_paging_nav('shortlog', $hash, $head, $page, $#revlist);
2549 git_page_nav('shortlog','', $hash,$hash,$hash, $paging_nav);
2550 git_header_div('summary', $project);
2552 print "<table cellspacing=\"0\">\n";
2554 for (my $i = ($page * 100); $i <= $#revlist; $i++) {
2555 my $commit = $revlist[$i];
2556 my $ref = git_get_referencing($refs, $commit);
2557 my %co = git_read_commit($commit);
2558 my %ad = date_str($co{'author_epoch'});
2560 print "<tr class=\"dark\">\n";
2562 print "<tr class=\"light\">\n";
2565 print "<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n" .
2566 "<td><i>" . esc_html(chop_str($co{'author_name'}, 10)) . "</i></td>\n" .
2568 if (length($co{'title_short'}) < length($co{'title'})) {
2569 print $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=commit;h=$commit"), -class => "list", -title => "$co{'title'}"},
2570 "<b>" . esc_html($co{'title_short'}) . "$ref</b>");
2572 print $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=commit;h=$commit"), -class => "list"},
2573 "<b>" . esc_html($co{'title_short'}) . "$ref</b>");
2576 "<td class=\"link\">" .
2577 $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=commit;h=$commit")}, "commit") .
2578 " | " . $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=commitdiff;h=$commit")}, "commitdiff") .
2582 if ($#revlist >= (100 * ($page+1)-1)) {
2585 $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=shortlog;h=$hash;pg=" . ($page+1)), -title => "Alt-n"}, "next") .