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);
18 binmode STDOUT
, ':utf8';
21 our $version = "++GIT_VERSION++";
22 our $my_url = $cgi->url();
23 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 = "++GIT_BINDIR++/git";
29 # absolute fs-path which will be prepended to the project path
30 #our $projectroot = "/pub/scm";
31 our $projectroot = "++GITWEB_PROJECTROOT++";
33 # location for temporary files needed for diffs
34 our $git_temp = "/tmp/gitweb";
36 # target of the home link on top of all pages
37 our $home_link = $my_uri;
39 # name of your site or organization to appear in page titles
40 # replace this with something more descriptive for clearer bookmarks
41 our $site_name = "++GITWEB_SITENAME++" || $ENV{'SERVER_NAME'} || "Untitled";
43 # html text to include at home page
44 our $home_text = "++GITWEB_HOMETEXT++";
46 # URI of default stylesheet
47 our $stylesheet = "++GITWEB_CSS++";
49 our $logo = "++GITWEB_LOGO++";
51 # source of projects list
52 our $projects_list = "++GITWEB_LIST++";
54 # default blob_plain mimetype and default charset for text/plain blob
55 our $default_blob_plain_mimetype = 'text/plain';
56 our $default_text_plain_charset = undef;
58 # file to use for guessing MIME types before trying /etc/mime.types
59 # (relative to the current git repository)
60 our $mimetypes_file = undef;
62 our $GITWEB_CONFIG = $ENV{'GITWEB_CONFIG'} || "++GITWEB_CONFIG++";
63 require $GITWEB_CONFIG if -e
$GITWEB_CONFIG;
65 # version of the core git binary
66 our $git_version = qx($GIT --version
) =~ m/git version (.*)$/ ?
$1 : "unknown";
68 $projects_list ||= $projectroot;
70 mkdir($git_temp, 0700) || die_error
(undef, "Couldn't mkdir $git_temp");
73 # ======================================================================
74 # input validation and dispatch
75 our $action = $cgi->param('a');
76 if (defined $action) {
77 if ($action =~ m/[^0-9a-zA-Z\.\-_]/) {
78 die_error
(undef, "Invalid action parameter");
80 # action which does not check rest of parameters
81 if ($action eq "opml") {
87 our $project = ($cgi->param('p') || $ENV{'PATH_INFO'});
88 if (defined $project) {
92 if (defined $project && $project) {
93 if (!validate_input
($project)) {
94 die_error
(undef, "Invalid project parameter");
96 if (!(-d
"$projectroot/$project")) {
97 die_error
(undef, "No such directory");
99 if (!(-e
"$projectroot/$project/HEAD")) {
100 die_error
(undef, "No such project");
102 $ENV{'GIT_DIR'} = "$projectroot/$project";
108 our $file_name = $cgi->param('f');
109 if (defined $file_name) {
110 if (!validate_input
($file_name)) {
111 die_error
(undef, "Invalid file parameter");
115 our $hash = $cgi->param('h');
117 if (!validate_input
($hash)) {
118 die_error
(undef, "Invalid hash parameter");
122 our $hash_parent = $cgi->param('hp');
123 if (defined $hash_parent) {
124 if (!validate_input
($hash_parent)) {
125 die_error
(undef, "Invalid hash parent parameter");
129 our $hash_base = $cgi->param('hb');
130 if (defined $hash_base) {
131 if (!validate_input
($hash_base)) {
132 die_error
(undef, "Invalid hash base parameter");
136 our $page = $cgi->param('pg');
138 if ($page =~ m/[^0-9]$/) {
139 die_error
(undef, "Invalid page parameter");
143 our $searchtext = $cgi->param('s');
144 if (defined $searchtext) {
145 if ($searchtext =~ m/[^a-zA-Z0-9_\.\/\
-\
+\
:\@
]/) {
146 die_error
(undef, "Invalid search parameter");
148 $searchtext = quotemeta $searchtext;
153 "blame" => \
&git_blame2
,
154 "blobdiff" => \
&git_blobdiff
,
155 "blobdiff_plain" => \
&git_blobdiff_plain
,
156 "blob" => \
&git_blob
,
157 "blob_plain" => \
&git_blob_plain
,
158 "commitdiff" => \
&git_commitdiff
,
159 "commitdiff_plain" => \
&git_commitdiff_plain
,
160 "commit" => \
&git_commit
,
161 "heads" => \
&git_heads
,
162 "history" => \
&git_history
,
165 "search" => \
&git_search
,
166 "shortlog" => \
&git_shortlog
,
167 "summary" => \
&git_summary
,
169 "tags" => \
&git_tags
,
170 "tree" => \
&git_tree
,
173 $action = 'summary' if (!defined($action));
174 if (!defined($actions{$action})) {
175 die_error
(undef, "Unknown action");
177 $actions{$action}->();
180 ## ======================================================================
181 ## validation, quoting/unquoting and escaping
186 if ($input =~ m/^[0-9a-fA-F]{40}$/) {
189 if ($input =~ m/(^|\/)(|\
.|\
.\
.)($|\
/)/) {
192 if ($input =~ m/[^a-zA-Z0-9_\x80-\xff\ \t\.\/\
-\
+\#\
~\
%]/) {
198 # quote unsafe chars, but keep the slash, even when it's not
199 # correct, but quoted slashes look too horrible in bookmarks
202 $str =~ s/([^A-Za-z0-9\-_.~();\/;?:@&=])/sprintf
("%%%02X", ord($1))/eg
;
208 # replace invalid utf8 character with SUBSTITUTION sequence
211 $str = decode
("utf8", $str, Encode
::FB_DEFAULT
);
212 $str = escapeHTML
($str);
213 $str =~ s/\014/^L/g; # escape FORM FEED (FF) character (e.g. in COPYING file)
217 # git may return quoted and escaped filenames
220 if ($str =~ m/^"(.*)"$/) {
222 $str =~ s/\\([0-7]{1,3})/chr(oct($1))/eg;
227 # escape tabs (convert tabs to spaces)
231 while ((my $pos = index($line, "\t")) != -1) {
232 if (my $count = (8 - ($pos % 8))) {
233 my $spaces = ' ' x
$count;
234 $line =~ s/\t/$spaces/;
241 ## ----------------------------------------------------------------------
242 ## HTML aware string manipulation
247 my $add_len = shift || 10;
249 # allow only $len chars, but don't cut a word if it would fit in $add_len
250 # if it doesn't fit, cut it if it's still longer than the dots we would add
251 $str =~ m/^(.{0,$len}[^ \/\
-_
:\
.@
]{0,$add_len})(.*)/;
254 if (length($tail) > 4) {
256 $body =~ s/&[^;]*$//; # remove chopped character entities
261 ## ----------------------------------------------------------------------
262 ## functions returning short strings
264 # CSS class for given age value (in seconds)
268 if ($age < 60*60*2) {
270 } elsif ($age < 60*60*24*2) {
277 # convert age in seconds to "nn units ago" string
282 if ($age > 60*60*24*365*2) {
283 $age_str = (int $age/60/60/24/365);
284 $age_str .= " years ago";
285 } elsif ($age > 60*60*24*(365/12)*2) {
286 $age_str = int $age/60/60/24/(365/12);
287 $age_str .= " months ago";
288 } elsif ($age > 60*60*24*7*2) {
289 $age_str = int $age/60/60/24/7;
290 $age_str .= " weeks ago";
291 } elsif ($age > 60*60*24*2) {
292 $age_str = int $age/60/60/24;
293 $age_str .= " days ago";
294 } elsif ($age > 60*60*2) {
295 $age_str = int $age/60/60;
296 $age_str .= " hours ago";
297 } elsif ($age > 60*2) {
298 $age_str = int $age/60;
299 $age_str .= " min ago";
302 $age_str .= " sec ago";
304 $age_str .= " right now";
309 # convert file mode in octal to symbolic file mode string
311 my $mode = oct shift;
313 if (S_ISDIR
($mode & S_IFMT
)) {
315 } elsif (S_ISLNK
($mode)) {
317 } elsif (S_ISREG
($mode)) {
318 # git cares only about the executable bit
319 if ($mode & S_IXUSR
) {
329 # convert file mode in octal to file type string
331 my $mode = oct shift;
333 if (S_ISDIR
($mode & S_IFMT
)) {
335 } elsif (S_ISLNK
($mode)) {
337 } elsif (S_ISREG
($mode)) {
344 ## ----------------------------------------------------------------------
345 ## functions returning short HTML fragments, or transforming HTML fragments
346 ## which don't beling to other sections
348 # format line of commit message or tag comment
349 sub format_log_line_html
{
352 $line = esc_html
($line);
353 $line =~ s/ / /g;
354 if ($line =~ m/([0-9a-fA-F]{40})/) {
356 if (git_get_type
($hash_text) eq "commit") {
357 my $link = $cgi->a({-class => "text", -href
=> "$my_uri?" . esc_param
("p=$project;a=commit;h=$hash_text")}, $hash_text);
358 $line =~ s/$hash_text/$link/;
364 # format marker of refs pointing to given object
365 sub format_ref_marker
{
366 my ($refs, $id) = @_;
369 if (defined $refs->{$id}) {
370 foreach my $ref (@
{$refs->{$id}}) {
371 my ($type, $name) = qw();
372 # e.g. tags/v2.6.11 or heads/next
373 if ($ref =~ m!^(.*?)s?/(.*)$!) {
381 $markers .= " <span class=\"$type\">" . esc_html
($name) . "</span>";
386 return ' <span class="refs">'. $markers . '</span>';
392 # format, perhaps shortened and with markers, title line
393 sub format_subject_html
{
394 my ($long, $short, $query, $extra) = @_;
395 $extra = '' unless defined($extra);
397 if (length($short) < length($long)) {
398 return $cgi->a({-href
=> "$my_uri?" . esc_param
($query),
399 -class => "list", -title
=> $long},
400 esc_html
($short) . $extra);
402 return $cgi->a({-href
=> "$my_uri?" . esc_param
($query),
404 esc_html
($long) . $extra);
408 ## ----------------------------------------------------------------------
409 ## git utility subroutines, invoking git commands
411 # get HEAD ref of given project as hash
412 sub git_get_head_hash
{
414 my $oENV = $ENV{'GIT_DIR'};
416 $ENV{'GIT_DIR'} = "$projectroot/$project";
417 if (open my $fd, "-|", $GIT, "rev-parse", "--verify", "HEAD") {
420 if (defined $head && $head =~ /^([0-9a-fA-F]{40})$/) {
425 $ENV{'GIT_DIR'} = $oENV;
430 # get type of given object
434 open my $fd, "-|", $GIT, "cat-file", '-t', $hash or return;
441 sub git_get_project_config
{
444 return unless ($key);
445 $key =~ s/^gitweb\.//;
446 return if ($key =~ m/\W/);
448 my $val = qx($GIT repo
-config
--get gitweb
.$key);
452 sub git_get_project_config_bool
{
453 my $val = git_get_project_config
(@_);
454 if ($val and $val =~ m/true|yes|on/) {
457 return; # implicit false
460 # get hash of given path at given ref
461 sub git_get_hash_by_path
{
463 my $path = shift || return undef;
467 open my $fd, "-|", $GIT, "ls-tree", $base, "--", $path
468 or die_error
(undef, "Open git-ls-tree failed");
470 close $fd or return undef;
472 #'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'
473 $line =~ m/^([0-9]+) (.+) ([0-9a-fA-F]{40})\t(.+)$/;
477 ## ......................................................................
478 ## git utility functions, directly accessing git repository
480 # assumes that PATH is not symref
481 sub git_get_hash_by_ref
{
484 open my $fd, "$projectroot/$path" or return undef;
488 if ($head =~ m/^[0-9a-fA-F]{40}$/) {
493 sub git_get_project_description
{
496 open my $fd, "$projectroot/$path/description" or return undef;
503 sub git_get_projects_list
{
506 if (-d
$projects_list) {
507 # search in directory
508 my $dir = $projects_list;
509 opendir my ($dh), $dir or return undef;
510 while (my $dir = readdir($dh)) {
511 if (-e
"$projectroot/$dir/HEAD") {
519 } elsif (-f
$projects_list) {
520 # read from file(url-encoded):
521 # 'git%2Fgit.git Linus+Torvalds'
522 # 'libs%2Fklibc%2Fklibc.git H.+Peter+Anvin'
523 # 'linux%2Fhotplug%2Fudev.git Greg+Kroah-Hartman'
524 open my ($fd), $projects_list or return undef;
525 while (my $line = <$fd>) {
527 my ($path, $owner) = split ' ', $line;
528 $path = unescape
($path);
529 $owner = unescape
($owner);
530 if (!defined $path) {
533 if (-e
"$projectroot/$path/HEAD") {
536 owner
=> decode
("utf8", $owner, Encode
::FB_DEFAULT
),
543 @list = sort {$a->{'path'} cmp $b->{'path'}} @list;
547 sub git_get_project_owner
{
551 return undef unless $project;
553 # read from file (url-encoded):
554 # 'git%2Fgit.git Linus+Torvalds'
555 # 'libs%2Fklibc%2Fklibc.git H.+Peter+Anvin'
556 # 'linux%2Fhotplug%2Fudev.git Greg+Kroah-Hartman'
557 if (-f
$projects_list) {
558 open (my $fd , $projects_list);
559 while (my $line = <$fd>) {
561 my ($pr, $ow) = split ' ', $line;
564 if ($pr eq $project) {
565 $owner = decode
("utf8", $ow, Encode
::FB_DEFAULT
);
571 if (!defined $owner) {
572 $owner = get_file_owner
("$projectroot/$project");
578 sub git_get_references
{
579 my $type = shift || "";
582 # 5dc01c595e6c6ec9ccda4f6f69c131c0dd945f8c refs/tags/v2.6.11
583 # c39ae07f393806ccf406ef966e9a15afc43cc36a refs/tags/v2.6.11^{}
584 if (-f
"$projectroot/$project/info/refs") {
585 open $fd, "$projectroot/$project/info/refs"
588 open $fd, "-|", $GIT, "ls-remote", "."
592 while (my $line = <$fd>) {
594 if ($line =~ m/^([0-9a-fA-F]{40})\trefs\/($type\
/?[^\^]+)/) {
595 if (defined $refs{$1}) {
596 push @
{$refs{$1}}, $2;
606 ## ----------------------------------------------------------------------
607 ## parse to hash functions
611 my $tz = shift || "-0000";
614 my @months = ("Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec");
615 my @days = ("Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat");
616 my ($sec, $min, $hour, $mday, $mon, $year, $wday, $yday) = gmtime($epoch);
617 $date{'hour'} = $hour;
618 $date{'minute'} = $min;
619 $date{'mday'} = $mday;
620 $date{'day'} = $days[$wday];
621 $date{'month'} = $months[$mon];
622 $date{'rfc2822'} = sprintf "%s, %d %s %4d %02d:%02d:%02d +0000", $days[$wday], $mday, $months[$mon], 1900+$year, $hour ,$min, $sec;
623 $date{'mday-time'} = sprintf "%d %s %02d:%02d", $mday, $months[$mon], $hour ,$min;
625 $tz =~ m/^([+\-][0-9][0-9])([0-9][0-9])$/;
626 my $local = $epoch + ((int $1 + ($2/60)) * 3600);
627 ($sec, $min, $hour, $mday, $mon, $year, $wday, $yday) = gmtime($local);
628 $date{'hour_local'} = $hour;
629 $date{'minute_local'} = $min;
630 $date{'tz_local'} = $tz;
639 open my $fd, "-|", $GIT, "cat-file", "tag", $tag_id or return;
640 $tag{'id'} = $tag_id;
641 while (my $line = <$fd>) {
643 if ($line =~ m/^object ([0-9a-fA-F]{40})$/) {
645 } elsif ($line =~ m/^type (.+)$/) {
647 } elsif ($line =~ m/^tag (.+)$/) {
649 } elsif ($line =~ m/^tagger (.*) ([0-9]+) (.*)$/) {
653 } elsif ($line =~ m/--BEGIN/) {
654 push @comment, $line;
656 } elsif ($line eq "") {
660 push @comment, <$fd>;
661 $tag{'comment'} = \
@comment;
663 if (!defined $tag{'name'}) {
670 my $commit_id = shift;
671 my $commit_text = shift;
676 if (defined $commit_text) {
677 @commit_lines = @
$commit_text;
680 open my $fd, "-|", $GIT, "rev-list", "--header", "--parents", "--max-count=1", $commit_id or return;
681 @commit_lines = split '\n', <$fd>;
686 my $header = shift @commit_lines;
687 if (!($header =~ m/^[0-9a-fA-F]{40}/)) {
690 ($co{'id'}, my @parents) = split ' ', $header;
691 $co{'parents'} = \
@parents;
692 $co{'parent'} = $parents[0];
693 while (my $line = shift @commit_lines) {
694 last if $line eq "\n";
695 if ($line =~ m/^tree ([0-9a-fA-F]{40})$/) {
697 } elsif ($line =~ m/^author (.*) ([0-9]+) (.*)$/) {
699 $co{'author_epoch'} = $2;
700 $co{'author_tz'} = $3;
701 if ($co{'author'} =~ m/^([^<]+) </) {
702 $co{'author_name'} = $1;
704 $co{'author_name'} = $co{'author'};
706 } elsif ($line =~ m/^committer (.*) ([0-9]+) (.*)$/) {
707 $co{'committer'} = $1;
708 $co{'committer_epoch'} = $2;
709 $co{'committer_tz'} = $3;
710 $co{'committer_name'} = $co{'committer'};
711 $co{'committer_name'} =~ s/ <.*//;
714 if (!defined $co{'tree'}) {
718 foreach my $title (@commit_lines) {
721 $co{'title'} = chop_str
($title, 80, 5);
722 # remove leading stuff of merges to make the interesting part visible
723 if (length($title) > 50) {
724 $title =~ s/^Automatic //;
725 $title =~ s/^merge (of|with) /Merge ... /i;
726 if (length($title) > 50) {
727 $title =~ s/(http|rsync):\/\///;
729 if (length($title) > 50) {
730 $title =~ s/(master|www|rsync)\.//;
732 if (length($title) > 50) {
733 $title =~ s/kernel.org:?//;
735 if (length($title) > 50) {
736 $title =~ s/\/pub\/scm//;
739 $co{'title_short'} = chop_str
($title, 50, 5);
743 # remove added spaces
744 foreach my $line (@commit_lines) {
747 $co{'comment'} = \
@commit_lines;
749 my $age = time - $co{'committer_epoch'};
751 $co{'age_string'} = age_string
($age);
752 my ($sec, $min, $hour, $mday, $mon, $year, $wday, $yday) = gmtime($co{'committer_epoch'});
753 if ($age > 60*60*24*7*2) {
754 $co{'age_string_date'} = sprintf "%4i-%02u-%02i", 1900 + $year, $mon+1, $mday;
755 $co{'age_string_age'} = $co{'age_string'};
757 $co{'age_string_date'} = $co{'age_string'};
758 $co{'age_string_age'} = sprintf "%4i-%02u-%02i", 1900 + $year, $mon+1, $mday;
763 # parse ref from ref_file, given by ref_id, with given type
765 my $ref_file = shift;
767 my $type = shift || git_get_type
($ref_id);
770 $ref_item{'type'} = $type;
771 $ref_item{'id'} = $ref_id;
772 $ref_item{'epoch'} = 0;
773 $ref_item{'age'} = "unknown";
774 if ($type eq "tag") {
775 my %tag = parse_tag
($ref_id);
776 $ref_item{'comment'} = $tag{'comment'};
777 if ($tag{'type'} eq "commit") {
778 my %co = parse_commit
($tag{'object'});
779 $ref_item{'epoch'} = $co{'committer_epoch'};
780 $ref_item{'age'} = $co{'age_string'};
781 } elsif (defined($tag{'epoch'})) {
782 my $age = time - $tag{'epoch'};
783 $ref_item{'epoch'} = $tag{'epoch'};
784 $ref_item{'age'} = age_string
($age);
786 $ref_item{'reftype'} = $tag{'type'};
787 $ref_item{'name'} = $tag{'name'};
788 $ref_item{'refid'} = $tag{'object'};
789 } elsif ($type eq "commit"){
790 my %co = parse_commit
($ref_id);
791 $ref_item{'reftype'} = "commit";
792 $ref_item{'name'} = $ref_file;
793 $ref_item{'title'} = $co{'title'};
794 $ref_item{'refid'} = $ref_id;
795 $ref_item{'epoch'} = $co{'committer_epoch'};
796 $ref_item{'age'} = $co{'age_string'};
798 $ref_item{'reftype'} = $type;
799 $ref_item{'name'} = $ref_file;
800 $ref_item{'refid'} = $ref_id;
806 ## ......................................................................
807 ## parse to array of hashes functions
809 sub git_get_refs_list
{
814 my $pfxlen = length("$projectroot/$project/$ref_dir");
815 File
::Find
::find
(sub {
818 push @refs, substr($File::Find
::name
, $pfxlen + 1);
820 }, "$projectroot/$project/$ref_dir");
822 foreach my $ref_file (@refs) {
823 my $ref_id = git_get_hash_by_ref
("$project/$ref_dir/$ref_file");
824 my $type = git_get_type
($ref_id) || next;
825 my %ref_item = parse_ref
($ref_file, $ref_id, $type);
827 push @reflist, \
%ref_item;
830 @reflist = sort {$b->{'epoch'} <=> $a->{'epoch'}} @reflist;
834 ## ----------------------------------------------------------------------
835 ## filesystem-related functions
840 my ($dev, $ino, $mode, $nlink, $st_uid, $st_gid, $rdev, $size) = stat($path);
841 my ($name, $passwd, $uid, $gid, $quota, $comment, $gcos, $dir, $shell) = getpwuid($st_uid);
842 if (!defined $gcos) {
846 $owner =~ s/[,;].*$//;
847 return decode
("utf8", $owner, Encode
::FB_DEFAULT
);
850 ## ......................................................................
851 ## mimetype related functions
853 sub mimetype_guess_file
{
854 my $filename = shift;
856 -r
$mimemap or return undef;
859 open(MIME
, $mimemap) or return undef;
861 next if m/^#/; # skip comments
862 my ($mime, $exts) = split(/\t+/);
864 my @exts = split(/\s+/, $exts);
865 foreach my $ext (@exts) {
866 $mimemap{$ext} = $mime;
872 $filename =~ /\.(.*?)$/;
877 my $filename = shift;
879 $filename =~ /\./ or return undef;
881 if ($mimetypes_file) {
882 my $file = $mimetypes_file;
883 if ($file !~ m!^/!) { # if it is relative path
884 # it is relative to project
885 $file = "$projectroot/$project/$file";
887 $mime = mimetype_guess_file
($filename, $file);
889 $mime ||= mimetype_guess_file
($filename, '/etc/mime.types');
895 my $filename = shift;
898 my $mime = mimetype_guess
($filename);
899 $mime and return $mime;
903 return $default_blob_plain_mimetype unless $fd;
906 return 'text/plain' .
907 ($default_text_plain_charset ?
'; charset='.$default_text_plain_charset : '');
908 } elsif (! $filename) {
909 return 'application/octet-stream';
910 } elsif ($filename =~ m/\.png$/i) {
912 } elsif ($filename =~ m/\.gif$/i) {
914 } elsif ($filename =~ m/\.jpe?g$/i) {
917 return 'application/octet-stream';
921 ## ======================================================================
922 ## functions printing HTML: header, footer, error page
924 sub git_header_html
{
925 my $status = shift || "200 OK";
928 my $title = "$site_name git";
929 if (defined $project) {
930 $title .= " - $project";
931 if (defined $action) {
932 $title .= "/$action";
933 if (defined $file_name) {
934 $title .= " - $file_name";
935 if ($action eq "tree" && $file_name !~ m
|/$|) {
942 # require explicit support from the UA if we are to send the page as
943 # 'application/xhtml+xml', otherwise send it as plain old 'text/html'.
944 # we have to do this because MSIE sometimes globs '*/*', pretending to
945 # support xhtml+xml but choking when it gets what it asked for.
946 if (defined $cgi->http('HTTP_ACCEPT') && $cgi->http('HTTP_ACCEPT') =~ m/(,|;|\s|^)application\/xhtml\
+xml
(,|;|\s
|$)/ && $cgi->Accept('application/xhtml
+xml
') != 0) {
947 $content_type = 'application
/xhtml
+xml
';
949 $content_type = 'text
/html
';
951 print $cgi->header(-type=>$content_type, -charset => 'utf
-8', -status=> $status, -expires => $expires);
953 <?xml version="1.0" encoding="utf-8"?>
954 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
955 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" lang="en-US">
956 <!-- git web interface v$version, (C) 2005-2006, Kay Sievers <kay.sievers\@vrfy.org>, Christian Gierke -->
957 <!-- git core binaries version $git_version -->
959 <meta http-equiv="content-type" content="$content_type; charset=utf-8"/>
960 <meta name="robots" content="index, nofollow"/>
961 <title>$title</title>
962 <link rel="stylesheet" type="text/css" href="$stylesheet"/>
964 if (defined $project) {
965 printf('<link rel="alternate" title="%s log" '.
966 'href="%s" type="application/rss+xml"/>'."\n",
968 esc_param
("$my_uri?p=$project;a=rss"));
973 "<div class=\"page_header\">\n" .
974 "<a href=\"http://www.kernel.org/pub/software/scm/git/docs/\" title=\"git documentation\">" .
975 "<img src=\"$logo\" width=\"72\" height=\"27\" alt=\"git\" style=\"float:right; border-width:0px;\"/>" .
977 print $cgi->a({-href
=> esc_param
($home_link)}, "projects") . " / ";
978 if (defined $project) {
979 print $cgi->a({-href
=> "$my_uri?" . esc_param
("p=$project;a=summary")}, esc_html
($project));
980 if (defined $action) {
984 if (!defined $searchtext) {
988 if (defined $hash_base) {
989 $search_hash = $hash_base;
990 } elsif (defined $hash) {
991 $search_hash = $hash;
993 $search_hash = "HEAD";
995 $cgi->param("a", "search");
996 $cgi->param("h", $search_hash);
997 print $cgi->startform(-method
=> "get", -action
=> $my_uri) .
998 "<div class=\"search\">\n" .
999 $cgi->hidden(-name
=> "p") . "\n" .
1000 $cgi->hidden(-name
=> "a") . "\n" .
1001 $cgi->hidden(-name
=> "h") . "\n" .
1002 $cgi->textfield(-name
=> "s", -value
=> $searchtext) . "\n" .
1004 $cgi->end_form() . "\n";
1009 sub git_footer_html
{
1010 print "<div class=\"page_footer\">\n";
1011 if (defined $project) {
1012 my $descr = git_get_project_description
($project);
1013 if (defined $descr) {
1014 print "<div class=\"page_footer_text\">" . esc_html
($descr) . "</div>\n";
1016 print $cgi->a({-href
=> "$my_uri?" . esc_param
("p=$project;a=rss"), -class => "rss_logo"}, "RSS") . "\n";
1018 print $cgi->a({-href
=> "$my_uri?" . esc_param
("a=opml"), -class => "rss_logo"}, "OPML") . "\n";
1026 my $status = shift || "403 Forbidden";
1027 my $error = shift || "Malformed query, file missing or permission denied";
1029 git_header_html
($status);
1030 print "<div class=\"page_body\">\n" .
1032 "$status - $error\n" .
1039 ## ----------------------------------------------------------------------
1040 ## functions printing or outputting HTML: navigation
1042 sub git_print_page_nav
{
1043 my ($current, $suppress, $head, $treehead, $treebase, $extra) = @_;
1044 $extra = '' if !defined $extra; # pager or formats
1046 my @navs = qw(summary shortlog log commit commitdiff tree);
1048 @navs = grep { $_ ne $suppress } @navs;
1051 my %arg = map { $_, ''} @navs;
1052 if (defined $head) {
1053 for (qw(commit commitdiff)) {
1054 $arg{$_} = ";h=$head";
1056 if ($current =~ m/^(tree | log | shortlog | commit | commitdiff | search)$/x) {
1057 for (qw(shortlog log)) {
1058 $arg{$_} = ";h=$head";
1062 $arg{tree
} .= ";h=$treehead" if defined $treehead;
1063 $arg{tree
} .= ";hb=$treebase" if defined $treebase;
1065 print "<div class=\"page_nav\">\n" .
1067 map { $_ eq $current
1069 : $cgi->a({-href
=> "$my_uri?" . esc_param
("p=$project;a=$_$arg{$_}")}, "$_")
1072 print "<br/>\n$extra<br/>\n" .
1076 sub format_paging_nav
{
1077 my ($action, $hash, $head, $page, $nrevs) = @_;
1081 if ($hash ne $head || $page) {
1082 $paging_nav .= $cgi->a({-href
=> "$my_uri?" . esc_param
("p=$project;a=$action")}, "HEAD");
1084 $paging_nav .= "HEAD";
1088 $paging_nav .= " ⋅ " .
1089 $cgi->a({-href
=> "$my_uri?" . esc_param
("p=$project;a=$action;h=$hash;pg=" . ($page-1)),
1090 -accesskey
=> "p", -title
=> "Alt-p"}, "prev");
1092 $paging_nav .= " ⋅ prev";
1095 if ($nrevs >= (100 * ($page+1)-1)) {
1096 $paging_nav .= " ⋅ " .
1097 $cgi->a({-href
=> "$my_uri?" . esc_param
("p=$project;a=$action;h=$hash;pg=" . ($page+1)),
1098 -accesskey
=> "n", -title
=> "Alt-n"}, "next");
1100 $paging_nav .= " ⋅ next";
1106 ## ......................................................................
1107 ## functions printing or outputting HTML: div
1109 sub git_print_header_div
{
1110 my ($action, $title, $hash, $hash_base) = @_;
1113 $rest .= ";h=$hash" if $hash;
1114 $rest .= ";hb=$hash_base" if $hash_base;
1116 print "<div class=\"header\">\n" .
1117 $cgi->a({-href
=> "$my_uri?" . esc_param
("p=$project;a=$action$rest"),
1118 -class => "title"}, $title ?
$title : $action) . "\n" .
1122 sub git_print_page_path
{
1126 if (!defined $name) {
1127 print "<div class=\"page_path\"><b>/</b></div>\n";
1128 } elsif (defined $type && $type eq 'blob') {
1129 print "<div class=\"page_path\"><b>" .
1130 $cgi->a({-href
=> "$my_uri?" . esc_param
("p=$project;a=blob_plain;f=$file_name")}, esc_html
($name)) . "</b><br/></div>\n";
1132 print "<div class=\"page_path\"><b>" . esc_html
($name) . "</b><br/></div>\n";
1136 ## ......................................................................
1137 ## functions printing large fragments of HTML
1139 sub git_shortlog_body
{
1140 # uses global variable $project
1141 my ($revlist, $from, $to, $refs, $extra) = @_;
1142 $from = 0 unless defined $from;
1143 $to = $#{$revlist} if (!defined $to || $#{$revlist} < $to);
1145 print "<table class=\"shortlog\" cellspacing=\"0\">\n";
1147 for (my $i = $from; $i <= $to; $i++) {
1148 my $commit = $revlist->[$i];
1149 #my $ref = defined $refs ? format_ref_marker($refs, $commit) : '';
1150 my $ref = format_ref_marker
($refs, $commit);
1151 my %co = parse_commit
($commit);
1153 print "<tr class=\"dark\">\n";
1155 print "<tr class=\"light\">\n";
1158 # git_summary() used print "<td><i>$co{'age_string'}</i></td>\n" .
1159 print "<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n" .
1160 "<td><i>" . esc_html
(chop_str
($co{'author_name'}, 10)) . "</i></td>\n" .
1162 print format_subject_html
($co{'title'}, $co{'title_short'}, "p=$project;a=commit;h=$commit", $ref);
1164 "<td class=\"link\">" .
1165 $cgi->a({-href
=> "$my_uri?" . esc_param
("p=$project;a=commit;h=$commit")}, "commit") . " | " .
1166 $cgi->a({-href
=> "$my_uri?" . esc_param
("p=$project;a=commitdiff;h=$commit")}, "commitdiff") .
1170 if (defined $extra) {
1172 "<td colspan=\"4\">$extra</td>\n" .
1178 sub git_history_body
{
1179 # Warning: assumes constant type (blob or tree) during history
1180 my ($fd, $refs, $hash_base, $ftype, $extra) = @_;
1182 print "<table class=\"history\" cellspacing=\"0\">\n";
1184 while (my $line = <$fd>) {
1185 if ($line !~ m/^([0-9a-fA-F]{40})/) {
1190 my %co = parse_commit
($commit);
1195 my $ref = format_ref_marker
($refs, $commit);
1198 print "<tr class=\"dark\">\n";
1200 print "<tr class=\"light\">\n";
1203 print "<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n" .
1204 # shortlog uses chop_str($co{'author_name'}, 10)
1205 "<td><i>" . esc_html
(chop_str
($co{'author_name'}, 15, 3)) . "</i></td>\n" .
1207 # originally git_history used chop_str($co{'title'}, 50)
1208 print format_subject_html
($co{'title'}, $co{'title_short'}, "p=$project;a=commit;h=$commit", $ref);
1210 "<td class=\"link\">" .
1211 $cgi->a({-href
=> "$my_uri?" . esc_param
("p=$project;a=commit;h=$commit")}, "commit") . " | " .
1212 $cgi->a({-href
=> "$my_uri?" . esc_param
("p=$project;a=commitdiff;h=$commit")}, "commitdiff") . " | " .
1213 $cgi->a({-href
=> "$my_uri?" . esc_param
("p=$project;a=$ftype;hb=$commit;f=$file_name")}, $ftype);
1215 if ($ftype eq 'blob') {
1216 my $blob_current = git_get_hash_by_path
($hash_base, $file_name);
1217 my $blob_parent = git_get_hash_by_path
($commit, $file_name);
1218 if (defined $blob_current && defined $blob_parent &&
1219 $blob_current ne $blob_parent) {
1221 $cgi->a({-href
=> "$my_uri?" . esc_param
("p=$project;a=blobdiff;h=$blob_current;hp=$blob_parent;hb=$commit;f=$file_name")},
1228 if (defined $extra) {
1230 "<td colspan=\"4\">$extra</td>\n" .
1237 # uses global variable $project
1238 my ($taglist, $from, $to, $extra) = @_;
1239 $from = 0 unless defined $from;
1240 $to = $#{$taglist} if (!defined $to || $#{$taglist} < $to);
1242 print "<table class=\"tags\" cellspacing=\"0\">\n";
1244 for (my $i = $from; $i <= $to; $i++) {
1245 my $entry = $taglist->[$i];
1247 my $comment_lines = $tag{'comment'};
1248 my $comment = shift @
$comment_lines;
1250 if (defined $comment) {
1251 $comment_short = chop_str
($comment, 30, 5);
1254 print "<tr class=\"dark\">\n";
1256 print "<tr class=\"light\">\n";
1259 print "<td><i>$tag{'age'}</i></td>\n" .
1261 $cgi->a({-href
=> "$my_uri?" . esc_param
("p=$project;a=$tag{'reftype'};h=$tag{'refid'}"),
1262 -class => "list"}, "<b>" . esc_html
($tag{'name'}) . "</b>") .
1265 if (defined $comment) {
1266 print format_subject_html
($comment, $comment_short, "p=$project;a=tag;h=$tag{'id'}");
1269 "<td class=\"selflink\">";
1270 if ($tag{'type'} eq "tag") {
1271 print $cgi->a({-href
=> "$my_uri?" . esc_param
("p=$project;a=tag;h=$tag{'id'}")}, "tag");
1276 "<td class=\"link\">" . " | " .
1277 $cgi->a({-href
=> "$my_uri?" . esc_param
("p=$project;a=$tag{'reftype'};h=$tag{'refid'}")}, $tag{'reftype'});
1278 if ($tag{'reftype'} eq "commit") {
1279 print " | " . $cgi->a({-href
=> "$my_uri?" . esc_param
("p=$project;a=shortlog;h=$tag{'name'}")}, "shortlog") .
1280 " | " . $cgi->a({-href
=> "$my_uri?" . esc_param
("p=$project;a=log;h=$tag{'refid'}")}, "log");
1281 } elsif ($tag{'reftype'} eq "blob") {
1282 print " | " . $cgi->a({-href
=> "$my_uri?" . esc_param
("p=$project;a=blob_plain;h=$tag{'refid'}")}, "raw");
1287 if (defined $extra) {
1289 "<td colspan=\"5\">$extra</td>\n" .
1295 sub git_heads_body
{
1296 # uses global variable $project
1297 my ($taglist, $head, $from, $to, $extra) = @_;
1298 $from = 0 unless defined $from;
1299 $to = $#{$taglist} if (!defined $to || $#{$taglist} < $to);
1301 print "<table class=\"heads\" cellspacing=\"0\">\n";
1303 for (my $i = $from; $i <= $to; $i++) {
1304 my $entry = $taglist->[$i];
1306 my $curr = $tag{'id'} eq $head;
1308 print "<tr class=\"dark\">\n";
1310 print "<tr class=\"light\">\n";
1313 print "<td><i>$tag{'age'}</i></td>\n" .
1314 ($tag{'id'} eq $head ?
"<td class=\"current_head\">" : "<td>") .
1315 $cgi->a({-href
=> "$my_uri?" . esc_param
("p=$project;a=shortlog;h=$tag{'name'}"),
1316 -class => "list"}, "<b>" . esc_html
($tag{'name'}) . "</b>") .
1318 "<td class=\"link\">" .
1319 $cgi->a({-href
=> "$my_uri?" . esc_param
("p=$project;a=shortlog;h=$tag{'name'}")}, "shortlog") . " | " .
1320 $cgi->a({-href
=> "$my_uri?" . esc_param
("p=$project;a=log;h=$tag{'name'}")}, "log") .
1324 if (defined $extra) {
1326 "<td colspan=\"3\">$extra</td>\n" .
1332 ## ----------------------------------------------------------------------
1333 ## functions printing large fragments, format as one of arguments
1335 sub git_diff_print
{
1337 my $from_name = shift;
1339 my $to_name = shift;
1340 my $format = shift || "html";
1342 my $from_tmp = "/dev/null";
1343 my $to_tmp = "/dev/null";
1346 # create tmp from-file
1347 if (defined $from) {
1348 $from_tmp = "$git_temp/gitweb_" . $$ . "_from";
1349 open my $fd2, "> $from_tmp";
1350 open my $fd, "-|", $GIT, "cat-file", "blob", $from;
1357 # create tmp to-file
1359 $to_tmp = "$git_temp/gitweb_" . $$ . "_to";
1360 open my $fd2, "> $to_tmp";
1361 open my $fd, "-|", $GIT, "cat-file", "blob", $to;
1368 open my $fd, "-|", "/usr/bin/diff -u -p -L \'$from_name\' -L \'$to_name\' $from_tmp $to_tmp";
1369 if ($format eq "plain") {
1374 while (my $line = <$fd>) {
1376 my $char = substr($line, 0, 1);
1377 my $diff_class = "";
1379 $diff_class = " add";
1380 } elsif ($char eq "-") {
1381 $diff_class = " rem";
1382 } elsif ($char eq "@") {
1383 $diff_class = " chunk_header";
1384 } elsif ($char eq "\\") {
1388 $line = untabify
($line);
1389 print "<div class=\"diff$diff_class\">" . esc_html
($line) . "</div>\n";
1394 if (defined $from) {
1403 ## ======================================================================
1404 ## ======================================================================
1407 sub git_project_list
{
1408 my $order = $cgi->param('o');
1409 if (defined $order && $order !~ m/project|descr|owner|age/) {
1410 die_error
(undef, "Unknown order parameter");
1413 my @list = git_get_projects_list
();
1416 die_error
(undef, "No projects found");
1418 foreach my $pr (@list) {
1419 my $head = git_get_head_hash
($pr->{'path'});
1420 if (!defined $head) {
1423 $ENV{'GIT_DIR'} = "$projectroot/$pr->{'path'}";
1424 my %co = parse_commit
($head);
1428 $pr->{'commit'} = \
%co;
1429 if (!defined $pr->{'descr'}) {
1430 my $descr = git_get_project_description
($pr->{'path'}) || "";
1431 $pr->{'descr'} = chop_str
($descr, 25, 5);
1433 if (!defined $pr->{'owner'}) {
1434 $pr->{'owner'} = get_file_owner
("$projectroot/$pr->{'path'}") || "";
1436 push @projects, $pr;
1440 if (-f
$home_text) {
1441 print "<div class=\"index_include\">\n";
1442 open (my $fd, $home_text);
1447 print "<table class=\"project_list\">\n" .
1449 $order ||= "project";
1450 if ($order eq "project") {
1451 @projects = sort {$a->{'path'} cmp $b->{'path'}} @projects;
1452 print "<th>Project</th>\n";
1455 $cgi->a({-href
=> "$my_uri?" . esc_param
("o=project"),
1456 -class => "header"}, "Project") .
1459 if ($order eq "descr") {
1460 @projects = sort {$a->{'descr'} cmp $b->{'descr'}} @projects;
1461 print "<th>Description</th>\n";
1464 $cgi->a({-href
=> "$my_uri?" . esc_param
("o=descr"),
1465 -class => "header"}, "Description") .
1468 if ($order eq "owner") {
1469 @projects = sort {$a->{'owner'} cmp $b->{'owner'}} @projects;
1470 print "<th>Owner</th>\n";
1473 $cgi->a({-href
=> "$my_uri?" . esc_param
("o=owner"),
1474 -class => "header"}, "Owner") .
1477 if ($order eq "age") {
1478 @projects = sort {$a->{'commit'}{'age'} <=> $b->{'commit'}{'age'}} @projects;
1479 print "<th>Last Change</th>\n";
1482 $cgi->a({-href
=> "$my_uri?" . esc_param
("o=age"),
1483 -class => "header"}, "Last Change") .
1486 print "<th></th>\n" .
1489 foreach my $pr (@projects) {
1491 print "<tr class=\"dark\">\n";
1493 print "<tr class=\"light\">\n";
1496 print "<td>" . $cgi->a({-href
=> "$my_uri?" . esc_param
("p=$pr->{'path'};a=summary"),
1497 -class => "list"}, esc_html
($pr->{'path'})) . "</td>\n" .
1498 "<td>" . esc_html
($pr->{'descr'}) . "</td>\n" .
1499 "<td><i>" . chop_str
($pr->{'owner'}, 15) . "</i></td>\n";
1500 print "<td class=\"". age_class
($pr->{'commit'}{'age'}) . "\">" .
1501 $pr->{'commit'}{'age_string'} . "</td>\n" .
1502 "<td class=\"link\">" .
1503 $cgi->a({-href
=> "$my_uri?" . esc_param
("p=$pr->{'path'};a=summary")}, "summary") . " | " .
1504 $cgi->a({-href
=> "$my_uri?" . esc_param
("p=$pr->{'path'};a=shortlog")}, "shortlog") . " | " .
1505 $cgi->a({-href
=> "$my_uri?" . esc_param
("p=$pr->{'path'};a=log")}, "log") .
1514 my $descr = git_get_project_description
($project) || "none";
1515 my $head = git_get_head_hash
($project);
1516 my %co = parse_commit
($head);
1517 my %cd = parse_date
($co{'committer_epoch'}, $co{'committer_tz'});
1519 my $owner = git_get_project_owner
($project);
1521 my $refs = git_get_references
();
1523 git_print_page_nav
('summary','', $head);
1525 print "<div class=\"title\"> </div>\n";
1526 print "<table cellspacing=\"0\">\n" .
1527 "<tr><td>description</td><td>" . esc_html
($descr) . "</td></tr>\n" .
1528 "<tr><td>owner</td><td>$owner</td></tr>\n" .
1529 "<tr><td>last change</td><td>$cd{'rfc2822'}</td></tr>\n" .
1532 open my $fd, "-|", $GIT, "rev-list", "--max-count=17", git_get_head_hash
($project)
1533 or die_error
(undef, "Open git-rev-list failed");
1534 my @revlist = map { chomp; $_ } <$fd>;
1536 git_print_header_div
('shortlog');
1537 git_shortlog_body
(\
@revlist, 0, 15, $refs,
1538 $cgi->a({-href
=> "$my_uri?" . esc_param
("p=$project;a=shortlog")}, "..."));
1540 my $taglist = git_get_refs_list
("refs/tags");
1541 if (defined @
$taglist) {
1542 git_print_header_div
('tags');
1543 git_tags_body
($taglist, 0, 15,
1544 $cgi->a({-href
=> "$my_uri?" . esc_param
("p=$project;a=tags")}, "..."));
1547 my $headlist = git_get_refs_list
("refs/heads");
1548 if (defined @
$headlist) {
1549 git_print_header_div
('heads');
1550 git_heads_body
($headlist, $head, 0, 15,
1551 $cgi->a({-href
=> "$my_uri?" . esc_param
("p=$project;a=heads")}, "..."));
1558 my $head = git_get_head_hash
($project);
1560 git_print_page_nav
('','', $head,undef,$head);
1561 my %tag = parse_tag
($hash);
1562 git_print_header_div
('commit', esc_html
($tag{'name'}), $hash);
1563 print "<div class=\"title_text\">\n" .
1564 "<table cellspacing=\"0\">\n" .
1566 "<td>object</td>\n" .
1567 "<td>" . $cgi->a({-class => "list", -href
=> "$my_uri?" . esc_param
("p=$project;a=$tag{'type'};h=$tag{'object'}")}, $tag{'object'}) . "</td>\n" .
1568 "<td class=\"link\">" . $cgi->a({-href
=> "$my_uri?" . esc_param
("p=$project;a=$tag{'type'};h=$tag{'object'}")}, $tag{'type'}) . "</td>\n" .
1570 if (defined($tag{'author'})) {
1571 my %ad = parse_date
($tag{'epoch'}, $tag{'tz'});
1572 print "<tr><td>author</td><td>" . esc_html
($tag{'author'}) . "</td></tr>\n";
1573 print "<tr><td></td><td>" . $ad{'rfc2822'} . sprintf(" (%02d:%02d %s)", $ad{'hour_local'}, $ad{'minute_local'}, $ad{'tz_local'}) . "</td></tr>\n";
1575 print "</table>\n\n" .
1577 print "<div class=\"page_body\">";
1578 my $comment = $tag{'comment'};
1579 foreach my $line (@
$comment) {
1580 print esc_html
($line) . "<br/>\n";
1589 die_error
(undef, "Permission denied") if (!git_get_project_config_bool
('blame'));
1590 die_error
('404 Not Found', "File name not defined") if (!$file_name);
1591 $hash_base ||= git_get_head_hash
($project);
1592 die_error
(undef, "Couldn't find base commit") unless ($hash_base);
1593 my %co = parse_commit
($hash_base)
1594 or die_error
(undef, "Reading commit failed");
1595 if (!defined $hash) {
1596 $hash = git_get_hash_by_path
($hash_base, $file_name, "blob")
1597 or die_error
(undef, "Error looking up file");
1599 $ftype = git_get_type
($hash);
1600 if ($ftype !~ "blob") {
1601 die_error
("400 Bad Request", "Object is not a blob");
1603 open ($fd, "-|", $GIT, "blame", '-l', $file_name, $hash_base)
1604 or die_error
(undef, "Open git-blame failed");
1607 $cgi->a({-href
=> "$my_uri?" . esc_param
("p=$project;a=blob;h=$hash;hb=$hash_base;f=$file_name")}, "blob") .
1608 " | " . $cgi->a({-href
=> "$my_uri?" . esc_param
("p=$project;a=blame;f=$file_name")}, "head");
1609 git_print_page_nav
('','', $hash_base,$co{'tree'},$hash_base, $formats_nav);
1610 git_print_header_div
('commit', esc_html
($co{'title'}), $hash_base);
1611 git_print_page_path
($file_name, $ftype);
1612 my @rev_color = (qw(light2 dark2));
1613 my $num_colors = scalar(@rev_color);
1614 my $current_color = 0;
1616 print "<div class=\"page_body\">\n";
1617 print "<table class=\"blame\">\n";
1618 print "<tr><th>Commit</th><th>Line</th><th>Data</th></tr>\n";
1620 /^([0-9a-fA-F]{40}).*?(\d+)\)\s{1}(\s*.*)/;
1622 my $rev = substr($full_rev, 0, 8);
1626 if (!defined $last_rev) {
1627 $last_rev = $full_rev;
1628 } elsif ($last_rev ne $full_rev) {
1629 $last_rev = $full_rev;
1630 $current_color = ++$current_color % $num_colors;
1632 print "<tr class=\"$rev_color[$current_color]\">\n";
1633 print "<td class=\"sha1\">" .
1634 $cgi->a({-href
=> "$my_uri?" . esc_param
("p=$project;a=commit;h=$full_rev;f=$file_name")}, esc_html
($rev)) . "</td>\n";
1635 print "<td class=\"linenr\"><a id=\"l$lineno\" href=\"#l$lineno\" class=\"linenr\">" . esc_html
($lineno) . "</a></td>\n";
1636 print "<td class=\"pre\">" . esc_html
($data) . "</td>\n";
1641 close $fd or print "Reading blob failed\n";
1647 die_error
('403 Permission denied', "Permission denied") if (!git_get_project_config_bool
('blame'));
1648 die_error
('404 Not Found', "File name not defined") if (!$file_name);
1649 $hash_base ||= git_get_head_hash
($project);
1650 die_error
(undef, "Couldn't find base commit") unless ($hash_base);
1651 my %co = parse_commit
($hash_base)
1652 or die_error
(undef, "Reading commit failed");
1653 if (!defined $hash) {
1654 $hash = git_get_hash_by_path
($hash_base, $file_name, "blob")
1655 or die_error
(undef, "Error lookup file");
1657 open ($fd, "-|", $GIT, "annotate", '-l', '-t', '-r', $file_name, $hash_base)
1658 or die_error
(undef, "Open git-annotate failed");
1661 $cgi->a({-href
=> "$my_uri?" . esc_param
("p=$project;a=blob;h=$hash;hb=$hash_base;f=$file_name")}, "blob") .
1662 " | " . $cgi->a({-href
=> "$my_uri?" . esc_param
("p=$project;a=blame;f=$file_name")}, "head");
1663 git_print_page_nav
('','', $hash_base,$co{'tree'},$hash_base, $formats_nav);
1664 git_print_header_div
('commit', esc_html
($co{'title'}), $hash_base);
1665 git_print_page_path
($file_name, 'blob');
1666 print "<div class=\"page_body\">\n";
1668 <table class="blame">
1677 my @line_class = (qw(light dark));
1678 my $line_class_len = scalar (@line_class);
1679 my $line_class_num = $#line_class;
1680 while (my $line = <$fd>) {
1692 $line_class_num = ($line_class_num + 1) % $line_class_len;
1694 if ($line =~ m/^([0-9a-fA-F]{40})\t\(\s*([^\t]+)\t(\d+) \+\d\d\d\d\t(\d+)\)(.*)$/) {
1701 print qq( <tr
><td colspan
="5" class="error">Unable to parse
: $line</td></tr
>\n);
1704 $short_rev = substr ($long_rev, 0, 8);
1705 $age = time () - $time;
1706 $age_str = age_string
($age);
1707 $age_str =~ s/ / /g;
1708 $age_class = age_class
($age);
1709 $author = esc_html
($author);
1710 $author =~ s/ / /g;
1712 $data = untabify
($data);
1713 $data = esc_html
($data);
1716 <tr class="$line_class[$line_class_num]">
1717 <td class="sha1"><a href="$my_uri?${\esc_param ("p=$project;a=commit;h=$long_rev")}" class="text">$short_rev..</a></td>
1718 <td class="$age_class">$age_str</td>
1720 <td class="linenr"><a id="$lineno" href="#$lineno" class="linenr">$lineno</a></td>
1721 <td class="pre">$data</td>
1724 } # while (my $line = <$fd>)
1725 print "</table>\n\n";
1726 close $fd or print "Reading blob failed.\n";
1732 my $head = git_get_head_hash
($project);
1734 git_print_page_nav
('','', $head,undef,$head);
1735 git_print_header_div
('summary', $project);
1737 my $taglist = git_get_refs_list
("refs/tags");
1738 if (defined @
$taglist) {
1739 git_tags_body
($taglist);
1745 my $head = git_get_head_hash
($project);
1747 git_print_page_nav
('','', $head,undef,$head);
1748 git_print_header_div
('summary', $project);
1750 my $taglist = git_get_refs_list
("refs/heads");
1751 if (defined @
$taglist) {
1752 git_heads_body
($taglist, $head);
1757 sub git_blob_plain
{
1758 if (!defined $hash) {
1759 if (defined $file_name) {
1760 my $base = $hash_base || git_get_head_hash
($project);
1761 $hash = git_get_hash_by_path
($base, $file_name, "blob")
1762 or die_error
(undef, "Error lookup file");
1764 die_error
(undef, "No file name defined");
1768 open my $fd, "-|", $GIT, "cat-file", "blob", $hash
1769 or die_error
(undef, "Couldn't cat $file_name, $hash");
1771 $type ||= blob_mimetype
($fd, $file_name);
1773 # save as filename, even when no $file_name is given
1774 my $save_as = "$hash";
1775 if (defined $file_name) {
1776 $save_as = $file_name;
1777 } elsif ($type =~ m/^text\//) {
1781 print $cgi->header(-type
=> "$type", '-content-disposition' => "inline; filename=\"$save_as\"");
1783 binmode STDOUT
, ':raw';
1785 binmode STDOUT
, ':utf8'; # as set at the beginning of gitweb.cgi
1791 if (!defined $hash) {
1792 if (defined $file_name) {
1793 my $base = $hash_base || git_get_head_hash
($project);
1794 $hash = git_get_hash_by_path
($base, $file_name, "blob")
1795 or die_error
(undef, "Error lookup file");
1797 die_error
(undef, "No file name defined");
1800 my $have_blame = git_get_project_config_bool
('blame');
1801 open my $fd, "-|", $GIT, "cat-file", "blob", $hash
1802 or die_error
(undef, "Couldn't cat $file_name, $hash");
1803 my $mimetype = blob_mimetype
($fd, $file_name);
1804 if ($mimetype !~ m/^text\//) {
1806 return git_blob_plain
($mimetype);
1809 my $formats_nav = '';
1810 if (defined $hash_base && (my %co = parse_commit
($hash_base))) {
1811 if (defined $file_name) {
1813 $formats_nav .= $cgi->a({-href
=> "$my_uri?" . esc_param
("p=$project;a=blame;h=$hash;hb=$hash_base;f=$file_name")}, "blame") . " | ";
1816 $cgi->a({-href
=> "$my_uri?" . esc_param
("p=$project;a=blob_plain;h=$hash;f=$file_name")}, "plain") .
1817 " | " . $cgi->a({-href
=> "$my_uri?" . esc_param
("p=$project;a=blob;hb=HEAD;f=$file_name")}, "head");
1819 $formats_nav .= $cgi->a({-href
=> "$my_uri?" . esc_param
("p=$project;a=blob_plain;h=$hash")}, "plain");
1821 git_print_page_nav
('','', $hash_base,$co{'tree'},$hash_base, $formats_nav);
1822 git_print_header_div
('commit', esc_html
($co{'title'}), $hash_base);
1824 print "<div class=\"page_nav\">\n" .
1825 "<br/><br/></div>\n" .
1826 "<div class=\"title\">$hash</div>\n";
1828 git_print_page_path
($file_name, "blob");
1829 print "<div class=\"page_body\">\n";
1831 while (my $line = <$fd>) {
1834 $line = untabify
($line);
1835 printf "<div class=\"pre\"><a id=\"l%i\" href=\"#l%i\" class=\"linenr\">%4i</a> %s</div>\n", $nr, $nr, $nr, esc_html
($line);
1837 close $fd or print "Reading blob failed.\n";
1843 if (!defined $hash) {
1844 $hash = git_get_head_hash
($project);
1845 if (defined $file_name) {
1846 my $base = $hash_base || $hash;
1847 $hash = git_get_hash_by_path
($base, $file_name, "tree");
1849 if (!defined $hash_base) {
1854 open my $fd, "-|", $GIT, "ls-tree", '-z', $hash
1855 or die_error
(undef, "Open git-ls-tree failed");
1856 my @entries = map { chomp; $_ } <$fd>;
1857 close $fd or die_error
(undef, "Reading tree failed");
1860 my $refs = git_get_references
();
1861 my $ref = format_ref_marker
($refs, $hash_base);
1865 my $have_blame = git_get_project_config_bool
('blame');
1866 if (defined $hash_base && (my %co = parse_commit
($hash_base))) {
1867 $base_key = ";hb=$hash_base";
1868 git_print_page_nav
('tree','', $hash_base);
1869 git_print_header_div
('commit', esc_html
($co{'title'}) . $ref, $hash_base);
1871 print "<div class=\"page_nav\">\n";
1872 print "<br/><br/></div>\n";
1873 print "<div class=\"title\">$hash</div>\n";
1875 if (defined $file_name) {
1876 $base = esc_html
("$file_name/");
1878 git_print_page_path
($file_name, 'tree');
1879 print "<div class=\"page_body\">\n";
1880 print "<table cellspacing=\"0\">\n";
1882 foreach my $line (@entries) {
1883 #'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'
1884 $line =~ m/^([0-9]+) (.+) ([0-9a-fA-F]{40})\t(.+)$/;
1888 my $t_name = validate_input
($4);
1890 print "<tr class=\"dark\">\n";
1892 print "<tr class=\"light\">\n";
1895 print "<td class=\"mode\">" . mode_str
($t_mode) . "</td>\n";
1896 if ($t_type eq "blob") {
1897 print "<td class=\"list\">" .
1898 $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)) .
1900 "<td class=\"link\">" .
1901 $cgi->a({-href
=> "$my_uri?" . esc_param
("p=$project;a=blob;h=$t_hash$base_key;f=$base$t_name")}, "blob");
1903 print " | " . $cgi->a({-href
=> "$my_uri?" . esc_param
("p=$project;a=blame;h=$t_hash$base_key;f=$base$t_name")}, "blame");
1905 print " | " . $cgi->a({-href
=> "$my_uri?" . esc_param
("p=$project;a=history;h=$t_hash;hb=$hash_base;f=$base$t_name")}, "history") .
1906 " | " . $cgi->a({-href
=> "$my_uri?" . esc_param
("p=$project;a=blob_plain;h=$t_hash;f=$base$t_name")}, "raw") .
1908 } elsif ($t_type eq "tree") {
1909 print "<td class=\"list\">" .
1910 $cgi->a({-href
=> "$my_uri?" . esc_param
("p=$project;a=tree;h=$t_hash$base_key;f=$base$t_name")}, esc_html
($t_name)) .
1912 "<td class=\"link\">" .
1913 $cgi->a({-href
=> "$my_uri?" . esc_param
("p=$project;a=tree;h=$t_hash$base_key;f=$base$t_name")}, "tree") .
1914 " | " . $cgi->a({-href
=> "$my_uri?" . esc_param
("p=$project;a=history;hb=$hash_base;f=$base$t_name")}, "history") .
1919 print "</table>\n" .
1925 my $head = git_get_head_hash
($project);
1926 if (!defined $hash) {
1929 if (!defined $page) {
1932 my $refs = git_get_references
();
1934 my $limit = sprintf("--max-count=%i", (100 * ($page+1)));
1935 open my $fd, "-|", $GIT, "rev-list", $limit, $hash
1936 or die_error
(undef, "Open git-rev-list failed");
1937 my @revlist = map { chomp; $_ } <$fd>;
1940 my $paging_nav = format_paging_nav
('log', $hash, $head, $page, $#revlist);
1943 git_print_page_nav
('log','', $hash,undef,undef, $paging_nav);
1946 my %co = parse_commit
($hash);
1948 git_print_header_div
('summary', $project);
1949 print "<div class=\"page_body\"> Last change $co{'age_string'}.<br/><br/></div>\n";
1951 for (my $i = ($page * 100); $i <= $#revlist; $i++) {
1952 my $commit = $revlist[$i];
1953 my $ref = format_ref_marker
($refs, $commit);
1954 my %co = parse_commit
($commit);
1956 my %ad = parse_date
($co{'author_epoch'});
1957 git_print_header_div
('commit',
1958 "<span class=\"age\">$co{'age_string'}</span>" .
1959 esc_html
($co{'title'}) . $ref,
1961 print "<div class=\"title_text\">\n" .
1962 "<div class=\"log_link\">\n" .
1963 $cgi->a({-href
=> "$my_uri?" . esc_param
("p=$project;a=commit;h=$commit")}, "commit") .
1964 " | " . $cgi->a({-href
=> "$my_uri?" . esc_param
("p=$project;a=commitdiff;h=$commit")}, "commitdiff") .
1967 "<i>" . esc_html
($co{'author_name'}) . " [$ad{'rfc2822'}]</i><br/>\n" .
1969 "<div class=\"log_body\">\n";
1970 my $comment = $co{'comment'};
1972 foreach my $line (@
$comment) {
1973 if ($line =~ m/^ *(signed[ \-]off[ \-]by[ :]|acked[ \-]by[ :]|cc[ :])/i) {
1984 print format_log_line_html
($line) . "<br/>\n";
1995 my %co = parse_commit
($hash);
1997 die_error
(undef, "Unknown commit object");
1999 my %ad = parse_date
($co{'author_epoch'}, $co{'author_tz'});
2000 my %cd = parse_date
($co{'committer_epoch'}, $co{'committer_tz'});
2002 my $parent = $co{'parent'};
2003 if (!defined $parent) {
2006 open my $fd, "-|", $GIT, "diff-tree", '-r', '-M', $parent, $hash
2007 or die_error
(undef, "Open git-diff-tree failed");
2008 my @difftree = map { chomp; $_ } <$fd>;
2009 close $fd or die_error
(undef, "Reading git-diff-tree failed");
2011 # non-textual hash id's can be cached
2013 if ($hash =~ m/^[0-9a-fA-F]{40}$/) {
2016 my $refs = git_get_references
();
2017 my $ref = format_ref_marker
($refs, $co{'id'});
2018 my $formats_nav = '';
2019 if (defined $file_name && defined $co{'parent'}) {
2020 my $parent = $co{'parent'};
2021 $formats_nav .= $cgi->a({-href
=> "$my_uri?" . esc_param
("p=$project;a=blame;hb=$parent;f=$file_name")}, "blame");
2023 git_header_html
(undef, $expires);
2024 git_print_page_nav
('commit', defined $co{'parent'} ?
'' : 'commitdiff',
2025 $hash, $co{'tree'}, $hash,
2028 if (defined $co{'parent'}) {
2029 git_print_header_div
('commitdiff', esc_html
($co{'title'}) . $ref, $hash);
2031 git_print_header_div
('tree', esc_html
($co{'title'}) . $ref, $co{'tree'}, $hash);
2033 print "<div class=\"title_text\">\n" .
2034 "<table cellspacing=\"0\">\n";
2035 print "<tr><td>author</td><td>" . esc_html
($co{'author'}) . "</td></tr>\n".
2037 "<td></td><td> $ad{'rfc2822'}";
2038 if ($ad{'hour_local'} < 6) {
2039 printf(" (<span class=\"atnight\">%02d:%02d</span> %s)", $ad{'hour_local'}, $ad{'minute_local'}, $ad{'tz_local'});
2041 printf(" (%02d:%02d %s)", $ad{'hour_local'}, $ad{'minute_local'}, $ad{'tz_local'});
2045 print "<tr><td>committer</td><td>" . esc_html
($co{'committer'}) . "</td></tr>\n";
2046 print "<tr><td></td><td> $cd{'rfc2822'}" . sprintf(" (%02d:%02d %s)", $cd{'hour_local'}, $cd{'minute_local'}, $cd{'tz_local'}) . "</td></tr>\n";
2047 print "<tr><td>commit</td><td class=\"sha1\">$co{'id'}</td></tr>\n";
2050 "<td class=\"sha1\">" .
2051 $cgi->a({-href
=> "$my_uri?" . esc_param
("p=$project;a=tree;h=$co{'tree'};hb=$hash"), class => "list"}, $co{'tree'}) .
2053 "<td class=\"link\">" . $cgi->a({-href
=> "$my_uri?" . esc_param
("p=$project;a=tree;h=$co{'tree'};hb=$hash")}, "tree") .
2056 my $parents = $co{'parents'};
2057 foreach my $par (@
$parents) {
2060 "<td class=\"sha1\">" . $cgi->a({-href
=> "$my_uri?" . esc_param
("p=$project;a=commit;h=$par"), class => "list"}, $par) . "</td>" .
2061 "<td class=\"link\">" .
2062 $cgi->a({-href
=> "$my_uri?" . esc_param
("p=$project;a=commit;h=$par")}, "commit") .
2063 " | " . $cgi->a({-href
=> "$my_uri?" . esc_param
("p=$project;a=commitdiff;h=$hash;hp=$par")}, "commitdiff") .
2069 print "<div class=\"page_body\">\n";
2070 my $comment = $co{'comment'};
2073 foreach my $line (@
$comment) {
2074 # print only one empty line
2076 if ($empty || $signed) {
2083 if ($line =~ m/^ *(signed[ \-]off[ \-]by[ :]|acked[ \-]by[ :]|cc[ :])/i) {
2085 print "<span class=\"signoff\">" . esc_html
($line) . "</span><br/>\n";
2088 print format_log_line_html
($line) . "<br/>\n";
2092 print "<div class=\"list_head\">\n";
2093 if ($#difftree > 10) {
2094 print(($#difftree + 1) . " files changed:\n");
2097 print "<table class=\"diff_tree\">\n";
2099 foreach my $line (@difftree) {
2100 # ':100644 100644 03b218260e99b78c6df0ed378e59ed9205ccc96d 3b93d5e7cc7f7dd4ebed13a5cc1a4ad976fc94d8 M ls-files.c'
2101 # ':100644 100644 7f9281985086971d3877aca27704f2aaf9c448ce bc190ebc71bbd923f2b728e505408f5e54bd073a M rev-tree.c'
2102 if ($line !~ m/^:([0-7]{6}) ([0-7]{6}) ([0-9a-fA-F]{40}) ([0-9a-fA-F]{40}) (.)([0-9]{0,3})\t(.*)$/) {
2110 my $similarity = $6;
2111 my $file = validate_input
(unquote
($7));
2113 print "<tr class=\"dark\">\n";
2115 print "<tr class=\"light\">\n";
2118 if ($status eq "A") {
2120 if (S_ISREG
(oct $to_mode)) {
2121 $mode_chng = sprintf(" with mode: %04o", (oct $to_mode) & 0777);
2124 $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" .
2125 "<td><span class=\"file_status new\">[new " . file_type
($to_mode) . "$mode_chng]</span></td>\n" .
2126 "<td class=\"link\">" . $cgi->a({-href
=> "$my_uri?" . esc_param
("p=$project;a=blob;h=$to_id;hb=$hash;f=$file")}, "blob") . "</td>\n";
2127 } elsif ($status eq "D") {
2129 $cgi->a({-href
=> "$my_uri?" . esc_param
("p=$project;a=blob;h=$from_id;hb=$parent;f=$file"), -class => "list"}, esc_html
($file)) . "</td>\n" .
2130 "<td><span class=\"file_status deleted\">[deleted " . file_type
($from_mode). "]</span></td>\n" .
2131 "<td class=\"link\">" .
2132 $cgi->a({-href
=> "$my_uri?" . esc_param
("p=$project;a=blob;h=$from_id;hb=$parent;f=$file")}, "blob") .
2133 " | " . $cgi->a({-href
=> "$my_uri?" . esc_param
("p=$project;a=history;hb=$parent;f=$file")}, "history") .
2135 } elsif ($status eq "M" || $status eq "T") {
2136 my $mode_chnge = "";
2137 if ($from_mode != $to_mode) {
2138 $mode_chnge = " <span class=\"file_status mode_chnge\">[changed";
2139 if (((oct $from_mode) & S_IFMT
) != ((oct $to_mode) & S_IFMT
)) {
2140 $mode_chnge .= " from " . file_type
($from_mode) . " to " . file_type
($to_mode);
2142 if (((oct $from_mode) & 0777) != ((oct $to_mode) & 0777)) {
2143 if (S_ISREG
($from_mode) && S_ISREG
($to_mode)) {
2144 $mode_chnge .= sprintf(" mode: %04o->%04o", (oct $from_mode) & 0777, (oct $to_mode) & 0777);
2145 } elsif (S_ISREG
($to_mode)) {
2146 $mode_chnge .= sprintf(" mode: %04o", (oct $to_mode) & 0777);
2149 $mode_chnge .= "]</span>\n";
2152 if ($to_id ne $from_id) {
2153 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));
2155 print $cgi->a({-href
=> "$my_uri?" . esc_param
("p=$project;a=blob;h=$to_id;hb=$hash;f=$file"), -class => "list"}, esc_html
($file));
2158 "<td>$mode_chnge</td>\n" .
2159 "<td class=\"link\">";
2160 print $cgi->a({-href
=> "$my_uri?" . esc_param
("p=$project;a=blob;h=$to_id;hb=$hash;f=$file")}, "blob");
2161 if ($to_id ne $from_id) {
2162 print " | " . $cgi->a({-href
=> "$my_uri?" . esc_param
("p=$project;a=blobdiff;h=$to_id;hp=$from_id;hb=$hash;f=$file")}, "diff");
2164 print " | " . $cgi->a({-href
=> "$my_uri?" . esc_param
("p=$project;a=history;hb=$hash;f=$file")}, "history") . "\n";
2166 } elsif ($status eq "R") {
2167 my ($from_file, $to_file) = split "\t", $file;
2169 if ($from_mode != $to_mode) {
2170 $mode_chng = sprintf(", mode: %04o", (oct $to_mode) & 0777);
2173 $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" .
2174 "<td><span class=\"file_status moved\">[moved from " .
2175 $cgi->a({-href
=> "$my_uri?" . esc_param
("p=$project;a=blob;h=$from_id;hb=$parent;f=$from_file"), -class => "list"}, esc_html
($from_file)) .
2176 " with " . (int $similarity) . "% similarity$mode_chng]</span></td>\n" .
2177 "<td class=\"link\">" .
2178 $cgi->a({-href
=> "$my_uri?" . esc_param
("p=$project;a=blob;h=$to_id;hb=$hash;f=$to_file")}, "blob");
2179 if ($to_id ne $from_id) {
2180 print " | " . $cgi->a({-href
=> "$my_uri?" . esc_param
("p=$project;a=blobdiff;h=$to_id;hp=$from_id;hb=$hash;f=$to_file")}, "diff");
2191 mkdir($git_temp, 0700);
2193 if (defined $hash_base && (my %co = parse_commit
($hash_base))) {
2195 $cgi->a({-href
=> "$my_uri?" . esc_param
("p=$project;a=blobdiff_plain;h=$hash;hp=$hash_parent")}, "plain");
2196 git_print_page_nav
('','', $hash_base,$co{'tree'},$hash_base, $formats_nav);
2197 git_print_header_div
('commit', esc_html
($co{'title'}), $hash_base);
2199 print "<div class=\"page_nav\">\n" .
2200 "<br/><br/></div>\n" .
2201 "<div class=\"title\">$hash vs $hash_parent</div>\n";
2203 git_print_page_path
($file_name, "blob");
2204 print "<div class=\"page_body\">\n" .
2205 "<div class=\"diff_info\">blob:" .
2206 $cgi->a({-href
=> "$my_uri?" . esc_param
("p=$project;a=blob;h=$hash_parent;hb=$hash_base;f=$file_name")}, $hash_parent) .
2208 $cgi->a({-href
=> "$my_uri?" . esc_param
("p=$project;a=blob;h=$hash;hb=$hash_base;f=$file_name")}, $hash) .
2210 git_diff_print
($hash_parent, $file_name || $hash_parent, $hash, $file_name || $hash);
2215 sub git_blobdiff_plain
{
2216 mkdir($git_temp, 0700);
2217 print $cgi->header(-type
=> "text/plain", -charset
=> 'utf-8');
2218 git_diff_print
($hash_parent, $file_name || $hash_parent, $hash, $file_name || $hash, "plain");
2221 sub git_commitdiff
{
2222 mkdir($git_temp, 0700);
2223 my %co = parse_commit
($hash);
2225 die_error
(undef, "Unknown commit object");
2227 if (!defined $hash_parent) {
2228 $hash_parent = $co{'parent'} || '--root';
2230 open my $fd, "-|", $GIT, "diff-tree", '-r', $hash_parent, $hash
2231 or die_error
(undef, "Open git-diff-tree failed");
2232 my @difftree = map { chomp; $_ } <$fd>;
2233 close $fd or die_error
(undef, "Reading git-diff-tree failed");
2235 # non-textual hash id's can be cached
2237 if ($hash =~ m/^[0-9a-fA-F]{40}$/) {
2240 my $refs = git_get_references
();
2241 my $ref = format_ref_marker
($refs, $co{'id'});
2243 $cgi->a({-href
=> "$my_uri?" . esc_param
("p=$project;a=commitdiff_plain;h=$hash;hp=$hash_parent")}, "plain");
2244 git_header_html
(undef, $expires);
2245 git_print_page_nav
('commitdiff','', $hash,$co{'tree'},$hash, $formats_nav);
2246 git_print_header_div
('commit', esc_html
($co{'title'}) . $ref, $hash);
2247 print "<div class=\"page_body\">\n";
2248 my $comment = $co{'comment'};
2251 my @log = @
$comment;
2252 # remove first and empty lines after that
2254 while (defined $log[0] && $log[0] eq "") {
2257 foreach my $line (@log) {
2258 if ($line =~ m/^ *(signed[ \-]off[ \-]by[ :]|acked[ \-]by[ :]|cc[ :])/i) {
2269 print format_log_line_html
($line) . "<br/>\n";
2272 foreach my $line (@difftree) {
2273 # ':100644 100644 03b218260e99b78c6df0ed378e59ed9205ccc96d 3b93d5e7cc7f7dd4ebed13a5cc1a4ad976fc94d8 M ls-files.c'
2274 # ':100644 100644 7f9281985086971d3877aca27704f2aaf9c448ce bc190ebc71bbd923f2b728e505408f5e54bd073a M rev-tree.c'
2275 if ($line !~ m/^:([0-7]{6}) ([0-7]{6}) ([0-9a-fA-F]{40}) ([0-9a-fA-F]{40}) (.)\t(.*)$/) {
2283 my $file = validate_input
(unquote
($6));
2284 if ($status eq "A") {
2285 print "<div class=\"diff_info\">" . file_type
($to_mode) . ":" .
2286 $cgi->a({-href
=> "$my_uri?" . esc_param
("p=$project;a=blob;h=$to_id;hb=$hash;f=$file")}, $to_id) . "(new)" .
2288 git_diff_print
(undef, "/dev/null", $to_id, "b/$file");
2289 } elsif ($status eq "D") {
2290 print "<div class=\"diff_info\">" . file_type
($from_mode) . ":" .
2291 $cgi->a({-href
=> "$my_uri?" . esc_param
("p=$project;a=blob;h=$from_id;hb=$hash_parent;f=$file")}, $from_id) . "(deleted)" .
2293 git_diff_print
($from_id, "a/$file", undef, "/dev/null");
2294 } elsif ($status eq "M") {
2295 if ($from_id ne $to_id) {
2296 print "<div class=\"diff_info\">" .
2297 file_type
($from_mode) . ":" .
2298 $cgi->a({-href
=> "$my_uri?" . esc_param
("p=$project;a=blob;h=$from_id;hb=$hash_parent;f=$file")}, $from_id) .
2300 file_type
($to_mode) . ":" .
2301 $cgi->a({-href
=> "$my_uri?" . esc_param
("p=$project;a=blob;h=$to_id;hb=$hash;f=$file")}, $to_id);
2303 git_diff_print
($from_id, "a/$file", $to_id, "b/$file");
2312 sub git_commitdiff_plain
{
2313 mkdir($git_temp, 0700);
2314 my %co = parse_commit
($hash);
2316 die_error
(undef, "Unknown commit object");
2318 if (!defined $hash_parent) {
2319 $hash_parent = $co{'parent'} || '--root';
2321 open my $fd, "-|", $GIT, "diff-tree", '-r', $hash_parent, $hash
2322 or die_error
(undef, "Open git-diff-tree failed");
2323 my @difftree = map { chomp; $_ } <$fd>;
2324 close $fd or die_error
(undef, "Reading diff-tree failed");
2326 # try to figure out the next tag after this commit
2328 my $refs = git_get_references
("tags");
2329 open $fd, "-|", $GIT, "rev-list", "HEAD";
2330 my @commits = map { chomp; $_ } <$fd>;
2332 foreach my $commit (@commits) {
2333 if (defined $refs->{$commit}) {
2334 $tagname = $refs->{$commit}
2336 if ($commit eq $hash) {
2341 print $cgi->header(-type
=> "text/plain", -charset
=> 'utf-8', '-content-disposition' => "inline; filename=\"git-$hash.patch\"");
2342 my %ad = parse_date
($co{'author_epoch'}, $co{'author_tz'});
2343 my $comment = $co{'comment'};
2344 print "From: $co{'author'}\n" .
2345 "Date: $ad{'rfc2822'} ($ad{'tz_local'})\n".
2346 "Subject: $co{'title'}\n";
2347 if (defined $tagname) {
2348 print "X-Git-Tag: $tagname\n";
2350 print "X-Git-Url: $my_url?p=$project;a=commitdiff;h=$hash\n" .
2353 foreach my $line (@
$comment) {;
2358 foreach my $line (@difftree) {
2359 if ($line !~ m/^:([0-7]{6}) ([0-7]{6}) ([0-9a-fA-F]{40}) ([0-9a-fA-F]{40}) (.)\t(.*)$/) {
2366 if ($status eq "A") {
2367 git_diff_print
(undef, "/dev/null", $to_id, "b/$file", "plain");
2368 } elsif ($status eq "D") {
2369 git_diff_print
($from_id, "a/$file", undef, "/dev/null", "plain");
2370 } elsif ($status eq "M") {
2371 git_diff_print
($from_id, "a/$file", $to_id, "b/$file", "plain");
2377 if (!defined $hash_base) {
2378 $hash_base = git_get_head_hash
($project);
2381 my %co = parse_commit
($hash_base);
2383 die_error
(undef, "Unknown commit object");
2385 my $refs = git_get_references
();
2387 git_print_page_nav
('','', $hash_base,$co{'tree'},$hash_base);
2388 git_print_header_div
('commit', esc_html
($co{'title'}), $hash_base);
2389 if (!defined $hash && defined $file_name) {
2390 $hash = git_get_hash_by_path
($hash_base, $file_name);
2392 if (defined $hash) {
2393 $ftype = git_get_type
($hash);
2395 git_print_page_path
($file_name, $ftype);
2398 $GIT, "rev-list", "--full-history", $hash_base, "--", $file_name;
2399 git_history_body
($fd, $refs, $hash_base, $ftype);
2406 if (!defined $searchtext) {
2407 die_error
(undef, "Text field empty");
2409 if (!defined $hash) {
2410 $hash = git_get_head_hash
($project);
2412 my %co = parse_commit
($hash);
2414 die_error
(undef, "Unknown commit object");
2416 # pickaxe may take all resources of your box and run for several minutes
2417 # with every query - so decide by yourself how public you make this feature :)
2418 my $commit_search = 1;
2419 my $author_search = 0;
2420 my $committer_search = 0;
2421 my $pickaxe_search = 0;
2422 if ($searchtext =~ s/^author\\://i) {
2424 } elsif ($searchtext =~ s/^committer\\://i) {
2425 $committer_search = 1;
2426 } elsif ($searchtext =~ s/^pickaxe\\://i) {
2428 $pickaxe_search = 1;
2431 git_print_page_nav
('','', $hash,$co{'tree'},$hash);
2432 git_print_header_div
('commit', esc_html
($co{'title'}), $hash);
2434 print "<table cellspacing=\"0\">\n";
2436 if ($commit_search) {
2438 open my $fd, "-|", $GIT, "rev-list", "--header", "--parents", $hash or next;
2439 while (my $commit_text = <$fd>) {
2440 if (!grep m/$searchtext/i, $commit_text) {
2443 if ($author_search && !grep m/\nauthor .*$searchtext/i, $commit_text) {
2446 if ($committer_search && !grep m/\ncommitter .*$searchtext/i, $commit_text) {
2449 my @commit_lines = split "\n", $commit_text;
2450 my %co = parse_commit
(undef, \
@commit_lines);
2455 print "<tr class=\"dark\">\n";
2457 print "<tr class=\"light\">\n";
2460 print "<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n" .
2461 "<td><i>" . esc_html
(chop_str
($co{'author_name'}, 15, 5)) . "</i></td>\n" .
2463 $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/>");
2464 my $comment = $co{'comment'};
2465 foreach my $line (@
$comment) {
2466 if ($line =~ m/^(.*)($searchtext)(.*)$/i) {
2467 my $lead = esc_html
($1) || "";
2468 $lead = chop_str
($lead, 30, 10);
2469 my $match = esc_html
($2) || "";
2470 my $trail = esc_html
($3) || "";
2471 $trail = chop_str
($trail, 30, 10);
2472 my $text = "$lead<span class=\"match\">$match</span>$trail";
2473 print chop_str
($text, 80, 5) . "<br/>\n";
2477 "<td class=\"link\">" .
2478 $cgi->a({-href
=> "$my_uri?" . esc_param
("p=$project;a=commit;h=$co{'id'}")}, "commit") .
2479 " | " . $cgi->a({-href
=> "$my_uri?" . esc_param
("p=$project;a=tree;h=$co{'tree'};hb=$co{'id'}")}, "tree");
2486 if ($pickaxe_search) {
2488 open my $fd, "-|", "$GIT rev-list $hash | $GIT diff-tree -r --stdin -S\'$searchtext\'";
2491 while (my $line = <$fd>) {
2492 if (%co && $line =~ m/^:([0-7]{6}) ([0-7]{6}) ([0-9a-fA-F]{40}) ([0-9a-fA-F]{40}) (.)\t(.*)$/) {
2495 $set{'from_id'} = $3;
2497 $set{'id'} = $set{'to_id'};
2498 if ($set{'id'} =~ m/0{40}/) {
2499 $set{'id'} = $set{'from_id'};
2501 if ($set{'id'} =~ m/0{40}/) {
2505 } elsif ($line =~ m/^([0-9a-fA-F]{40})$/){
2508 print "<tr class=\"dark\">\n";
2510 print "<tr class=\"light\">\n";
2513 print "<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n" .
2514 "<td><i>" . esc_html
(chop_str
($co{'author_name'}, 15, 5)) . "</i></td>\n" .
2516 $cgi->a({-href
=> "$my_uri?" . esc_param
("p=$project;a=commit;h=$co{'id'}"), -class => "list"}, "<b>" .
2517 esc_html
(chop_str
($co{'title'}, 50)) . "</b><br/>");
2518 while (my $setref = shift @files) {
2520 print $cgi->a({-href
=> "$my_uri?" . esc_param
("p=$project;a=blob;h=$set{'id'};hb=$co{'id'};f=$set{'file'}"), class => "list"},
2521 "<span class=\"match\">" . esc_html
($set{'file'}) . "</span>") .
2525 "<td class=\"link\">" .
2526 $cgi->a({-href
=> "$my_uri?" . esc_param
("p=$project;a=commit;h=$co{'id'}")}, "commit") .
2527 " | " . $cgi->a({-href
=> "$my_uri?" . esc_param
("p=$project;a=tree;h=$co{'tree'};hb=$co{'id'}")}, "tree");
2531 %co = parse_commit
($1);
2541 my $head = git_get_head_hash
($project);
2542 if (!defined $hash) {
2545 if (!defined $page) {
2548 my $refs = git_get_references
();
2550 my $limit = sprintf("--max-count=%i", (100 * ($page+1)));
2551 open my $fd, "-|", $GIT, "rev-list", $limit, $hash
2552 or die_error
(undef, "Open git-rev-list failed");
2553 my @revlist = map { chomp; $_ } <$fd>;
2556 my $paging_nav = format_paging_nav
('shortlog', $hash, $head, $page, $#revlist);
2558 if ($#revlist >= (100 * ($page+1)-1)) {
2560 $cgi->a({-href
=> "$my_uri?" . esc_param
("p=$project;a=shortlog;h=$hash;pg=" . ($page+1)),
2561 -title
=> "Alt-n"}, "next");
2566 git_print_page_nav
('shortlog','', $hash,$hash,$hash, $paging_nav);
2567 git_print_header_div
('summary', $project);
2569 git_shortlog_body
(\
@revlist, ($page * 100), $#revlist, $refs, $next_link);
2574 ## ......................................................................
2575 ## feeds (RSS, OPML)
2578 # http://www.notestips.com/80256B3A007F2692/1/NAMO5P9UPQ
2579 open my $fd, "-|", $GIT, "rev-list", "--max-count=150", git_get_head_hash
($project)
2580 or die_error
(undef, "Open git-rev-list failed");
2581 my @revlist = map { chomp; $_ } <$fd>;
2582 close $fd or die_error
(undef, "Reading git-rev-list failed");
2583 print $cgi->header(-type
=> 'text/xml', -charset
=> 'utf-8');
2584 print "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n".
2585 "<rss version=\"2.0\" xmlns:content=\"http://purl.org/rss/1.0/modules/content/\">\n";
2586 print "<channel>\n";
2587 print "<title>$project</title>\n".
2588 "<link>" . esc_html
("$my_url?p=$project;a=summary") . "</link>\n".
2589 "<description>$project log</description>\n".
2590 "<language>en</language>\n";
2592 for (my $i = 0; $i <= $#revlist; $i++) {
2593 my $commit = $revlist[$i];
2594 my %co = parse_commit
($commit);
2595 # we read 150, we always show 30 and the ones more recent than 48 hours
2596 if (($i >= 20) && ((time - $co{'committer_epoch'}) > 48*60*60)) {
2599 my %cd = parse_date
($co{'committer_epoch'});
2600 open $fd, "-|", $GIT, "diff-tree", '-r', $co{'parent'}, $co{'id'} or next;
2601 my @difftree = map { chomp; $_ } <$fd>;
2605 sprintf("%d %s %02d:%02d", $cd{'mday'}, $cd{'month'}, $cd{'hour'}, $cd{'minute'}) . " - " . esc_html
($co{'title'}) .
2607 "<author>" . esc_html
($co{'author'}) . "</author>\n" .
2608 "<pubDate>$cd{'rfc2822'}</pubDate>\n" .
2609 "<guid isPermaLink=\"true\">" . esc_html
("$my_url?p=$project;a=commit;h=$commit") . "</guid>\n" .
2610 "<link>" . esc_html
("$my_url?p=$project;a=commit;h=$commit") . "</link>\n" .
2611 "<description>" . esc_html
($co{'title'}) . "</description>\n" .
2612 "<content:encoded>" .
2614 my $comment = $co{'comment'};
2615 foreach my $line (@
$comment) {
2616 $line = decode
("utf8", $line, Encode
::FB_DEFAULT
);
2617 print "$line<br/>\n";
2620 foreach my $line (@difftree) {
2621 if (!($line =~ m/^:([0-7]{6}) ([0-7]{6}) ([0-9a-fA-F]{40}) ([0-9a-fA-F]{40}) (.)([0-9]{0,3})\t(.*)$/)) {
2624 my $file = validate_input
(unquote
($7));
2625 $file = decode
("utf8", $file, Encode
::FB_DEFAULT
);
2626 print "$file<br/>\n";
2629 "</content:encoded>\n" .
2632 print "</channel></rss>";
2636 my @list = git_get_projects_list
();
2638 print $cgi->header(-type
=> 'text/xml', -charset
=> 'utf-8');
2639 print "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n".
2640 "<opml version=\"1.0\">\n".
2642 " <title>$site_name Git OPML Export</title>\n".
2645 "<outline text=\"git RSS feeds\">\n";
2647 foreach my $pr (@list) {
2649 my $head = git_get_head_hash
($proj{'path'});
2650 if (!defined $head) {
2653 $ENV{'GIT_DIR'} = "$projectroot/$proj{'path'}";
2654 my %co = parse_commit
($head);
2659 my $path = esc_html
(chop_str
($proj{'path'}, 25, 5));
2660 my $rss = "$my_url?p=$proj{'path'};a=rss";
2661 my $html = "$my_url?p=$proj{'path'};a=summary";
2662 print "<outline type=\"rss\" text=\"$path\" title=\"$path\" xmlUrl=\"$rss\" htmlUrl=\"$html\"/>\n";
2664 print "</outline>\n".