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 use File
::Basename
qw(basename);
19 binmode STDOUT
, ':utf8';
22 our $version = "++GIT_VERSION++";
23 our $my_url = $cgi->url();
24 our $my_uri = $cgi->url(-absolute
=> 1);
26 # core git executable to use
27 # this can just be "git" if your webserver has a sensible PATH
28 our $GIT = "++GIT_BINDIR++/git";
30 # absolute fs-path which will be prepended to the project path
31 #our $projectroot = "/pub/scm";
32 our $projectroot = "++GITWEB_PROJECTROOT++";
34 # target of the home link on top of all pages
35 our $home_link = $my_uri || "/";
37 # string of the home link on top of all pages
38 our $home_link_str = "++GITWEB_HOME_LINK_STR++";
40 # name of your site or organization to appear in page titles
41 # replace this with something more descriptive for clearer bookmarks
42 our $site_name = "++GITWEB_SITENAME++" || $ENV{'SERVER_NAME'} || "Untitled";
44 # html text to include at home page
45 our $home_text = "++GITWEB_HOMETEXT++";
47 # URI of default stylesheet
48 our $stylesheet = "++GITWEB_CSS++";
50 our $logo = "++GITWEB_LOGO++";
51 # URI of GIT favicon, assumed to be image/png type
52 our $favicon = "++GITWEB_FAVICON++";
54 # source of projects list
55 our $projects_list = "++GITWEB_LIST++";
57 # show repository only if this file exists
58 # (only effective if this variable evaluates to true)
59 our $export_ok = "++GITWEB_EXPORT_OK++";
61 # only allow viewing of repositories also shown on the overview page
62 our $strict_export = "++GITWEB_STRICT_EXPORT++";
64 # list of git base URLs used for URL to where fetch project from,
65 # i.e. full URL is "$git_base_url/$project"
66 our @git_base_url_list = ("++GITWEB_BASE_URL++");
68 # default blob_plain mimetype and default charset for text/plain blob
69 our $default_blob_plain_mimetype = 'text/plain';
70 our $default_text_plain_charset = undef;
72 # file to use for guessing MIME types before trying /etc/mime.types
73 # (relative to the current git repository)
74 our $mimetypes_file = undef;
76 # You define site-wide feature defaults here; override them with
77 # $GITWEB_CONFIG as necessary.
80 # 'sub' => feature-sub (subroutine),
81 # 'override' => allow-override (boolean),
82 # 'default' => [ default options...] (array reference)}
84 # if feature is overridable (it means that allow-override has true value,
85 # then feature-sub will be called with default options as parameters;
86 # return value of feature-sub indicates if to enable specified feature
88 # use gitweb_check_feature(<feature>) to check if <feature> is enabled
91 'sub' => \
&feature_blame
,
96 'sub' => \
&feature_snapshot
,
98 # => [content-encoding, suffix, program]
99 'default' => ['x-gzip', 'gz', 'gzip']},
102 'sub' => \
&feature_pickaxe
,
107 sub gitweb_check_feature
{
109 return unless exists $feature{$name};
110 my ($sub, $override, @defaults) = (
111 $feature{$name}{'sub'},
112 $feature{$name}{'override'},
113 @
{$feature{$name}{'default'}});
114 if (!$override) { return @defaults; }
115 return $sub->(@defaults);
118 # To enable system wide have in $GITWEB_CONFIG
119 # $feature{'blame'}{'default'} = [1];
120 # To have project specific config enable override in $GITWEB_CONFIG
121 # $feature{'blame'}{'override'} = 1;
122 # and in project config gitweb.blame = 0|1;
125 my ($val) = git_get_project_config
('blame', '--bool');
127 if ($val eq 'true') {
129 } elsif ($val eq 'false') {
136 # To disable system wide have in $GITWEB_CONFIG
137 # $feature{'snapshot'}{'default'} = [undef];
138 # To have project specific config enable override in $GITWEB_CONFIG
139 # $feature{'blame'}{'override'} = 1;
140 # and in project config gitweb.snapshot = none|gzip|bzip2
142 sub feature_snapshot
{
143 my ($ctype, $suffix, $command) = @_;
145 my ($val) = git_get_project_config
('snapshot');
147 if ($val eq 'gzip') {
148 return ('x-gzip', 'gz', 'gzip');
149 } elsif ($val eq 'bzip2') {
150 return ('x-bzip2', 'bz2', 'bzip2');
151 } elsif ($val eq 'none') {
155 return ($ctype, $suffix, $command);
158 sub gitweb_have_snapshot
{
159 my ($ctype, $suffix, $command) = gitweb_check_feature
('snapshot');
160 my $have_snapshot = (defined $ctype && defined $suffix);
162 return $have_snapshot;
165 # To enable system wide have in $GITWEB_CONFIG
166 # $feature{'pickaxe'}{'default'} = [1];
167 # To have project specific config enable override in $GITWEB_CONFIG
168 # $feature{'pickaxe'}{'override'} = 1;
169 # and in project config gitweb.pickaxe = 0|1;
171 sub feature_pickaxe
{
172 my ($val) = git_get_project_config
('pickaxe', '--bool');
174 if ($val eq 'true') {
176 } elsif ($val eq 'false') {
183 # rename detection options for git-diff and git-diff-tree
184 # - default is '-M', with the cost proportional to
185 # (number of removed files) * (number of new files).
186 # - more costly is '-C' (or '-C', '-M'), with the cost proportional to
187 # (number of changed files + number of removed files) * (number of new files)
188 # - even more costly is '-C', '--find-copies-harder' with cost
189 # (number of files in the original tree) * (number of new files)
190 # - one might want to include '-B' option, e.g. '-B', '-M'
191 our @diff_opts = ('-M'); # taken from git_commit
193 our $GITWEB_CONFIG = $ENV{'GITWEB_CONFIG'} || "++GITWEB_CONFIG++";
194 do $GITWEB_CONFIG if -e
$GITWEB_CONFIG;
196 # version of the core git binary
197 our $git_version = qx($GIT --version
) =~ m/git version (.*)$/ ?
$1 : "unknown";
199 $projects_list ||= $projectroot;
201 # ======================================================================
202 # input validation and dispatch
203 our $action = $cgi->param('a');
204 if (defined $action) {
205 if ($action =~ m/[^0-9a-zA-Z\.\-_]/) {
206 die_error
(undef, "Invalid action parameter");
210 # parameters which are pathnames
211 our $project = $cgi->param('p');
212 if (defined $project) {
213 if (!validate_pathname
($project) ||
214 !(-d
"$projectroot/$project") ||
215 !(-e
"$projectroot/$project/HEAD") ||
216 ($export_ok && !(-e
"$projectroot/$project/$export_ok")) ||
217 ($strict_export && !project_in_list
($project))) {
219 die_error
(undef, "No such project");
223 our $file_name = $cgi->param('f');
224 if (defined $file_name) {
225 if (!validate_pathname
($file_name)) {
226 die_error
(undef, "Invalid file parameter");
230 our $file_parent = $cgi->param('fp');
231 if (defined $file_parent) {
232 if (!validate_pathname
($file_parent)) {
233 die_error
(undef, "Invalid file parent parameter");
237 # parameters which are refnames
238 our $hash = $cgi->param('h');
240 if (!validate_refname
($hash)) {
241 die_error
(undef, "Invalid hash parameter");
245 our $hash_parent = $cgi->param('hp');
246 if (defined $hash_parent) {
247 if (!validate_refname
($hash_parent)) {
248 die_error
(undef, "Invalid hash parent parameter");
252 our $hash_base = $cgi->param('hb');
253 if (defined $hash_base) {
254 if (!validate_refname
($hash_base)) {
255 die_error
(undef, "Invalid hash base parameter");
259 our $hash_parent_base = $cgi->param('hpb');
260 if (defined $hash_parent_base) {
261 if (!validate_refname
($hash_parent_base)) {
262 die_error
(undef, "Invalid hash parent base parameter");
267 our $page = $cgi->param('pg');
269 if ($page =~ m/[^0-9]/) {
270 die_error
(undef, "Invalid page parameter");
274 our $searchtext = $cgi->param('s');
275 if (defined $searchtext) {
276 if ($searchtext =~ m/[^a-zA-Z0-9_\.\/\
-\
+\
:\@
]/) {
277 die_error
(undef, "Invalid search parameter");
279 $searchtext = quotemeta $searchtext;
282 # now read PATH_INFO and use it as alternative to parameters
283 sub evaluate_path_info
{
284 return if defined $project;
285 my $path_info = $ENV{"PATH_INFO"};
286 return if !$path_info;
287 $path_info =~ s
,^/+,,;
288 return if !$path_info;
289 # find which part of PATH_INFO is project
290 $project = $path_info;
292 while ($project && !-e
"$projectroot/$project/HEAD") {
293 $project =~ s
,/*[^/]*$,,;
296 $project = validate_pathname
($project);
298 ($export_ok && !-e
"$projectroot/$project/$export_ok") ||
299 ($strict_export && !project_in_list
($project))) {
303 # do not change any parameters if an action is given using the query string
305 $path_info =~ s
,^$project/*,,;
306 my ($refname, $pathname) = split(/:/, $path_info, 2);
307 if (defined $pathname) {
308 # we got "project.git/branch:filename" or "project.git/branch:dir/"
309 # we could use git_get_type(branch:pathname), but it needs $git_dir
310 $pathname =~ s
,^/+,,;
311 if (!$pathname || substr($pathname, -1) eq "/") {
315 $action ||= "blob_plain";
317 $hash_base ||= validate_refname
($refname);
318 $file_name ||= validate_pathname
($pathname);
319 } elsif (defined $refname) {
320 # we got "project.git/branch"
321 $action ||= "shortlog";
322 $hash ||= validate_refname
($refname);
325 evaluate_path_info
();
327 # path to the current git repository
329 $git_dir = "$projectroot/$project" if $project;
333 "blame" => \
&git_blame2
,
334 "blobdiff" => \
&git_blobdiff
,
335 "blobdiff_plain" => \
&git_blobdiff_plain
,
336 "blob" => \
&git_blob
,
337 "blob_plain" => \
&git_blob_plain
,
338 "commitdiff" => \
&git_commitdiff
,
339 "commitdiff_plain" => \
&git_commitdiff_plain
,
340 "commit" => \
&git_commit
,
341 "heads" => \
&git_heads
,
342 "history" => \
&git_history
,
345 "search" => \
&git_search
,
346 "shortlog" => \
&git_shortlog
,
347 "summary" => \
&git_summary
,
349 "tags" => \
&git_tags
,
350 "tree" => \
&git_tree
,
351 "snapshot" => \
&git_snapshot
,
352 # those below don't need $project
353 "opml" => \
&git_opml
,
354 "project_list" => \
&git_project_list
,
355 "project_index" => \
&git_project_index
,
358 if (defined $project) {
359 $action ||= 'summary';
361 $action ||= 'project_list';
363 if (!defined($actions{$action})) {
364 die_error
(undef, "Unknown action");
366 if ($action !~ m/^(opml|project_list|project_index)$/ &&
368 die_error
(undef, "Project needed");
370 $actions{$action}->();
373 ## ======================================================================
387 hash_parent_base
=> "hpb",
392 my %mapping = @mapping;
394 $params{'project'} = $project unless exists $params{'project'};
397 for (my $i = 0; $i < @mapping; $i += 2) {
398 my ($name, $symbol) = ($mapping[$i], $mapping[$i+1]);
399 if (defined $params{$name}) {
400 push @result, $symbol . "=" . esc_param
($params{$name});
403 return "$my_uri?" . join(';', @result);
407 ## ======================================================================
408 ## validation, quoting/unquoting and escaping
410 sub validate_pathname
{
411 my $input = shift || return undef;
413 # no '.' or '..' as elements of path, i.e. no '.' nor '..'
414 # at the beginning, at the end, and between slashes.
415 # also this catches doubled slashes
416 if ($input =~ m!(^|/)(|\.|\.\.)(/|$)!) {
420 if ($input =~ m!\0!) {
426 sub validate_refname
{
427 my $input = shift || return undef;
429 # textual hashes are O.K.
430 if ($input =~ m/^[0-9a-fA-F]{40}$/) {
433 # it must be correct pathname
434 $input = validate_pathname
($input)
436 # restrictions on ref name according to git-check-ref-format
437 if ($input =~ m!(/\.|\.\.|[\000-\040\177 ~^:?*\[]|/$)!) {
443 # quote unsafe chars, but keep the slash, even when it's not
444 # correct, but quoted slashes look too horrible in bookmarks
447 $str =~ s/([^A-Za-z0-9\-_.~()\/:@])/sprintf
("%%%02X", ord($1))/eg
;
453 # quote unsafe chars in whole URL, so some charactrs cannot be quoted
456 $str =~ s/([^A-Za-z0-9\-_.~();\/;?:@&=])/sprintf
("%%%02X", ord($1))/eg
;
462 # replace invalid utf8 character with SUBSTITUTION sequence
465 $str = decode
("utf8", $str, Encode
::FB_DEFAULT
);
466 $str = escapeHTML
($str);
467 $str =~ s/\014/^L/g; # escape FORM FEED (FF) character (e.g. in COPYING file)
468 $str =~ s/\033/^[/g; # "escape" ESCAPE (\e) character (e.g. commit 20a3847d8a5032ce41f90dcc68abfb36e6fee9b1)
472 # git may return quoted and escaped filenames
475 if ($str =~ m/^"(.*)"$/) {
477 $str =~ s/\\([0-7]{1,3})/chr(oct($1))/eg;
482 # escape tabs (convert tabs to spaces)
486 while ((my $pos = index($line, "\t")) != -1) {
487 if (my $count = (8 - ($pos % 8))) {
488 my $spaces = ' ' x
$count;
489 $line =~ s/\t/$spaces/;
496 sub project_in_list
{
498 my @list = git_get_projects_list
();
499 return @list && scalar(grep { $_->{'path'} eq $project } @list);
502 ## ----------------------------------------------------------------------
503 ## HTML aware string manipulation
508 my $add_len = shift || 10;
510 # allow only $len chars, but don't cut a word if it would fit in $add_len
511 # if it doesn't fit, cut it if it's still longer than the dots we would add
512 $str =~ m/^(.{0,$len}[^ \/\
-_
:\
.@
]{0,$add_len})(.*)/;
515 if (length($tail) > 4) {
517 $body =~ s/&[^;]*$//; # remove chopped character entities
522 ## ----------------------------------------------------------------------
523 ## functions returning short strings
525 # CSS class for given age value (in seconds)
529 if ($age < 60*60*2) {
531 } elsif ($age < 60*60*24*2) {
538 # convert age in seconds to "nn units ago" string
543 if ($age > 60*60*24*365*2) {
544 $age_str = (int $age/60/60/24/365);
545 $age_str .= " years ago";
546 } elsif ($age > 60*60*24*(365/12)*2) {
547 $age_str = int $age/60/60/24/(365/12);
548 $age_str .= " months ago";
549 } elsif ($age > 60*60*24*7*2) {
550 $age_str = int $age/60/60/24/7;
551 $age_str .= " weeks ago";
552 } elsif ($age > 60*60*24*2) {
553 $age_str = int $age/60/60/24;
554 $age_str .= " days ago";
555 } elsif ($age > 60*60*2) {
556 $age_str = int $age/60/60;
557 $age_str .= " hours ago";
558 } elsif ($age > 60*2) {
559 $age_str = int $age/60;
560 $age_str .= " min ago";
563 $age_str .= " sec ago";
565 $age_str .= " right now";
570 # convert file mode in octal to symbolic file mode string
572 my $mode = oct shift;
574 if (S_ISDIR
($mode & S_IFMT
)) {
576 } elsif (S_ISLNK
($mode)) {
578 } elsif (S_ISREG
($mode)) {
579 # git cares only about the executable bit
580 if ($mode & S_IXUSR
) {
590 # convert file mode in octal to file type string
594 if ($mode !~ m/^[0-7]+$/) {
600 if (S_ISDIR
($mode & S_IFMT
)) {
602 } elsif (S_ISLNK
($mode)) {
604 } elsif (S_ISREG
($mode)) {
611 ## ----------------------------------------------------------------------
612 ## functions returning short HTML fragments, or transforming HTML fragments
613 ## which don't beling to other sections
615 # format line of commit message or tag comment
616 sub format_log_line_html
{
619 $line = esc_html
($line);
620 $line =~ s/ / /g;
621 if ($line =~ m/([0-9a-fA-F]{40})/) {
623 if (git_get_type
($hash_text) eq "commit") {
625 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$hash_text),
626 -class => "text"}, $hash_text);
627 $line =~ s/$hash_text/$link/;
633 # format marker of refs pointing to given object
634 sub format_ref_marker
{
635 my ($refs, $id) = @_;
638 if (defined $refs->{$id}) {
639 foreach my $ref (@
{$refs->{$id}}) {
640 my ($type, $name) = qw();
641 # e.g. tags/v2.6.11 or heads/next
642 if ($ref =~ m!^(.*?)s?/(.*)$!) {
650 $markers .= " <span class=\"$type\">" . esc_html
($name) . "</span>";
655 return ' <span class="refs">'. $markers . '</span>';
661 # format, perhaps shortened and with markers, title line
662 sub format_subject_html
{
663 my ($long, $short, $href, $extra) = @_;
664 $extra = '' unless defined($extra);
666 if (length($short) < length($long)) {
667 return $cgi->a({-href
=> $href, -class => "list subject",
668 -title
=> decode
("utf8", $long, Encode
::FB_DEFAULT
)},
669 esc_html
($short) . $extra);
671 return $cgi->a({-href
=> $href, -class => "list subject"},
672 esc_html
($long) . $extra);
676 sub format_diff_line
{
678 my $char = substr($line, 0, 1);
684 $diff_class = " add";
685 } elsif ($char eq "-") {
686 $diff_class = " rem";
687 } elsif ($char eq "@") {
688 $diff_class = " chunk_header";
689 } elsif ($char eq "\\") {
690 $diff_class = " incomplete";
692 $line = untabify
($line);
693 return "<div class=\"diff$diff_class\">" . esc_html
($line) . "</div>\n";
696 ## ----------------------------------------------------------------------
697 ## git utility subroutines, invoking git commands
699 # returns path to the core git executable and the --git-dir parameter as list
701 return $GIT, '--git-dir='.$git_dir;
704 # returns path to the core git executable and the --git-dir parameter as string
706 return join(' ', git_cmd
());
709 # get HEAD ref of given project as hash
710 sub git_get_head_hash
{
712 my $o_git_dir = $git_dir;
714 $git_dir = "$projectroot/$project";
715 if (open my $fd, "-|", git_cmd
(), "rev-parse", "--verify", "HEAD") {
718 if (defined $head && $head =~ /^([0-9a-fA-F]{40})$/) {
722 if (defined $o_git_dir) {
723 $git_dir = $o_git_dir;
728 # get type of given object
732 open my $fd, "-|", git_cmd
(), "cat-file", '-t', $hash or return;
739 sub git_get_project_config
{
740 my ($key, $type) = @_;
742 return unless ($key);
743 $key =~ s/^gitweb\.//;
744 return if ($key =~ m/\W/);
746 my @x = (git_cmd
(), 'repo-config');
747 if (defined $type) { push @x, $type; }
749 push @x, "gitweb.$key";
755 # get hash of given path at given ref
756 sub git_get_hash_by_path
{
758 my $path = shift || return undef;
763 open my $fd, "-|", git_cmd
(), "ls-tree", $base, "--", $path
764 or die_error
(undef, "Open git-ls-tree failed");
766 close $fd or return undef;
768 #'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'
769 $line =~ m/^([0-9]+) (.+) ([0-9a-fA-F]{40})\t(.+)$/;
770 if (defined $type && $type ne $2) {
777 ## ......................................................................
778 ## git utility functions, directly accessing git repository
780 sub git_get_project_description
{
783 open my $fd, "$projectroot/$path/description" or return undef;
790 sub git_get_project_url_list
{
793 open my $fd, "$projectroot/$path/cloneurl" or return;
794 my @git_project_url_list = map { chomp; $_ } <$fd>;
797 return wantarray ?
@git_project_url_list : \
@git_project_url_list;
800 sub git_get_projects_list
{
803 if (-d
$projects_list) {
804 # search in directory
805 my $dir = $projects_list;
806 my $pfxlen = length("$dir");
809 follow_fast
=> 1, # follow symbolic links
810 dangling_symlinks
=> 0, # ignore dangling symlinks, silently
812 # skip project-list toplevel, if we get it.
813 return if (m!^[/.]$!);
814 # only directories can be git repositories
815 return unless (-d
$_);
817 my $subdir = substr($File::Find
::name
, $pfxlen + 1);
818 # we check related file in $projectroot
819 if (-e
"$projectroot/$subdir/HEAD" && (!$export_ok ||
820 -e
"$projectroot/$subdir/$export_ok")) {
821 push @list, { path
=> $subdir };
822 $File::Find
::prune
= 1;
827 } elsif (-f
$projects_list) {
828 # read from file(url-encoded):
829 # 'git%2Fgit.git Linus+Torvalds'
830 # 'libs%2Fklibc%2Fklibc.git H.+Peter+Anvin'
831 # 'linux%2Fhotplug%2Fudev.git Greg+Kroah-Hartman'
832 open my ($fd), $projects_list or return;
833 while (my $line = <$fd>) {
835 my ($path, $owner) = split ' ', $line;
836 $path = unescape
($path);
837 $owner = unescape
($owner);
838 if (!defined $path) {
841 if (-e
"$projectroot/$path/HEAD" && (!$export_ok ||
842 -e
"$projectroot/$path/$export_ok")) {
845 owner
=> decode
("utf8", $owner, Encode
::FB_DEFAULT
),
852 @list = sort {$a->{'path'} cmp $b->{'path'}} @list;
856 sub git_get_project_owner
{
860 return undef unless $project;
862 # read from file (url-encoded):
863 # 'git%2Fgit.git Linus+Torvalds'
864 # 'libs%2Fklibc%2Fklibc.git H.+Peter+Anvin'
865 # 'linux%2Fhotplug%2Fudev.git Greg+Kroah-Hartman'
866 if (-f
$projects_list) {
867 open (my $fd , $projects_list);
868 while (my $line = <$fd>) {
870 my ($pr, $ow) = split ' ', $line;
873 if ($pr eq $project) {
874 $owner = decode
("utf8", $ow, Encode
::FB_DEFAULT
);
880 if (!defined $owner) {
881 $owner = get_file_owner
("$projectroot/$project");
887 sub git_get_references
{
888 my $type = shift || "";
890 # 5dc01c595e6c6ec9ccda4f6f69c131c0dd945f8c refs/tags/v2.6.11
891 # c39ae07f393806ccf406ef966e9a15afc43cc36a refs/tags/v2.6.11^{}
892 open my $fd, "-|", $GIT, "peek-remote", "$projectroot/$project/"
895 while (my $line = <$fd>) {
897 if ($line =~ m/^([0-9a-fA-F]{40})\trefs\/($type\
/?[^\^]+)/) {
898 if (defined $refs{$1}) {
899 push @
{$refs{$1}}, $2;
909 sub git_get_rev_name_tags
{
910 my $hash = shift || return undef;
912 open my $fd, "-|", git_cmd
(), "name-rev", "--tags", $hash
914 my $name_rev = <$fd>;
917 if ($name_rev =~ m
|^$hash tags
/(.*)$|) {
920 # catches also '$hash undefined' output
925 ## ----------------------------------------------------------------------
926 ## parse to hash functions
930 my $tz = shift || "-0000";
933 my @months = ("Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec");
934 my @days = ("Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat");
935 my ($sec, $min, $hour, $mday, $mon, $year, $wday, $yday) = gmtime($epoch);
936 $date{'hour'} = $hour;
937 $date{'minute'} = $min;
938 $date{'mday'} = $mday;
939 $date{'day'} = $days[$wday];
940 $date{'month'} = $months[$mon];
941 $date{'rfc2822'} = sprintf "%s, %d %s %4d %02d:%02d:%02d +0000",
942 $days[$wday], $mday, $months[$mon], 1900+$year, $hour ,$min, $sec;
943 $date{'mday-time'} = sprintf "%d %s %02d:%02d",
944 $mday, $months[$mon], $hour ,$min;
946 $tz =~ m/^([+\-][0-9][0-9])([0-9][0-9])$/;
947 my $local = $epoch + ((int $1 + ($2/60)) * 3600);
948 ($sec, $min, $hour, $mday, $mon, $year, $wday, $yday) = gmtime($local);
949 $date{'hour_local'} = $hour;
950 $date{'minute_local'} = $min;
951 $date{'tz_local'} = $tz;
960 open my $fd, "-|", git_cmd
(), "cat-file", "tag", $tag_id or return;
961 $tag{'id'} = $tag_id;
962 while (my $line = <$fd>) {
964 if ($line =~ m/^object ([0-9a-fA-F]{40})$/) {
966 } elsif ($line =~ m/^type (.+)$/) {
968 } elsif ($line =~ m/^tag (.+)$/) {
970 } elsif ($line =~ m/^tagger (.*) ([0-9]+) (.*)$/) {
974 } elsif ($line =~ m/--BEGIN/) {
975 push @comment, $line;
977 } elsif ($line eq "") {
981 push @comment, <$fd>;
982 $tag{'comment'} = \
@comment;
984 if (!defined $tag{'name'}) {
991 my $commit_id = shift;
992 my $commit_text = shift;
997 if (defined $commit_text) {
998 @commit_lines = @
$commit_text;
1001 open my $fd, "-|", git_cmd
(), "rev-list", "--header", "--parents", "--max-count=1", $commit_id
1003 @commit_lines = split '\n', <$fd>;
1004 close $fd or return;
1008 my $header = shift @commit_lines;
1009 if (!($header =~ m/^[0-9a-fA-F]{40}/)) {
1012 ($co{'id'}, my @parents) = split ' ', $header;
1013 $co{'parents'} = \
@parents;
1014 $co{'parent'} = $parents[0];
1015 while (my $line = shift @commit_lines) {
1016 last if $line eq "\n";
1017 if ($line =~ m/^tree ([0-9a-fA-F]{40})$/) {
1019 } elsif ($line =~ m/^author (.*) ([0-9]+) (.*)$/) {
1021 $co{'author_epoch'} = $2;
1022 $co{'author_tz'} = $3;
1023 if ($co{'author'} =~ m/^([^<]+) </) {
1024 $co{'author_name'} = $1;
1026 $co{'author_name'} = $co{'author'};
1028 } elsif ($line =~ m/^committer (.*) ([0-9]+) (.*)$/) {
1029 $co{'committer'} = $1;
1030 $co{'committer_epoch'} = $2;
1031 $co{'committer_tz'} = $3;
1032 $co{'committer_name'} = $co{'committer'};
1033 $co{'committer_name'} =~ s/ <.*//;
1036 if (!defined $co{'tree'}) {
1040 foreach my $title (@commit_lines) {
1043 $co{'title'} = chop_str
($title, 80, 5);
1044 # remove leading stuff of merges to make the interesting part visible
1045 if (length($title) > 50) {
1046 $title =~ s/^Automatic //;
1047 $title =~ s/^merge (of|with) /Merge ... /i;
1048 if (length($title) > 50) {
1049 $title =~ s/(http|rsync):\/\///;
1051 if (length($title) > 50) {
1052 $title =~ s/(master|www|rsync)\.//;
1054 if (length($title) > 50) {
1055 $title =~ s/kernel.org:?//;
1057 if (length($title) > 50) {
1058 $title =~ s/\/pub\/scm//;
1061 $co{'title_short'} = chop_str
($title, 50, 5);
1065 # remove added spaces
1066 foreach my $line (@commit_lines) {
1069 $co{'comment'} = \
@commit_lines;
1071 my $age = time - $co{'committer_epoch'};
1073 $co{'age_string'} = age_string
($age);
1074 my ($sec, $min, $hour, $mday, $mon, $year, $wday, $yday) = gmtime($co{'committer_epoch'});
1075 if ($age > 60*60*24*7*2) {
1076 $co{'age_string_date'} = sprintf "%4i-%02u-%02i", 1900 + $year, $mon+1, $mday;
1077 $co{'age_string_age'} = $co{'age_string'};
1079 $co{'age_string_date'} = $co{'age_string'};
1080 $co{'age_string_age'} = sprintf "%4i-%02u-%02i", 1900 + $year, $mon+1, $mday;
1085 # parse ref from ref_file, given by ref_id, with given type
1087 my $ref_file = shift;
1089 my $type = shift || git_get_type
($ref_id);
1092 $ref_item{'type'} = $type;
1093 $ref_item{'id'} = $ref_id;
1094 $ref_item{'epoch'} = 0;
1095 $ref_item{'age'} = "unknown";
1096 if ($type eq "tag") {
1097 my %tag = parse_tag
($ref_id);
1098 $ref_item{'comment'} = $tag{'comment'};
1099 if ($tag{'type'} eq "commit") {
1100 my %co = parse_commit
($tag{'object'});
1101 $ref_item{'epoch'} = $co{'committer_epoch'};
1102 $ref_item{'age'} = $co{'age_string'};
1103 } elsif (defined($tag{'epoch'})) {
1104 my $age = time - $tag{'epoch'};
1105 $ref_item{'epoch'} = $tag{'epoch'};
1106 $ref_item{'age'} = age_string
($age);
1108 $ref_item{'reftype'} = $tag{'type'};
1109 $ref_item{'name'} = $tag{'name'};
1110 $ref_item{'refid'} = $tag{'object'};
1111 } elsif ($type eq "commit"){
1112 my %co = parse_commit
($ref_id);
1113 $ref_item{'reftype'} = "commit";
1114 $ref_item{'name'} = $ref_file;
1115 $ref_item{'title'} = $co{'title'};
1116 $ref_item{'refid'} = $ref_id;
1117 $ref_item{'epoch'} = $co{'committer_epoch'};
1118 $ref_item{'age'} = $co{'age_string'};
1120 $ref_item{'reftype'} = $type;
1121 $ref_item{'name'} = $ref_file;
1122 $ref_item{'refid'} = $ref_id;
1128 # parse line of git-diff-tree "raw" output
1129 sub parse_difftree_raw_line
{
1133 # ':100644 100644 03b218260e99b78c6df0ed378e59ed9205ccc96d 3b93d5e7cc7f7dd4ebed13a5cc1a4ad976fc94d8 M ls-files.c'
1134 # ':100644 100644 7f9281985086971d3877aca27704f2aaf9c448ce bc190ebc71bbd923f2b728e505408f5e54bd073a M rev-tree.c'
1135 if ($line =~ m/^:([0-7]{6}) ([0-7]{6}) ([0-9a-fA-F]{40}) ([0-9a-fA-F]{40}) (.)([0-9]{0,3})\t(.*)$/) {
1136 $res{'from_mode'} = $1;
1137 $res{'to_mode'} = $2;
1138 $res{'from_id'} = $3;
1140 $res{'status'} = $5;
1141 $res{'similarity'} = $6;
1142 if ($res{'status'} eq 'R' || $res{'status'} eq 'C') { # renamed or copied
1143 ($res{'from_file'}, $res{'to_file'}) = map { unquote
($_) } split("\t", $7);
1145 $res{'file'} = unquote
($7);
1148 # 'c512b523472485aef4fff9e57b229d9d243c967f'
1149 elsif ($line =~ m/^([0-9a-fA-F]{40})$/) {
1150 $res{'commit'} = $1;
1153 return wantarray ?
%res : \
%res;
1156 # parse line of git-ls-tree output
1157 sub parse_ls_tree_line
($;%) {
1162 #'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'
1163 $line =~ m/^([0-9]+) (.+) ([0-9a-fA-F]{40})\t(.+)$/;
1171 $res{'name'} = unquote
($4);
1174 return wantarray ?
%res : \
%res;
1177 ## ......................................................................
1178 ## parse to array of hashes functions
1180 sub git_get_refs_list
{
1181 my $type = shift || "";
1186 open my $fd, "-|", $GIT, "peek-remote", "$projectroot/$project/"
1188 while (my $line = <$fd>) {
1190 if ($line =~ m/^([0-9a-fA-F]{40})\trefs\/($type\
/?([^\^]+))(\^\{\})?$/) {
1191 if (defined $refs{$1}) {
1192 push @
{$refs{$1}}, $2;
1197 if (! $4) { # unpeeled, direct reference
1198 push @refs, { hash
=> $1, name
=> $3 }; # without type
1199 } elsif ($3 eq $refs[-1]{'name'}) {
1200 # most likely a tag is followed by its peeled
1201 # (deref) one, and when that happens we know the
1202 # previous one was of type 'tag'.
1203 $refs[-1]{'type'} = "tag";
1209 foreach my $ref (@refs) {
1210 my $ref_file = $ref->{'name'};
1211 my $ref_id = $ref->{'hash'};
1213 my $type = $ref->{'type'} || git_get_type
($ref_id) || next;
1214 my %ref_item = parse_ref
($ref_file, $ref_id, $type);
1216 push @reflist, \
%ref_item;
1219 @reflist = sort {$b->{'epoch'} <=> $a->{'epoch'}} @reflist;
1220 return (\
@reflist, \
%refs);
1223 ## ----------------------------------------------------------------------
1224 ## filesystem-related functions
1226 sub get_file_owner
{
1229 my ($dev, $ino, $mode, $nlink, $st_uid, $st_gid, $rdev, $size) = stat($path);
1230 my ($name, $passwd, $uid, $gid, $quota, $comment, $gcos, $dir, $shell) = getpwuid($st_uid);
1231 if (!defined $gcos) {
1235 $owner =~ s/[,;].*$//;
1236 return decode
("utf8", $owner, Encode
::FB_DEFAULT
);
1239 ## ......................................................................
1240 ## mimetype related functions
1242 sub mimetype_guess_file
{
1243 my $filename = shift;
1244 my $mimemap = shift;
1245 -r
$mimemap or return undef;
1248 open(MIME
, $mimemap) or return undef;
1250 next if m/^#/; # skip comments
1251 my ($mime, $exts) = split(/\t+/);
1252 if (defined $exts) {
1253 my @exts = split(/\s+/, $exts);
1254 foreach my $ext (@exts) {
1255 $mimemap{$ext} = $mime;
1261 $filename =~ /\.([^.]*)$/;
1262 return $mimemap{$1};
1265 sub mimetype_guess
{
1266 my $filename = shift;
1268 $filename =~ /\./ or return undef;
1270 if ($mimetypes_file) {
1271 my $file = $mimetypes_file;
1272 if ($file !~ m!^/!) { # if it is relative path
1273 # it is relative to project
1274 $file = "$projectroot/$project/$file";
1276 $mime = mimetype_guess_file
($filename, $file);
1278 $mime ||= mimetype_guess_file
($filename, '/etc/mime.types');
1284 my $filename = shift;
1287 my $mime = mimetype_guess
($filename);
1288 $mime and return $mime;
1292 return $default_blob_plain_mimetype unless $fd;
1295 return 'text/plain' .
1296 ($default_text_plain_charset ?
'; charset='.$default_text_plain_charset : '');
1297 } elsif (! $filename) {
1298 return 'application/octet-stream';
1299 } elsif ($filename =~ m/\.png$/i) {
1301 } elsif ($filename =~ m/\.gif$/i) {
1303 } elsif ($filename =~ m/\.jpe?g$/i) {
1304 return 'image/jpeg';
1306 return 'application/octet-stream';
1310 ## ======================================================================
1311 ## functions printing HTML: header, footer, error page
1313 sub git_header_html
{
1314 my $status = shift || "200 OK";
1315 my $expires = shift;
1317 my $title = "$site_name git";
1318 if (defined $project) {
1319 $title .= " - $project";
1320 if (defined $action) {
1321 $title .= "/$action";
1322 if (defined $file_name) {
1323 $title .= " - " . esc_html
($file_name);
1324 if ($action eq "tree" && $file_name !~ m
|/$|) {
1331 # require explicit support from the UA if we are to send the page as
1332 # 'application/xhtml+xml', otherwise send it as plain old 'text/html'.
1333 # we have to do this because MSIE sometimes globs '*/*', pretending to
1334 # support xhtml+xml but choking when it gets what it asked for.
1335 if (defined $cgi->http('HTTP_ACCEPT') &&
1336 $cgi->http('HTTP_ACCEPT') =~ m/(,|;|\s|^)application\/xhtml\
+xml
(,|;|\s
|$)/ &&
1337 $cgi->Accept('application/xhtml+xml') != 0) {
1338 $content_type = 'application/xhtml+xml';
1340 $content_type = 'text/html';
1342 print $cgi->header(-type
=>$content_type, -charset
=> 'utf-8',
1343 -status
=> $status, -expires
=> $expires);
1345 <?xml version="1.0" encoding="utf-8"?>
1346 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
1347 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" lang="en-US">
1348 <!-- git web interface version $version, (C) 2005-2006, Kay Sievers <kay.sievers\@vrfy.org>, Christian Gierke -->
1349 <!-- git core binaries version $git_version -->
1351 <meta http-equiv="content-type" content="$content_type; charset=utf-8"/>
1352 <meta name="generator" content="gitweb/$version git/$git_version"/>
1353 <meta name="robots" content="index, nofollow"/>
1354 <title>$title</title>
1355 <link rel="stylesheet" type="text/css" href="$stylesheet"/>
1357 if (defined $project) {
1358 printf('<link rel="alternate" title="%s log" '.
1359 'href="%s" type="application/rss+xml"/>'."\n",
1360 esc_param
($project), href
(action
=>"rss"));
1362 printf('<link rel="alternate" title="%s projects list" '.
1363 'href="%s" type="text/plain; charset=utf-8"/>'."\n",
1364 $site_name, href
(project
=>undef, action
=>"project_index"));
1365 printf('<link rel="alternate" title="%s projects logs" '.
1366 'href="%s" type="text/x-opml"/>'."\n",
1367 $site_name, href
(project
=>undef, action
=>"opml"));
1369 if (defined $favicon) {
1370 print qq(<link rel
="shortcut icon" href
="$favicon" type
="image/png"/>\n);
1375 "<div class=\"page_header\">\n" .
1376 "<a href=\"http://www.kernel.org/pub/software/scm/git/docs/\" title=\"git documentation\">" .
1377 "<img src=\"$logo\" width=\"72\" height=\"27\" alt=\"git\" style=\"float:right; border-width:0px;\"/>" .
1379 print $cgi->a({-href
=> esc_url
($home_link)}, $home_link_str) . " / ";
1380 if (defined $project) {
1381 print $cgi->a({-href
=> href
(action
=>"summary")}, esc_html
($project));
1382 if (defined $action) {
1386 if (!defined $searchtext) {
1390 if (defined $hash_base) {
1391 $search_hash = $hash_base;
1392 } elsif (defined $hash) {
1393 $search_hash = $hash;
1395 $search_hash = "HEAD";
1397 $cgi->param("a", "search");
1398 $cgi->param("h", $search_hash);
1399 print $cgi->startform(-method
=> "get", -action
=> $my_uri) .
1400 "<div class=\"search\">\n" .
1401 $cgi->hidden(-name
=> "p") . "\n" .
1402 $cgi->hidden(-name
=> "a") . "\n" .
1403 $cgi->hidden(-name
=> "h") . "\n" .
1404 $cgi->textfield(-name
=> "s", -value
=> $searchtext) . "\n" .
1406 $cgi->end_form() . "\n";
1411 sub git_footer_html
{
1412 print "<div class=\"page_footer\">\n";
1413 if (defined $project) {
1414 my $descr = git_get_project_description
($project);
1415 if (defined $descr) {
1416 print "<div class=\"page_footer_text\">" . esc_html
($descr) . "</div>\n";
1418 print $cgi->a({-href
=> href
(action
=>"rss"),
1419 -class => "rss_logo"}, "RSS") . "\n";
1421 print $cgi->a({-href
=> href
(project
=>undef, action
=>"opml"),
1422 -class => "rss_logo"}, "OPML") . " ";
1423 print $cgi->a({-href
=> href
(project
=>undef, action
=>"project_index"),
1424 -class => "rss_logo"}, "TXT") . "\n";
1432 my $status = shift || "403 Forbidden";
1433 my $error = shift || "Malformed query, file missing or permission denied";
1435 git_header_html
($status);
1437 <div class="page_body">
1447 ## ----------------------------------------------------------------------
1448 ## functions printing or outputting HTML: navigation
1450 sub git_print_page_nav
{
1451 my ($current, $suppress, $head, $treehead, $treebase, $extra) = @_;
1452 $extra = '' if !defined $extra; # pager or formats
1454 my @navs = qw(summary shortlog log commit commitdiff tree);
1456 @navs = grep { $_ ne $suppress } @navs;
1459 my %arg = map { $_ => {action
=>$_} } @navs;
1460 if (defined $head) {
1461 for (qw(commit commitdiff)) {
1462 $arg{$_}{hash
} = $head;
1464 if ($current =~ m/^(tree | log | shortlog | commit | commitdiff | search)$/x) {
1465 for (qw(shortlog log)) {
1466 $arg{$_}{hash
} = $head;
1470 $arg{tree
}{hash
} = $treehead if defined $treehead;
1471 $arg{tree
}{hash_base
} = $treebase if defined $treebase;
1473 print "<div class=\"page_nav\">\n" .
1475 map { $_ eq $current ?
1476 $_ : $cgi->a({-href
=> href
(%{$arg{$_}})}, "$_")
1478 print "<br/>\n$extra<br/>\n" .
1482 sub format_paging_nav
{
1483 my ($action, $hash, $head, $page, $nrevs) = @_;
1487 if ($hash ne $head || $page) {
1488 $paging_nav .= $cgi->a({-href
=> href
(action
=>$action)}, "HEAD");
1490 $paging_nav .= "HEAD";
1494 $paging_nav .= " ⋅ " .
1495 $cgi->a({-href
=> href
(action
=>$action, hash
=>$hash, page
=>$page-1),
1496 -accesskey
=> "p", -title
=> "Alt-p"}, "prev");
1498 $paging_nav .= " ⋅ prev";
1501 if ($nrevs >= (100 * ($page+1)-1)) {
1502 $paging_nav .= " ⋅ " .
1503 $cgi->a({-href
=> href
(action
=>$action, hash
=>$hash, page
=>$page+1),
1504 -accesskey
=> "n", -title
=> "Alt-n"}, "next");
1506 $paging_nav .= " ⋅ next";
1512 ## ......................................................................
1513 ## functions printing or outputting HTML: div
1515 sub git_print_header_div
{
1516 my ($action, $title, $hash, $hash_base) = @_;
1519 $args{action
} = $action;
1520 $args{hash
} = $hash if $hash;
1521 $args{hash_base
} = $hash_base if $hash_base;
1523 print "<div class=\"header\">\n" .
1524 $cgi->a({-href
=> href
(%args), -class => "title"},
1525 $title ?
$title : $action) .
1529 #sub git_print_authorship (\%) {
1530 sub git_print_authorship
{
1533 my %ad = parse_date
($co->{'author_epoch'}, $co->{'author_tz'});
1534 print "<div class=\"author_date\">" .
1535 esc_html
($co->{'author_name'}) .
1537 if ($ad{'hour_local'} < 6) {
1538 printf(" (<span class=\"atnight\">%02d:%02d</span> %s)",
1539 $ad{'hour_local'}, $ad{'minute_local'}, $ad{'tz_local'});
1541 printf(" (%02d:%02d %s)",
1542 $ad{'hour_local'}, $ad{'minute_local'}, $ad{'tz_local'});
1547 sub git_print_page_path
{
1552 if (!defined $name) {
1553 print "<div class=\"page_path\">/</div>\n";
1555 my @dirname = split '/', $name;
1556 my $basename = pop @dirname;
1559 print "<div class=\"page_path\">";
1560 print $cgi->a({-href
=> href
(action
=>"tree", hash_base
=>$hb),
1561 -title
=> 'tree root'}, "[$project]");
1563 foreach my $dir (@dirname) {
1564 $fullname .= ($fullname ?
'/' : '') . $dir;
1565 print $cgi->a({-href
=> href
(action
=>"tree", file_name
=>$fullname,
1567 -title
=> $fullname}, esc_html
($dir));
1570 if (defined $type && $type eq 'blob') {
1571 print $cgi->a({-href
=> href
(action
=>"blob_plain", file_name
=>$file_name,
1573 -title
=> $name}, esc_html
($basename));
1574 } elsif (defined $type && $type eq 'tree') {
1575 print $cgi->a({-href
=> href
(action
=>"tree", file_name
=>$file_name,
1577 -title
=> $name}, esc_html
($basename));
1579 print esc_html
($basename);
1581 print "<br/></div>\n";
1585 # sub git_print_log (\@;%) {
1586 sub git_print_log
($;%) {
1590 if ($opts{'-remove_title'}) {
1591 # remove title, i.e. first line of log
1594 # remove leading empty lines
1595 while (defined $log->[0] && $log->[0] eq "") {
1602 foreach my $line (@
$log) {
1603 if ($line =~ m/^ *(signed[ \-]off[ \-]by[ :]|acked[ \-]by[ :]|cc[ :])/i) {
1606 if (! $opts{'-remove_signoff'}) {
1607 print "<span class=\"signoff\">" . esc_html
($line) . "</span><br/>\n";
1610 # remove signoff lines
1617 # print only one empty line
1618 # do not print empty line after signoff
1620 next if ($empty || $signoff);
1626 print format_log_line_html
($line) . "<br/>\n";
1629 if ($opts{'-final_empty_line'}) {
1630 # end with single empty line
1631 print "<br/>\n" unless $empty;
1635 sub git_print_simplified_log
{
1637 my $remove_title = shift;
1640 -final_empty_line
=> 1,
1641 -remove_title
=> $remove_title);
1644 # print tree entry (row of git_tree), but without encompassing <tr> element
1645 sub git_print_tree_entry
{
1646 my ($t, $basedir, $hash_base, $have_blame) = @_;
1649 $base_key{hash_base
} = $hash_base if defined $hash_base;
1651 # The format of a table row is: mode list link. Where mode is
1652 # the mode of the entry, list is the name of the entry, an href,
1653 # and link is the action links of the entry.
1655 print "<td class=\"mode\">" . mode_str
($t->{'mode'}) . "</td>\n";
1656 if ($t->{'type'} eq "blob") {
1657 print "<td class=\"list\">" .
1658 $cgi->a({-href
=> href
(action
=>"blob", hash
=>$t->{'hash'},
1659 file_name
=>"$basedir$t->{'name'}", %base_key),
1660 -class => "list"}, esc_html
($t->{'name'})) . "</td>\n";
1661 print "<td class=\"link\">";
1663 print $cgi->a({-href
=> href
(action
=>"blame", hash
=>$t->{'hash'},
1664 file_name
=>"$basedir$t->{'name'}", %base_key)},
1667 if (defined $hash_base) {
1671 print $cgi->a({-href
=> href
(action
=>"history", hash_base
=>$hash_base,
1672 hash
=>$t->{'hash'}, file_name
=>"$basedir$t->{'name'}")},
1676 $cgi->a({-href
=> href
(action
=>"blob_plain", hash_base
=>$hash_base,
1677 file_name
=>"$basedir$t->{'name'}")},
1681 } elsif ($t->{'type'} eq "tree") {
1682 print "<td class=\"list\">";
1683 print $cgi->a({-href
=> href
(action
=>"tree", hash
=>$t->{'hash'},
1684 file_name
=>"$basedir$t->{'name'}", %base_key)},
1685 esc_html
($t->{'name'}));
1687 print "<td class=\"link\">";
1688 if (defined $hash_base) {
1689 print $cgi->a({-href
=> href
(action
=>"history", hash_base
=>$hash_base,
1690 file_name
=>"$basedir$t->{'name'}")},
1697 ## ......................................................................
1698 ## functions printing large fragments of HTML
1700 sub git_difftree_body
{
1701 my ($difftree, $hash, $parent) = @_;
1703 print "<div class=\"list_head\">\n";
1704 if ($#{$difftree} > 10) {
1705 print(($#{$difftree} + 1) . " files changed:\n");
1709 print "<table class=\"diff_tree\">\n";
1712 foreach my $line (@
{$difftree}) {
1713 my %diff = parse_difftree_raw_line
($line);
1716 print "<tr class=\"dark\">\n";
1718 print "<tr class=\"light\">\n";
1722 my ($to_mode_oct, $to_mode_str, $to_file_type);
1723 my ($from_mode_oct, $from_mode_str, $from_file_type);
1724 if ($diff{'to_mode'} ne ('0' x
6)) {
1725 $to_mode_oct = oct $diff{'to_mode'};
1726 if (S_ISREG
($to_mode_oct)) { # only for regular file
1727 $to_mode_str = sprintf("%04o", $to_mode_oct & 0777); # permission bits
1729 $to_file_type = file_type
($diff{'to_mode'});
1731 if ($diff{'from_mode'} ne ('0' x
6)) {
1732 $from_mode_oct = oct $diff{'from_mode'};
1733 if (S_ISREG
($to_mode_oct)) { # only for regular file
1734 $from_mode_str = sprintf("%04o", $from_mode_oct & 0777); # permission bits
1736 $from_file_type = file_type
($diff{'from_mode'});
1739 if ($diff{'status'} eq "A") { # created
1740 my $mode_chng = "<span class=\"file_status new\">[new $to_file_type";
1741 $mode_chng .= " with mode: $to_mode_str" if $to_mode_str;
1742 $mode_chng .= "]</span>";
1744 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff{'to_id'},
1745 hash_base
=>$hash, file_name
=>$diff{'file'}),
1746 -class => "list"}, esc_html
($diff{'file'}));
1748 print "<td>$mode_chng</td>\n";
1749 print "<td class=\"link\">";
1750 if ($action eq 'commitdiff') {
1753 print $cgi->a({-href
=> "#patch$patchno"}, "patch");
1757 } elsif ($diff{'status'} eq "D") { # deleted
1758 my $mode_chng = "<span class=\"file_status deleted\">[deleted $from_file_type]</span>";
1760 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff{'from_id'},
1761 hash_base
=>$parent, file_name
=>$diff{'file'}),
1762 -class => "list"}, esc_html
($diff{'file'}));
1764 print "<td>$mode_chng</td>\n";
1765 print "<td class=\"link\">";
1766 if ($action eq 'commitdiff') {
1769 print $cgi->a({-href
=> "#patch$patchno"}, "patch");
1772 print $cgi->a({-href
=> href
(action
=>"blame", hash_base
=>$parent,
1773 file_name
=>$diff{'file'})},
1775 print $cgi->a({-href
=> href
(action
=>"history", hash_base
=>$parent,
1776 file_name
=>$diff{'file'})},
1780 } elsif ($diff{'status'} eq "M" || $diff{'status'} eq "T") { # modified, or type changed
1781 my $mode_chnge = "";
1782 if ($diff{'from_mode'} != $diff{'to_mode'}) {
1783 $mode_chnge = "<span class=\"file_status mode_chnge\">[changed";
1784 if ($from_file_type != $to_file_type) {
1785 $mode_chnge .= " from $from_file_type to $to_file_type";
1787 if (($from_mode_oct & 0777) != ($to_mode_oct & 0777)) {
1788 if ($from_mode_str && $to_mode_str) {
1789 $mode_chnge .= " mode: $from_mode_str->$to_mode_str";
1790 } elsif ($to_mode_str) {
1791 $mode_chnge .= " mode: $to_mode_str";
1794 $mode_chnge .= "]</span>\n";
1797 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff{'to_id'},
1798 hash_base
=>$hash, file_name
=>$diff{'file'}),
1799 -class => "list"}, esc_html
($diff{'file'}));
1801 print "<td>$mode_chnge</td>\n";
1802 print "<td class=\"link\">";
1803 if ($diff{'to_id'} ne $diff{'from_id'}) { # modified
1804 if ($action eq 'commitdiff') {
1807 print $cgi->a({-href
=> "#patch$patchno"}, "patch");
1809 print $cgi->a({-href
=> href
(action
=>"blobdiff",
1810 hash
=>$diff{'to_id'}, hash_parent
=>$diff{'from_id'},
1811 hash_base
=>$hash, hash_parent_base
=>$parent,
1812 file_name
=>$diff{'file'})},
1817 print $cgi->a({-href
=> href
(action
=>"blame", hash_base
=>$hash,
1818 file_name
=>$diff{'file'})},
1820 print $cgi->a({-href
=> href
(action
=>"history", hash_base
=>$hash,
1821 file_name
=>$diff{'file'})},
1825 } elsif ($diff{'status'} eq "R" || $diff{'status'} eq "C") { # renamed or copied
1826 my %status_name = ('R' => 'moved', 'C' => 'copied');
1827 my $nstatus = $status_name{$diff{'status'}};
1829 if ($diff{'from_mode'} != $diff{'to_mode'}) {
1830 # mode also for directories, so we cannot use $to_mode_str
1831 $mode_chng = sprintf(", mode: %04o", $to_mode_oct & 0777);
1834 $cgi->a({-href
=> href
(action
=>"blob", hash_base
=>$hash,
1835 hash
=>$diff{'to_id'}, file_name
=>$diff{'to_file'}),
1836 -class => "list"}, esc_html
($diff{'to_file'})) . "</td>\n" .
1837 "<td><span class=\"file_status $nstatus\">[$nstatus from " .
1838 $cgi->a({-href
=> href
(action
=>"blob", hash_base
=>$parent,
1839 hash
=>$diff{'from_id'}, file_name
=>$diff{'from_file'}),
1840 -class => "list"}, esc_html
($diff{'from_file'})) .
1841 " with " . (int $diff{'similarity'}) . "% similarity$mode_chng]</span></td>\n" .
1842 "<td class=\"link\">";
1843 if ($diff{'to_id'} ne $diff{'from_id'}) {
1844 if ($action eq 'commitdiff') {
1847 print $cgi->a({-href
=> "#patch$patchno"}, "patch");
1849 print $cgi->a({-href
=> href
(action
=>"blobdiff",
1850 hash
=>$diff{'to_id'}, hash_parent
=>$diff{'from_id'},
1851 hash_base
=>$hash, hash_parent_base
=>$parent,
1852 file_name
=>$diff{'to_file'}, file_parent
=>$diff{'from_file'})},
1857 print $cgi->a({-href
=> href
(action
=>"blame", hash_base
=>$parent,
1858 file_name
=>$diff{'from_file'})},
1860 print $cgi->a({-href
=> href
(action
=>"history", hash_base
=>$parent,
1861 file_name
=>$diff{'from_file'})},
1865 } # we should not encounter Unmerged (U) or Unknown (X) status
1871 sub git_patchset_body
{
1872 my ($fd, $difftree, $hash, $hash_parent) = @_;
1876 my $patch_found = 0;
1879 print "<div class=\"patchset\">\n";
1882 while (my $patch_line = <$fd>) {
1885 if ($patch_line =~ m/^diff /) { # "git diff" header
1886 # beginning of patch (in patchset)
1888 # close previous patch
1889 print "</div>\n"; # class="patch"
1891 # first patch in patchset
1894 print "<div class=\"patch\" id=\"patch". ($patch_idx+1) ."\">\n";
1896 if (ref($difftree->[$patch_idx]) eq "HASH") {
1897 $diffinfo = $difftree->[$patch_idx];
1899 $diffinfo = parse_difftree_raw_line
($difftree->[$patch_idx]);
1903 # for now, no extended header, hence we skip empty patches
1904 # companion to next LINE if $in_header;
1905 if ($diffinfo->{'from_id'} eq $diffinfo->{'to_id'}) { # no change
1910 if ($diffinfo->{'status'} eq "A") { # added
1911 print "<div class=\"diff_info\">" . file_type
($diffinfo->{'to_mode'}) . ":" .
1912 $cgi->a({-href
=> href
(action
=>"blob", hash_base
=>$hash,
1913 hash
=>$diffinfo->{'to_id'}, file_name
=>$diffinfo->{'file'})},
1914 $diffinfo->{'to_id'}) . "(new)" .
1915 "</div>\n"; # class="diff_info"
1917 } elsif ($diffinfo->{'status'} eq "D") { # deleted
1918 print "<div class=\"diff_info\">" . file_type
($diffinfo->{'from_mode'}) . ":" .
1919 $cgi->a({-href
=> href
(action
=>"blob", hash_base
=>$hash_parent,
1920 hash
=>$diffinfo->{'from_id'}, file_name
=>$diffinfo->{'file'})},
1921 $diffinfo->{'from_id'}) . "(deleted)" .
1922 "</div>\n"; # class="diff_info"
1924 } elsif ($diffinfo->{'status'} eq "R" || # renamed
1925 $diffinfo->{'status'} eq "C" || # copied
1926 $diffinfo->{'status'} eq "2") { # with two filenames (from git_blobdiff)
1927 print "<div class=\"diff_info\">" .
1928 file_type
($diffinfo->{'from_mode'}) . ":" .
1929 $cgi->a({-href
=> href
(action
=>"blob", hash_base
=>$hash_parent,
1930 hash
=>$diffinfo->{'from_id'}, file_name
=>$diffinfo->{'from_file'})},
1931 $diffinfo->{'from_id'}) .
1933 file_type
($diffinfo->{'to_mode'}) . ":" .
1934 $cgi->a({-href
=> href
(action
=>"blob", hash_base
=>$hash,
1935 hash
=>$diffinfo->{'to_id'}, file_name
=>$diffinfo->{'to_file'})},
1936 $diffinfo->{'to_id'});
1937 print "</div>\n"; # class="diff_info"
1939 } else { # modified, mode changed, ...
1940 print "<div class=\"diff_info\">" .
1941 file_type
($diffinfo->{'from_mode'}) . ":" .
1942 $cgi->a({-href
=> href
(action
=>"blob", hash_base
=>$hash_parent,
1943 hash
=>$diffinfo->{'from_id'}, file_name
=>$diffinfo->{'file'})},
1944 $diffinfo->{'from_id'}) .
1946 file_type
($diffinfo->{'to_mode'}) . ":" .
1947 $cgi->a({-href
=> href
(action
=>"blob", hash_base
=>$hash,
1948 hash
=>$diffinfo->{'to_id'}, file_name
=>$diffinfo->{'file'})},
1949 $diffinfo->{'to_id'});
1950 print "</div>\n"; # class="diff_info"
1953 #print "<div class=\"diff extended_header\">\n";
1956 } # start of patch in patchset
1959 if ($in_header && $patch_line =~ m/^---/) {
1960 #print "</div>\n"; # class="diff extended_header"
1963 my $file = $diffinfo->{'from_file'};
1964 $file ||= $diffinfo->{'file'};
1965 $file = $cgi->a({-href
=> href
(action
=>"blob", hash_base
=>$hash_parent,
1966 hash
=>$diffinfo->{'from_id'}, file_name
=>$file),
1967 -class => "list"}, esc_html
($file));
1968 $patch_line =~ s
|a
/.*$|a/$file|g
;
1969 print "<div class=\"diff from_file\">$patch_line</div>\n";
1971 $patch_line = <$fd>;
1974 #$patch_line =~ m/^+++/;
1975 $file = $diffinfo->{'to_file'};
1976 $file ||= $diffinfo->{'file'};
1977 $file = $cgi->a({-href
=> href
(action
=>"blob", hash_base
=>$hash,
1978 hash
=>$diffinfo->{'to_id'}, file_name
=>$file),
1979 -class => "list"}, esc_html
($file));
1980 $patch_line =~ s
|b
/.*|b/$file|g
;
1981 print "<div class=\"diff to_file\">$patch_line</div>\n";
1985 next LINE
if $in_header;
1987 print format_diff_line
($patch_line);
1989 print "</div>\n" if $patch_found; # class="patch"
1991 print "</div>\n"; # class="patchset"
1994 # . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
1996 sub git_shortlog_body
{
1997 # uses global variable $project
1998 my ($revlist, $from, $to, $refs, $extra) = @_;
2000 $from = 0 unless defined $from;
2001 $to = $#{$revlist} if (!defined $to || $#{$revlist} < $to);
2003 print "<table class=\"shortlog\" cellspacing=\"0\">\n";
2005 for (my $i = $from; $i <= $to; $i++) {
2006 my $commit = $revlist->[$i];
2007 #my $ref = defined $refs ? format_ref_marker($refs, $commit) : '';
2008 my $ref = format_ref_marker
($refs, $commit);
2009 my %co = parse_commit
($commit);
2011 print "<tr class=\"dark\">\n";
2013 print "<tr class=\"light\">\n";
2016 # git_summary() used print "<td><i>$co{'age_string'}</i></td>\n" .
2017 print "<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n" .
2018 "<td><i>" . esc_html
(chop_str
($co{'author_name'}, 10)) . "</i></td>\n" .
2020 print format_subject_html
($co{'title'}, $co{'title_short'},
2021 href
(action
=>"commit", hash
=>$commit), $ref);
2023 "<td class=\"link\">" .
2024 $cgi->a({-href
=> href
(action
=>"commitdiff", hash
=>$commit)}, "commitdiff") . " | " .
2025 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$commit, hash_base
=>$commit)}, "tree") . " | " .
2026 $cgi->a({-href
=> href
(action
=>"snapshot", hash
=>$commit)}, "snapshot");
2030 if (defined $extra) {
2032 "<td colspan=\"4\">$extra</td>\n" .
2038 sub git_history_body
{
2039 # Warning: assumes constant type (blob or tree) during history
2040 my ($revlist, $from, $to, $refs, $hash_base, $ftype, $extra) = @_;
2042 $from = 0 unless defined $from;
2043 $to = $#{$revlist} unless (defined $to && $to <= $#{$revlist});
2045 print "<table class=\"history\" cellspacing=\"0\">\n";
2047 for (my $i = $from; $i <= $to; $i++) {
2048 if ($revlist->[$i] !~ m/^([0-9a-fA-F]{40})/) {
2053 my %co = parse_commit
($commit);
2058 my $ref = format_ref_marker
($refs, $commit);
2061 print "<tr class=\"dark\">\n";
2063 print "<tr class=\"light\">\n";
2066 print "<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n" .
2067 # shortlog uses chop_str($co{'author_name'}, 10)
2068 "<td><i>" . esc_html
(chop_str
($co{'author_name'}, 15, 3)) . "</i></td>\n" .
2070 # originally git_history used chop_str($co{'title'}, 50)
2071 print format_subject_html
($co{'title'}, $co{'title_short'},
2072 href
(action
=>"commit", hash
=>$commit), $ref);
2074 "<td class=\"link\">" .
2075 $cgi->a({-href
=> href
(action
=>$ftype, hash_base
=>$commit, file_name
=>$file_name)}, $ftype) . " | " .
2076 $cgi->a({-href
=> href
(action
=>"commitdiff", hash
=>$commit)}, "commitdiff");
2078 if ($ftype eq 'blob') {
2079 my $blob_current = git_get_hash_by_path
($hash_base, $file_name);
2080 my $blob_parent = git_get_hash_by_path
($commit, $file_name);
2081 if (defined $blob_current && defined $blob_parent &&
2082 $blob_current ne $blob_parent) {
2084 $cgi->a({-href
=> href
(action
=>"blobdiff",
2085 hash
=>$blob_current, hash_parent
=>$blob_parent,
2086 hash_base
=>$hash_base, hash_parent_base
=>$commit,
2087 file_name
=>$file_name)},
2094 if (defined $extra) {
2096 "<td colspan=\"4\">$extra</td>\n" .
2103 # uses global variable $project
2104 my ($taglist, $from, $to, $extra) = @_;
2105 $from = 0 unless defined $from;
2106 $to = $#{$taglist} if (!defined $to || $#{$taglist} < $to);
2108 print "<table class=\"tags\" cellspacing=\"0\">\n";
2110 for (my $i = $from; $i <= $to; $i++) {
2111 my $entry = $taglist->[$i];
2113 my $comment_lines = $tag{'comment'};
2114 my $comment = shift @
$comment_lines;
2116 if (defined $comment) {
2117 $comment_short = chop_str
($comment, 30, 5);
2120 print "<tr class=\"dark\">\n";
2122 print "<tr class=\"light\">\n";
2125 print "<td><i>$tag{'age'}</i></td>\n" .
2127 $cgi->a({-href
=> href
(action
=>$tag{'reftype'}, hash
=>$tag{'refid'}),
2128 -class => "list name"}, esc_html
($tag{'name'})) .
2131 if (defined $comment) {
2132 print format_subject_html
($comment, $comment_short,
2133 href
(action
=>"tag", hash
=>$tag{'id'}));
2136 "<td class=\"selflink\">";
2137 if ($tag{'type'} eq "tag") {
2138 print $cgi->a({-href
=> href
(action
=>"tag", hash
=>$tag{'id'})}, "tag");
2143 "<td class=\"link\">" . " | " .
2144 $cgi->a({-href
=> href
(action
=>$tag{'reftype'}, hash
=>$tag{'refid'})}, $tag{'reftype'});
2145 if ($tag{'reftype'} eq "commit") {
2146 print " | " . $cgi->a({-href
=> href
(action
=>"shortlog", hash
=>$tag{'name'})}, "shortlog") .
2147 " | " . $cgi->a({-href
=> href
(action
=>"log", hash
=>$tag{'refid'})}, "log");
2148 } elsif ($tag{'reftype'} eq "blob") {
2149 print " | " . $cgi->a({-href
=> href
(action
=>"blob_plain", hash
=>$tag{'refid'})}, "raw");
2154 if (defined $extra) {
2156 "<td colspan=\"5\">$extra</td>\n" .
2162 sub git_heads_body
{
2163 # uses global variable $project
2164 my ($headlist, $head, $from, $to, $extra) = @_;
2165 $from = 0 unless defined $from;
2166 $to = $#{$headlist} if (!defined $to || $#{$headlist} < $to);
2168 print "<table class=\"heads\" cellspacing=\"0\">\n";
2170 for (my $i = $from; $i <= $to; $i++) {
2171 my $entry = $headlist->[$i];
2173 my $curr = $tag{'id'} eq $head;
2175 print "<tr class=\"dark\">\n";
2177 print "<tr class=\"light\">\n";
2180 print "<td><i>$tag{'age'}</i></td>\n" .
2181 ($tag{'id'} eq $head ?
"<td class=\"current_head\">" : "<td>") .
2182 $cgi->a({-href
=> href
(action
=>"shortlog", hash
=>$tag{'name'}),
2183 -class => "list name"},esc_html
($tag{'name'})) .
2185 "<td class=\"link\">" .
2186 $cgi->a({-href
=> href
(action
=>"shortlog", hash
=>$tag{'name'})}, "shortlog") . " | " .
2187 $cgi->a({-href
=> href
(action
=>"log", hash
=>$tag{'name'})}, "log") . " | " .
2188 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$tag{'name'}, hash_base
=>$tag{'name'})}, "tree") .
2192 if (defined $extra) {
2194 "<td colspan=\"3\">$extra</td>\n" .
2200 ## ======================================================================
2201 ## ======================================================================
2204 sub git_project_list
{
2205 my $order = $cgi->param('o');
2206 if (defined $order && $order !~ m/project|descr|owner|age/) {
2207 die_error
(undef, "Unknown order parameter");
2210 my @list = git_get_projects_list
();
2213 die_error
(undef, "No projects found");
2215 foreach my $pr (@list) {
2216 my $head = git_get_head_hash
($pr->{'path'});
2217 if (!defined $head) {
2220 $git_dir = "$projectroot/$pr->{'path'}";
2221 my %co = parse_commit
($head);
2225 $pr->{'commit'} = \
%co;
2226 if (!defined $pr->{'descr'}) {
2227 my $descr = git_get_project_description
($pr->{'path'}) || "";
2228 $pr->{'descr'} = chop_str
($descr, 25, 5);
2230 if (!defined $pr->{'owner'}) {
2231 $pr->{'owner'} = get_file_owner
("$projectroot/$pr->{'path'}") || "";
2233 push @projects, $pr;
2237 if (-f
$home_text) {
2238 print "<div class=\"index_include\">\n";
2239 open (my $fd, $home_text);
2244 print "<table class=\"project_list\">\n" .
2246 $order ||= "project";
2247 if ($order eq "project") {
2248 @projects = sort {$a->{'path'} cmp $b->{'path'}} @projects;
2249 print "<th>Project</th>\n";
2252 $cgi->a({-href
=> href
(project
=>undef, order
=>'project'),
2253 -class => "header"}, "Project") .
2256 if ($order eq "descr") {
2257 @projects = sort {$a->{'descr'} cmp $b->{'descr'}} @projects;
2258 print "<th>Description</th>\n";
2261 $cgi->a({-href
=> href
(project
=>undef, order
=>'descr'),
2262 -class => "header"}, "Description") .
2265 if ($order eq "owner") {
2266 @projects = sort {$a->{'owner'} cmp $b->{'owner'}} @projects;
2267 print "<th>Owner</th>\n";
2270 $cgi->a({-href
=> href
(project
=>undef, order
=>'owner'),
2271 -class => "header"}, "Owner") .
2274 if ($order eq "age") {
2275 @projects = sort {$a->{'commit'}{'age'} <=> $b->{'commit'}{'age'}} @projects;
2276 print "<th>Last Change</th>\n";
2279 $cgi->a({-href
=> href
(project
=>undef, order
=>'age'),
2280 -class => "header"}, "Last Change") .
2283 print "<th></th>\n" .
2286 foreach my $pr (@projects) {
2288 print "<tr class=\"dark\">\n";
2290 print "<tr class=\"light\">\n";
2293 print "<td>" . $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"summary"),
2294 -class => "list"}, esc_html
($pr->{'path'})) . "</td>\n" .
2295 "<td>" . esc_html
($pr->{'descr'}) . "</td>\n" .
2296 "<td><i>" . chop_str
($pr->{'owner'}, 15) . "</i></td>\n";
2297 print "<td class=\"". age_class
($pr->{'commit'}{'age'}) . "\">" .
2298 $pr->{'commit'}{'age_string'} . "</td>\n" .
2299 "<td class=\"link\">" .
2300 $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"summary")}, "summary") . " | " .
2301 $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"shortlog")}, "shortlog") . " | " .
2302 $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"log")}, "log") . " | " .
2303 $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"tree")}, "tree") .
2311 sub git_project_index
{
2312 my @projects = git_get_projects_list
();
2315 -type
=> 'text/plain',
2316 -charset
=> 'utf-8',
2317 -content_disposition
=> 'inline; filename="index.aux"');
2319 foreach my $pr (@projects) {
2320 if (!exists $pr->{'owner'}) {
2321 $pr->{'owner'} = get_file_owner
("$projectroot/$project");
2324 my ($path, $owner) = ($pr->{'path'}, $pr->{'owner'});
2325 # quote as in CGI::Util::encode, but keep the slash, and use '+' for ' '
2326 $path =~ s/([^a-zA-Z0-9_.\-\/ ])/sprintf
("%%%02X", ord($1))/eg
;
2327 $owner =~ s/([^a-zA-Z0-9_.\-\/ ])/sprintf
("%%%02X", ord($1))/eg
;
2331 print "$path $owner\n";
2336 my $descr = git_get_project_description
($project) || "none";
2337 my $head = git_get_head_hash
($project);
2338 my %co = parse_commit
($head);
2339 my %cd = parse_date
($co{'committer_epoch'}, $co{'committer_tz'});
2341 my $owner = git_get_project_owner
($project);
2343 my ($reflist, $refs) = git_get_refs_list
();
2347 foreach my $ref (@
$reflist) {
2348 if ($ref->{'name'} =~ s!^heads/!!) {
2349 push @headlist, $ref;
2351 $ref->{'name'} =~ s!^tags/!!;
2352 push @taglist, $ref;
2357 git_print_page_nav
('summary','', $head);
2359 print "<div class=\"title\"> </div>\n";
2360 print "<table cellspacing=\"0\">\n" .
2361 "<tr><td>description</td><td>" . esc_html
($descr) . "</td></tr>\n" .
2362 "<tr><td>owner</td><td>$owner</td></tr>\n" .
2363 "<tr><td>last change</td><td>$cd{'rfc2822'}</td></tr>\n";
2364 # use per project git URL list in $projectroot/$project/cloneurl
2365 # or make project git URL from git base URL and project name
2366 my $url_tag = "URL";
2367 my @url_list = git_get_project_url_list
($project);
2368 @url_list = map { "$_/$project" } @git_base_url_list unless @url_list;
2369 foreach my $git_url (@url_list) {
2370 next unless $git_url;
2371 print "<tr><td>$url_tag</td><td>$git_url</td></tr>\n";
2376 open my $fd, "-|", git_cmd
(), "rev-list", "--max-count=17",
2377 git_get_head_hash
($project)
2378 or die_error
(undef, "Open git-rev-list failed");
2379 my @revlist = map { chomp; $_ } <$fd>;
2381 git_print_header_div
('shortlog');
2382 git_shortlog_body
(\
@revlist, 0, 15, $refs,
2383 $cgi->a({-href
=> href
(action
=>"shortlog")}, "..."));
2386 git_print_header_div
('tags');
2387 git_tags_body
(\
@taglist, 0, 15,
2388 $cgi->a({-href
=> href
(action
=>"tags")}, "..."));
2392 git_print_header_div
('heads');
2393 git_heads_body
(\
@headlist, $head, 0, 15,
2394 $cgi->a({-href
=> href
(action
=>"heads")}, "..."));
2401 my $head = git_get_head_hash
($project);
2403 git_print_page_nav
('','', $head,undef,$head);
2404 my %tag = parse_tag
($hash);
2405 git_print_header_div
('commit', esc_html
($tag{'name'}), $hash);
2406 print "<div class=\"title_text\">\n" .
2407 "<table cellspacing=\"0\">\n" .
2409 "<td>object</td>\n" .
2410 "<td>" . $cgi->a({-class => "list", -href
=> href
(action
=>$tag{'type'}, hash
=>$tag{'object'})},
2411 $tag{'object'}) . "</td>\n" .
2412 "<td class=\"link\">" . $cgi->a({-href
=> href
(action
=>$tag{'type'}, hash
=>$tag{'object'})},
2413 $tag{'type'}) . "</td>\n" .
2415 if (defined($tag{'author'})) {
2416 my %ad = parse_date
($tag{'epoch'}, $tag{'tz'});
2417 print "<tr><td>author</td><td>" . esc_html
($tag{'author'}) . "</td></tr>\n";
2418 print "<tr><td></td><td>" . $ad{'rfc2822'} .
2419 sprintf(" (%02d:%02d %s)", $ad{'hour_local'}, $ad{'minute_local'}, $ad{'tz_local'}) .
2422 print "</table>\n\n" .
2424 print "<div class=\"page_body\">";
2425 my $comment = $tag{'comment'};
2426 foreach my $line (@
$comment) {
2427 print esc_html
($line) . "<br/>\n";
2437 my ($have_blame) = gitweb_check_feature
('blame');
2439 die_error
('403 Permission denied', "Permission denied");
2441 die_error
('404 Not Found', "File name not defined") if (!$file_name);
2442 $hash_base ||= git_get_head_hash
($project);
2443 die_error
(undef, "Couldn't find base commit") unless ($hash_base);
2444 my %co = parse_commit
($hash_base)
2445 or die_error
(undef, "Reading commit failed");
2446 if (!defined $hash) {
2447 $hash = git_get_hash_by_path
($hash_base, $file_name, "blob")
2448 or die_error
(undef, "Error looking up file");
2450 $ftype = git_get_type
($hash);
2451 if ($ftype !~ "blob") {
2452 die_error
("400 Bad Request", "Object is not a blob");
2454 open ($fd, "-|", git_cmd
(), "blame", '-l', '--', $file_name, $hash_base)
2455 or die_error
(undef, "Open git-blame failed");
2458 $cgi->a({-href
=> href
(action
=>"blob", hash
=>$hash, hash_base
=>$hash_base, file_name
=>$file_name)},
2461 $cgi->a({-href
=> href
(action
=>"history", hash
=>$hash, hash_base
=>$hash_base, file_name
=>$file_name)},
2464 $cgi->a({-href
=> href
(action
=>"blame", file_name
=>$file_name)},
2466 git_print_page_nav
('','', $hash_base,$co{'tree'},$hash_base, $formats_nav);
2467 git_print_header_div
('commit', esc_html
($co{'title'}), $hash_base);
2468 git_print_page_path
($file_name, $ftype, $hash_base);
2469 my @rev_color = (qw(light2 dark2));
2470 my $num_colors = scalar(@rev_color);
2471 my $current_color = 0;
2474 <div class="page_body">
2475 <table class="blame">
2476 <tr><th>Commit</th><th>Line</th><th>Data</th></tr>
2479 /^([0-9a-fA-F]{40}).*?(\d+)\)\s{1}(\s*.*)/;
2481 my $rev = substr($full_rev, 0, 8);
2485 if (!defined $last_rev) {
2486 $last_rev = $full_rev;
2487 } elsif ($last_rev ne $full_rev) {
2488 $last_rev = $full_rev;
2489 $current_color = ++$current_color % $num_colors;
2491 print "<tr class=\"$rev_color[$current_color]\">\n";
2492 print "<td class=\"sha1\">" .
2493 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$full_rev, file_name
=>$file_name)},
2494 esc_html
($rev)) . "</td>\n";
2495 print "<td class=\"linenr\"><a id=\"l$lineno\" href=\"#l$lineno\" class=\"linenr\">" .
2496 esc_html
($lineno) . "</a></td>\n";
2497 print "<td class=\"pre\">" . esc_html
($data) . "</td>\n";
2503 or print "Reading blob failed\n";
2510 my ($have_blame) = gitweb_check_feature
('blame');
2512 die_error
('403 Permission denied', "Permission denied");
2514 die_error
('404 Not Found', "File name not defined") if (!$file_name);
2515 $hash_base ||= git_get_head_hash
($project);
2516 die_error
(undef, "Couldn't find base commit") unless ($hash_base);
2517 my %co = parse_commit
($hash_base)
2518 or die_error
(undef, "Reading commit failed");
2519 if (!defined $hash) {
2520 $hash = git_get_hash_by_path
($hash_base, $file_name, "blob")
2521 or die_error
(undef, "Error lookup file");
2523 open ($fd, "-|", git_cmd
(), "annotate", '-l', '-t', '-r', $file_name, $hash_base)
2524 or die_error
(undef, "Open git-annotate failed");
2527 $cgi->a({-href
=> href
(action
=>"blob", hash
=>$hash, hash_base
=>$hash_base, file_name
=>$file_name)},
2530 $cgi->a({-href
=> href
(action
=>"history", hash
=>$hash, hash_base
=>$hash_base, file_name
=>$file_name)},
2533 $cgi->a({-href
=> href
(action
=>"blame", file_name
=>$file_name)},
2535 git_print_page_nav
('','', $hash_base,$co{'tree'},$hash_base, $formats_nav);
2536 git_print_header_div
('commit', esc_html
($co{'title'}), $hash_base);
2537 git_print_page_path
($file_name, 'blob', $hash_base);
2538 print "<div class=\"page_body\">\n";
2540 <table class="blame">
2549 my @line_class = (qw(light dark));
2550 my $line_class_len = scalar (@line_class);
2551 my $line_class_num = $#line_class;
2552 while (my $line = <$fd>) {
2564 $line_class_num = ($line_class_num + 1) % $line_class_len;
2566 if ($line =~ m/^([0-9a-fA-F]{40})\t\(\s*([^\t]+)\t(\d+) [+-]\d\d\d\d\t(\d+)\)(.*)$/) {
2573 print qq( <tr
><td colspan
="5" class="error">Unable to parse
: $line</td></tr
>\n);
2576 $short_rev = substr ($long_rev, 0, 8);
2577 $age = time () - $time;
2578 $age_str = age_string
($age);
2579 $age_str =~ s/ / /g;
2580 $age_class = age_class
($age);
2581 $author = esc_html
($author);
2582 $author =~ s/ / /g;
2584 $data = untabify
($data);
2585 $data = esc_html
($data);
2588 <tr class="$line_class[$line_class_num]">
2589 <td class="sha1"><a href="${\href (action=>"commit", hash=>$long_rev)}" class="text">$short_rev..</a></td>
2590 <td class="$age_class">$age_str</td>
2592 <td class="linenr"><a id="$lineno" href="#$lineno" class="linenr">$lineno</a></td>
2593 <td class="pre">$data</td>
2596 } # while (my $line = <$fd>)
2597 print "</table>\n\n";
2599 or print "Reading blob failed.\n";
2605 my $head = git_get_head_hash
($project);
2607 git_print_page_nav
('','', $head,undef,$head);
2608 git_print_header_div
('summary', $project);
2610 my ($taglist) = git_get_refs_list
("tags");
2612 git_tags_body
($taglist);
2618 my $head = git_get_head_hash
($project);
2620 git_print_page_nav
('','', $head,undef,$head);
2621 git_print_header_div
('summary', $project);
2623 my ($headlist) = git_get_refs_list
("heads");
2625 git_heads_body
($headlist, $head);
2630 sub git_blob_plain
{
2633 if (!defined $hash) {
2634 if (defined $file_name) {
2635 my $base = $hash_base || git_get_head_hash
($project);
2636 $hash = git_get_hash_by_path
($base, $file_name, "blob")
2637 or die_error
(undef, "Error lookup file");
2639 die_error
(undef, "No file name defined");
2641 } elsif ($hash =~ m/^[0-9a-fA-F]{40}$/) {
2642 # blobs defined by non-textual hash id's can be cached
2647 open my $fd, "-|", git_cmd
(), "cat-file", "blob", $hash
2648 or die_error
(undef, "Couldn't cat $file_name, $hash");
2650 $type ||= blob_mimetype
($fd, $file_name);
2652 # save as filename, even when no $file_name is given
2653 my $save_as = "$hash";
2654 if (defined $file_name) {
2655 $save_as = $file_name;
2656 } elsif ($type =~ m/^text\//) {
2663 -content_disposition
=> 'inline; filename="' . "$save_as" . '"');
2665 binmode STDOUT
, ':raw';
2667 binmode STDOUT
, ':utf8'; # as set at the beginning of gitweb.cgi
2675 if (!defined $hash) {
2676 if (defined $file_name) {
2677 my $base = $hash_base || git_get_head_hash
($project);
2678 $hash = git_get_hash_by_path
($base, $file_name, "blob")
2679 or die_error
(undef, "Error lookup file");
2681 die_error
(undef, "No file name defined");
2683 } elsif ($hash =~ m/^[0-9a-fA-F]{40}$/) {
2684 # blobs defined by non-textual hash id's can be cached
2688 my ($have_blame) = gitweb_check_feature
('blame');
2689 open my $fd, "-|", git_cmd
(), "cat-file", "blob", $hash
2690 or die_error
(undef, "Couldn't cat $file_name, $hash");
2691 my $mimetype = blob_mimetype
($fd, $file_name);
2692 if ($mimetype !~ m/^text\//) {
2694 return git_blob_plain
($mimetype);
2696 git_header_html
(undef, $expires);
2697 my $formats_nav = '';
2698 if (defined $hash_base && (my %co = parse_commit
($hash_base))) {
2699 if (defined $file_name) {
2702 $cgi->a({-href
=> href
(action
=>"blame", hash_base
=>$hash_base,
2703 hash
=>$hash, file_name
=>$file_name)},
2708 $cgi->a({-href
=> href
(action
=>"history", hash_base
=>$hash_base,
2709 hash
=>$hash, file_name
=>$file_name)},
2712 $cgi->a({-href
=> href
(action
=>"blob_plain",
2713 hash
=>$hash, file_name
=>$file_name)},
2716 $cgi->a({-href
=> href
(action
=>"blob",
2717 hash_base
=>"HEAD", file_name
=>$file_name)},
2721 $cgi->a({-href
=> href
(action
=>"blob_plain", hash
=>$hash)}, "raw");
2723 git_print_page_nav
('','', $hash_base,$co{'tree'},$hash_base, $formats_nav);
2724 git_print_header_div
('commit', esc_html
($co{'title'}), $hash_base);
2726 print "<div class=\"page_nav\">\n" .
2727 "<br/><br/></div>\n" .
2728 "<div class=\"title\">$hash</div>\n";
2730 git_print_page_path
($file_name, "blob", $hash_base);
2731 print "<div class=\"page_body\">\n";
2733 while (my $line = <$fd>) {
2736 $line = untabify
($line);
2737 printf "<div class=\"pre\"><a id=\"l%i\" href=\"#l%i\" class=\"linenr\">%4i</a> %s</div>\n",
2738 $nr, $nr, $nr, esc_html
($line);
2741 or print "Reading blob failed.\n";
2747 my $have_snapshot = gitweb_have_snapshot
();
2749 if (!defined $hash_base) {
2750 $hash_base = "HEAD";
2752 if (!defined $hash) {
2753 if (defined $file_name) {
2754 $hash = git_get_hash_by_path
($hash_base, $file_name, "tree");
2760 open my $fd, "-|", git_cmd
(), "ls-tree", '-z', $hash
2761 or die_error
(undef, "Open git-ls-tree failed");
2762 my @entries = map { chomp; $_ } <$fd>;
2763 close $fd or die_error
(undef, "Reading tree failed");
2766 my $refs = git_get_references
();
2767 my $ref = format_ref_marker
($refs, $hash_base);
2770 my ($have_blame) = gitweb_check_feature
('blame');
2771 if (defined $hash_base && (my %co = parse_commit
($hash_base))) {
2773 if (defined $file_name) {
2775 $cgi->a({-href
=> href
(action
=>"history", hash_base
=>$hash_base,
2776 hash
=>$hash, file_name
=>$file_name)},
2778 $cgi->a({-href
=> href
(action
=>"tree",
2779 hash_base
=>"HEAD", file_name
=>$file_name)},
2782 if ($have_snapshot) {
2783 # FIXME: Should be available when we have no hash base as well.
2785 $cgi->a({-href
=> href
(action
=>"snapshot", hash
=>$hash)},
2788 git_print_page_nav
('tree','', $hash_base, undef, undef, join(' | ', @views_nav));
2789 git_print_header_div
('commit', esc_html
($co{'title'}) . $ref, $hash_base);
2792 print "<div class=\"page_nav\">\n";
2793 print "<br/><br/></div>\n";
2794 print "<div class=\"title\">$hash</div>\n";
2796 if (defined $file_name) {
2797 $base = esc_html
("$file_name/");
2799 git_print_page_path
($file_name, 'tree', $hash_base);
2800 print "<div class=\"page_body\">\n";
2801 print "<table cellspacing=\"0\">\n";
2803 foreach my $line (@entries) {
2804 my %t = parse_ls_tree_line
($line, -z
=> 1);
2807 print "<tr class=\"dark\">\n";
2809 print "<tr class=\"light\">\n";
2813 git_print_tree_entry
(\
%t, $base, $hash_base, $have_blame);
2817 print "</table>\n" .
2823 my ($ctype, $suffix, $command) = gitweb_check_feature
('snapshot');
2824 my $have_snapshot = (defined $ctype && defined $suffix);
2825 if (!$have_snapshot) {
2826 die_error
('403 Permission denied', "Permission denied");
2829 if (!defined $hash) {
2830 $hash = git_get_head_hash
($project);
2833 my $filename = basename
($project) . "-$hash.tar.$suffix";
2836 -type
=> 'application/x-tar',
2837 -content_encoding
=> $ctype,
2838 -content_disposition
=> 'inline; filename="' . "$filename" . '"',
2839 -status
=> '200 OK');
2841 my $git_command = git_cmd_str
();
2842 open my $fd, "-|", "$git_command tar-tree $hash \'$project\' | $command" or
2843 die_error
(undef, "Execute git-tar-tree failed.");
2844 binmode STDOUT
, ':raw';
2846 binmode STDOUT
, ':utf8'; # as set at the beginning of gitweb.cgi
2852 my $head = git_get_head_hash
($project);
2853 if (!defined $hash) {
2856 if (!defined $page) {
2859 my $refs = git_get_references
();
2861 my $limit = sprintf("--max-count=%i", (100 * ($page+1)));
2862 open my $fd, "-|", git_cmd
(), "rev-list", $limit, $hash
2863 or die_error
(undef, "Open git-rev-list failed");
2864 my @revlist = map { chomp; $_ } <$fd>;
2867 my $paging_nav = format_paging_nav
('log', $hash, $head, $page, $#revlist);
2870 git_print_page_nav
('log','', $hash,undef,undef, $paging_nav);
2873 my %co = parse_commit
($hash);
2875 git_print_header_div
('summary', $project);
2876 print "<div class=\"page_body\"> Last change $co{'age_string'}.<br/><br/></div>\n";
2878 for (my $i = ($page * 100); $i <= $#revlist; $i++) {
2879 my $commit = $revlist[$i];
2880 my $ref = format_ref_marker
($refs, $commit);
2881 my %co = parse_commit
($commit);
2883 my %ad = parse_date
($co{'author_epoch'});
2884 git_print_header_div
('commit',
2885 "<span class=\"age\">$co{'age_string'}</span>" .
2886 esc_html
($co{'title'}) . $ref,
2888 print "<div class=\"title_text\">\n" .
2889 "<div class=\"log_link\">\n" .
2890 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$commit)}, "commit") .
2892 $cgi->a({-href
=> href
(action
=>"commitdiff", hash
=>$commit)}, "commitdiff") .
2894 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$commit, hash_base
=>$commit)}, "tree") .
2897 "<i>" . esc_html
($co{'author_name'}) . " [$ad{'rfc2822'}]</i><br/>\n" .
2900 print "<div class=\"log_body\">\n";
2901 git_print_simplified_log
($co{'comment'});
2908 my %co = parse_commit
($hash);
2910 die_error
(undef, "Unknown commit object");
2912 my %ad = parse_date
($co{'author_epoch'}, $co{'author_tz'});
2913 my %cd = parse_date
($co{'committer_epoch'}, $co{'committer_tz'});
2915 my $parent = $co{'parent'};
2916 if (!defined $parent) {
2919 open my $fd, "-|", git_cmd
(), "diff-tree", '-r', @diff_opts, $parent, $hash
2920 or die_error
(undef, "Open git-diff-tree failed");
2921 my @difftree = map { chomp; $_ } <$fd>;
2922 close $fd or die_error
(undef, "Reading git-diff-tree failed");
2924 # non-textual hash id's can be cached
2926 if ($hash =~ m/^[0-9a-fA-F]{40}$/) {
2929 my $refs = git_get_references
();
2930 my $ref = format_ref_marker
($refs, $co{'id'});
2932 my $have_snapshot = gitweb_have_snapshot
();
2935 if (defined $file_name && defined $co{'parent'}) {
2937 $cgi->a({-href
=> href
(action
=>"blame", hash_parent
=>$parent, file_name
=>$file_name)},
2940 if (defined $co{'parent'}) {
2942 $cgi->a({-href
=> href
(action
=>"shortlog", hash
=>$hash)}, "shortlog"),
2943 $cgi->a({-href
=> href
(action
=>"log", hash
=>$hash)}, "log");
2945 git_header_html
(undef, $expires);
2946 git_print_page_nav
('commit', defined $co{'parent'} ?
'' : 'commitdiff',
2947 $hash, $co{'tree'}, $hash,
2948 join (' | ', @views_nav));
2950 if (defined $co{'parent'}) {
2951 git_print_header_div
('commitdiff', esc_html
($co{'title'}) . $ref, $hash);
2953 git_print_header_div
('tree', esc_html
($co{'title'}) . $ref, $co{'tree'}, $hash);
2955 print "<div class=\"title_text\">\n" .
2956 "<table cellspacing=\"0\">\n";
2957 print "<tr><td>author</td><td>" . esc_html
($co{'author'}) . "</td></tr>\n".
2959 "<td></td><td> $ad{'rfc2822'}";
2960 if ($ad{'hour_local'} < 6) {
2961 printf(" (<span class=\"atnight\">%02d:%02d</span> %s)",
2962 $ad{'hour_local'}, $ad{'minute_local'}, $ad{'tz_local'});
2964 printf(" (%02d:%02d %s)",
2965 $ad{'hour_local'}, $ad{'minute_local'}, $ad{'tz_local'});
2969 print "<tr><td>committer</td><td>" . esc_html
($co{'committer'}) . "</td></tr>\n";
2970 print "<tr><td></td><td> $cd{'rfc2822'}" .
2971 sprintf(" (%02d:%02d %s)", $cd{'hour_local'}, $cd{'minute_local'}, $cd{'tz_local'}) .
2973 print "<tr><td>commit</td><td class=\"sha1\">$co{'id'}</td></tr>\n";
2976 "<td class=\"sha1\">" .
2977 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$co{'tree'}, hash_base
=>$hash),
2978 class => "list"}, $co{'tree'}) .
2980 "<td class=\"link\">" .
2981 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$co{'tree'}, hash_base
=>$hash)},
2983 if ($have_snapshot) {
2985 $cgi->a({-href
=> href
(action
=>"snapshot", hash
=>$hash)}, "snapshot");
2989 my $parents = $co{'parents'};
2990 foreach my $par (@
$parents) {
2993 "<td class=\"sha1\">" .
2994 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$par),
2995 class => "list"}, $par) .
2997 "<td class=\"link\">" .
2998 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$par)}, "commit") .
3000 $cgi->a({-href
=> href
(action
=>"commitdiff", hash
=>$hash, hash_parent
=>$par)}, "diff") .
3007 print "<div class=\"page_body\">\n";
3008 git_print_log
($co{'comment'});
3011 git_difftree_body
(\
@difftree, $hash, $parent);
3017 my $format = shift || 'html';
3024 # preparing $fd and %diffinfo for git_patchset_body
3026 if (defined $hash_base && defined $hash_parent_base) {
3027 if (defined $file_name) {
3029 open $fd, "-|", git_cmd
(), "diff-tree", '-r', @diff_opts, $hash_parent_base, $hash_base,
3031 or die_error
(undef, "Open git-diff-tree failed");
3032 @difftree = map { chomp; $_ } <$fd>;
3034 or die_error
(undef, "Reading git-diff-tree failed");
3036 or die_error
('404 Not Found', "Blob diff not found");
3038 } elsif (defined $hash &&
3039 $hash =~ /[0-9a-fA-F]{40}/) {
3040 # try to find filename from $hash
3042 # read filtered raw output
3043 open $fd, "-|", git_cmd
(), "diff-tree", '-r', @diff_opts, $hash_parent_base, $hash_base
3044 or die_error
(undef, "Open git-diff-tree failed");
3046 # ':100644 100644 03b21826... 3b93d5e7... M ls-files.c'
3048 grep { /^:[0-7]{6} [0-7]{6} [0-9a-fA-F]{40} $hash/ }
3049 map { chomp; $_ } <$fd>;
3051 or die_error
(undef, "Reading git-diff-tree failed");
3053 or die_error
('404 Not Found', "Blob diff not found");
3056 die_error
('404 Not Found', "Missing one of the blob diff parameters");
3059 if (@difftree > 1) {
3060 die_error
('404 Not Found', "Ambiguous blob diff specification");
3063 %diffinfo = parse_difftree_raw_line
($difftree[0]);
3064 $file_parent ||= $diffinfo{'from_file'} || $file_name || $diffinfo{'file'};
3065 $file_name ||= $diffinfo{'to_file'} || $diffinfo{'file'};
3067 $hash_parent ||= $diffinfo{'from_id'};
3068 $hash ||= $diffinfo{'to_id'};
3070 # non-textual hash id's can be cached
3071 if ($hash_base =~ m/^[0-9a-fA-F]{40}$/ &&
3072 $hash_parent_base =~ m/^[0-9a-fA-F]{40}$/) {
3077 open $fd, "-|", git_cmd
(), "diff-tree", '-r', @diff_opts,
3078 '-p', $hash_parent_base, $hash_base,
3080 or die_error
(undef, "Open git-diff-tree failed");
3083 # old/legacy style URI
3084 if (!%diffinfo && # if new style URI failed
3085 defined $hash && defined $hash_parent) {
3086 # fake git-diff-tree raw output
3087 $diffinfo{'from_mode'} = $diffinfo{'to_mode'} = "blob";
3088 $diffinfo{'from_id'} = $hash_parent;
3089 $diffinfo{'to_id'} = $hash;
3090 if (defined $file_name) {
3091 if (defined $file_parent) {
3092 $diffinfo{'status'} = '2';
3093 $diffinfo{'from_file'} = $file_parent;
3094 $diffinfo{'to_file'} = $file_name;
3095 } else { # assume not renamed
3096 $diffinfo{'status'} = '1';
3097 $diffinfo{'from_file'} = $file_name;
3098 $diffinfo{'to_file'} = $file_name;
3100 } else { # no filename given
3101 $diffinfo{'status'} = '2';
3102 $diffinfo{'from_file'} = $hash_parent;
3103 $diffinfo{'to_file'} = $hash;
3106 # non-textual hash id's can be cached
3107 if ($hash =~ m/^[0-9a-fA-F]{40}$/ &&
3108 $hash_parent =~ m/^[0-9a-fA-F]{40}$/) {
3113 open $fd, "-|", git_cmd
(), "diff", '-p', @diff_opts, $hash_parent, $hash
3114 or die_error
(undef, "Open git-diff failed");
3116 die_error
('404 Not Found', "Missing one of the blob diff parameters")
3121 if ($format eq 'html') {
3123 $cgi->a({-href
=> href
(action
=>"blobdiff_plain",
3124 hash
=>$hash, hash_parent
=>$hash_parent,
3125 hash_base
=>$hash_base, hash_parent_base
=>$hash_parent_base,
3126 file_name
=>$file_name, file_parent
=>$file_parent)},
3128 git_header_html
(undef, $expires);
3129 if (defined $hash_base && (my %co = parse_commit
($hash_base))) {
3130 git_print_page_nav
('','', $hash_base,$co{'tree'},$hash_base, $formats_nav);
3131 git_print_header_div
('commit', esc_html
($co{'title'}), $hash_base);
3133 print "<div class=\"page_nav\"><br/>$formats_nav<br/></div>\n";
3134 print "<div class=\"title\">$hash vs $hash_parent</div>\n";
3136 if (defined $file_name) {
3137 git_print_page_path
($file_name, "blob", $hash_base);
3139 print "<div class=\"page_path\"></div>\n";
3142 } elsif ($format eq 'plain') {
3144 -type
=> 'text/plain',
3145 -charset
=> 'utf-8',
3146 -expires
=> $expires,
3147 -content_disposition
=> 'inline; filename="' . "$file_name" . '.patch"');
3149 print "X-Git-Url: " . $cgi->self_url() . "\n\n";
3152 die_error
(undef, "Unknown blobdiff format");
3156 if ($format eq 'html') {
3157 print "<div class=\"page_body\">\n";
3159 git_patchset_body
($fd, [ \
%diffinfo ], $hash_base, $hash_parent_base);
3162 print "</div>\n"; # class="page_body"
3166 while (my $line = <$fd>) {
3167 $line =~ s!a/($hash|$hash_parent)!'a/'.esc_html($diffinfo{'from_file'})!eg;
3168 $line =~ s!b/($hash|$hash_parent)!'b/'.esc_html($diffinfo{'to_file'})!eg;
3172 last if $line =~ m!^\+\+\+!;
3180 sub git_blobdiff_plain
{
3181 git_blobdiff
('plain');
3184 sub git_commitdiff
{
3185 my $format = shift || 'html';
3186 my %co = parse_commit
($hash);
3188 die_error
(undef, "Unknown commit object");
3190 if (!defined $hash_parent) {
3191 $hash_parent = $co{'parent'} || '--root';
3197 if ($format eq 'html') {
3198 open $fd, "-|", git_cmd
(), "diff-tree", '-r', @diff_opts,
3199 "--patch-with-raw", "--full-index", $hash_parent, $hash
3200 or die_error
(undef, "Open git-diff-tree failed");
3202 while (chomp(my $line = <$fd>)) {
3203 # empty line ends raw part of diff-tree output
3205 push @difftree, $line;
3208 } elsif ($format eq 'plain') {
3209 open $fd, "-|", git_cmd
(), "diff-tree", '-r', @diff_opts,
3210 '-p', $hash_parent, $hash
3211 or die_error
(undef, "Open git-diff-tree failed");
3214 die_error
(undef, "Unknown commitdiff format");
3217 # non-textual hash id's can be cached
3219 if ($hash =~ m/^[0-9a-fA-F]{40}$/) {
3223 # write commit message
3224 if ($format eq 'html') {
3225 my $refs = git_get_references
();
3226 my $ref = format_ref_marker
($refs, $co{'id'});
3228 $cgi->a({-href
=> href
(action
=>"commitdiff_plain",
3229 hash
=>$hash, hash_parent
=>$hash_parent)},
3232 git_header_html
(undef, $expires);
3233 git_print_page_nav
('commitdiff','', $hash,$co{'tree'},$hash, $formats_nav);
3234 git_print_header_div
('commit', esc_html
($co{'title'}) . $ref, $hash);
3235 git_print_authorship
(\
%co);
3236 print "<div class=\"page_body\">\n";
3237 print "<div class=\"log\">\n";
3238 git_print_simplified_log
($co{'comment'}, 1); # skip title
3239 print "</div>\n"; # class="log"
3241 } elsif ($format eq 'plain') {
3242 my $refs = git_get_references
("tags");
3243 my $tagname = git_get_rev_name_tags
($hash);
3244 my $filename = basename
($project) . "-$hash.patch";
3247 -type
=> 'text/plain',
3248 -charset
=> 'utf-8',
3249 -expires
=> $expires,
3250 -content_disposition
=> 'inline; filename="' . "$filename" . '"');
3251 my %ad = parse_date
($co{'author_epoch'}, $co{'author_tz'});
3254 Date: $ad{'rfc2822'} ($ad{'tz_local'})
3255 Subject: $co{'title'}
3257 print "X-Git-Tag: $tagname\n" if $tagname;
3258 print "X-Git-Url: " . $cgi->self_url() . "\n\n";
3260 foreach my $line (@
{$co{'comment'}}) {
3267 if ($format eq 'html') {
3268 git_difftree_body
(\
@difftree, $hash, $hash_parent);
3271 git_patchset_body
($fd, \
@difftree, $hash, $hash_parent);
3273 print "</div>\n"; # class="page_body"
3276 } elsif ($format eq 'plain') {
3280 or print "Reading git-diff-tree failed\n";
3284 sub git_commitdiff_plain
{
3285 git_commitdiff
('plain');
3289 if (!defined $hash_base) {
3290 $hash_base = git_get_head_hash
($project);
3292 if (!defined $page) {
3296 my %co = parse_commit
($hash_base);
3298 die_error
(undef, "Unknown commit object");
3301 my $refs = git_get_references
();
3302 my $limit = sprintf("--max-count=%i", (100 * ($page+1)));
3304 if (!defined $hash && defined $file_name) {
3305 $hash = git_get_hash_by_path
($hash_base, $file_name);
3307 if (defined $hash) {
3308 $ftype = git_get_type
($hash);
3312 git_cmd
(), "rev-list", $limit, "--full-history", $hash_base, "--", $file_name
3313 or die_error
(undef, "Open git-rev-list-failed");
3314 my @revlist = map { chomp; $_ } <$fd>;
3316 or die_error
(undef, "Reading git-rev-list failed");
3318 my $paging_nav = '';
3321 $cgi->a({-href
=> href
(action
=>"history", hash
=>$hash, hash_base
=>$hash_base,
3322 file_name
=>$file_name)},
3324 $paging_nav .= " ⋅ " .
3325 $cgi->a({-href
=> href
(action
=>"history", hash
=>$hash, hash_base
=>$hash_base,
3326 file_name
=>$file_name, page
=>$page-1),
3327 -accesskey
=> "p", -title
=> "Alt-p"}, "prev");
3329 $paging_nav .= "first";
3330 $paging_nav .= " ⋅ prev";
3332 if ($#revlist >= (100 * ($page+1)-1)) {
3333 $paging_nav .= " ⋅ " .
3334 $cgi->a({-href
=> href
(action
=>"history", hash
=>$hash, hash_base
=>$hash_base,
3335 file_name
=>$file_name, page
=>$page+1),
3336 -accesskey
=> "n", -title
=> "Alt-n"}, "next");
3338 $paging_nav .= " ⋅ next";
3341 if ($#revlist >= (100 * ($page+1)-1)) {
3343 $cgi->a({-href
=> href
(action
=>"history", hash
=>$hash, hash_base
=>$hash_base,
3344 file_name
=>$file_name, page
=>$page+1),
3345 -title
=> "Alt-n"}, "next");
3349 git_print_page_nav
('history','', $hash_base,$co{'tree'},$hash_base, $paging_nav);
3350 git_print_header_div
('commit', esc_html
($co{'title'}), $hash_base);
3351 git_print_page_path
($file_name, $ftype, $hash_base);
3353 git_history_body
(\
@revlist, ($page * 100), $#revlist,
3354 $refs, $hash_base, $ftype, $next_link);
3360 if (!defined $searchtext) {
3361 die_error
(undef, "Text field empty");
3363 if (!defined $hash) {
3364 $hash = git_get_head_hash
($project);
3366 my %co = parse_commit
($hash);
3368 die_error
(undef, "Unknown commit object");
3371 my $commit_search = 1;
3372 my $author_search = 0;
3373 my $committer_search = 0;
3374 my $pickaxe_search = 0;
3375 if ($searchtext =~ s/^author\\://i) {
3377 } elsif ($searchtext =~ s/^committer\\://i) {
3378 $committer_search = 1;
3379 } elsif ($searchtext =~ s/^pickaxe\\://i) {
3381 $pickaxe_search = 1;
3383 # pickaxe may take all resources of your box and run for several minutes
3384 # with every query - so decide by yourself how public you make this feature
3385 my ($have_pickaxe) = gitweb_check_feature
('pickaxe');
3386 if (!$have_pickaxe) {
3387 die_error
('403 Permission denied', "Permission denied");
3391 git_print_page_nav
('','', $hash,$co{'tree'},$hash);
3392 git_print_header_div
('commit', esc_html
($co{'title'}), $hash);
3394 print "<table cellspacing=\"0\">\n";
3396 if ($commit_search) {
3398 open my $fd, "-|", git_cmd
(), "rev-list", "--header", "--parents", $hash or next;
3399 while (my $commit_text = <$fd>) {
3400 if (!grep m/$searchtext/i, $commit_text) {
3403 if ($author_search && !grep m/\nauthor .*$searchtext/i, $commit_text) {
3406 if ($committer_search && !grep m/\ncommitter .*$searchtext/i, $commit_text) {
3409 my @commit_lines = split "\n", $commit_text;
3410 my %co = parse_commit
(undef, \
@commit_lines);
3415 print "<tr class=\"dark\">\n";
3417 print "<tr class=\"light\">\n";
3420 print "<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n" .
3421 "<td><i>" . esc_html
(chop_str
($co{'author_name'}, 15, 5)) . "</i></td>\n" .
3423 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$co{'id'}), -class => "list subject"},
3424 esc_html
(chop_str
($co{'title'}, 50)) . "<br/>");
3425 my $comment = $co{'comment'};
3426 foreach my $line (@
$comment) {
3427 if ($line =~ m/^(.*)($searchtext)(.*)$/i) {
3428 my $lead = esc_html
($1) || "";
3429 $lead = chop_str
($lead, 30, 10);
3430 my $match = esc_html
($2) || "";
3431 my $trail = esc_html
($3) || "";
3432 $trail = chop_str
($trail, 30, 10);
3433 my $text = "$lead<span class=\"match\">$match</span>$trail";
3434 print chop_str
($text, 80, 5) . "<br/>\n";
3438 "<td class=\"link\">" .
3439 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$co{'id'})}, "commit") .
3441 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$co{'tree'}, hash_base
=>$co{'id'})}, "tree");
3448 if ($pickaxe_search) {
3450 my $git_command = git_cmd_str
();
3451 open my $fd, "-|", "$git_command rev-list $hash | " .
3452 "$git_command diff-tree -r --stdin -S\'$searchtext\'";
3455 while (my $line = <$fd>) {
3456 if (%co && $line =~ m/^:([0-7]{6}) ([0-7]{6}) ([0-9a-fA-F]{40}) ([0-9a-fA-F]{40}) (.)\t(.*)$/) {
3459 $set{'from_id'} = $3;
3461 $set{'id'} = $set{'to_id'};
3462 if ($set{'id'} =~ m/0{40}/) {
3463 $set{'id'} = $set{'from_id'};
3465 if ($set{'id'} =~ m/0{40}/) {
3469 } elsif ($line =~ m/^([0-9a-fA-F]{40})$/){
3472 print "<tr class=\"dark\">\n";
3474 print "<tr class=\"light\">\n";
3477 print "<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n" .
3478 "<td><i>" . esc_html
(chop_str
($co{'author_name'}, 15, 5)) . "</i></td>\n" .
3480 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$co{'id'}),
3481 -class => "list subject"},
3482 esc_html
(chop_str
($co{'title'}, 50)) . "<br/>");
3483 while (my $setref = shift @files) {
3485 print $cgi->a({-href
=> href
(action
=>"blob", hash_base
=>$co{'id'},
3486 hash
=>$set{'id'}, file_name
=>$set{'file'}),
3488 "<span class=\"match\">" . esc_html
($set{'file'}) . "</span>") .
3492 "<td class=\"link\">" .
3493 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$co{'id'})}, "commit") .
3495 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$co{'tree'}, hash_base
=>$co{'id'})}, "tree");
3499 %co = parse_commit
($1);
3509 my $head = git_get_head_hash
($project);
3510 if (!defined $hash) {
3513 if (!defined $page) {
3516 my $refs = git_get_references
();
3518 my $limit = sprintf("--max-count=%i", (100 * ($page+1)));
3519 open my $fd, "-|", git_cmd
(), "rev-list", $limit, $hash
3520 or die_error
(undef, "Open git-rev-list failed");
3521 my @revlist = map { chomp; $_ } <$fd>;
3524 my $paging_nav = format_paging_nav
('shortlog', $hash, $head, $page, $#revlist);
3526 if ($#revlist >= (100 * ($page+1)-1)) {
3528 $cgi->a({-href
=> href
(action
=>"shortlog", hash
=>$hash, page
=>$page+1),
3529 -title
=> "Alt-n"}, "next");
3534 git_print_page_nav
('shortlog','', $hash,$hash,$hash, $paging_nav);
3535 git_print_header_div
('summary', $project);
3537 git_shortlog_body
(\
@revlist, ($page * 100), $#revlist, $refs, $next_link);
3542 ## ......................................................................
3543 ## feeds (RSS, OPML)
3546 # http://www.notestips.com/80256B3A007F2692/1/NAMO5P9UPQ
3547 open my $fd, "-|", git_cmd
(), "rev-list", "--max-count=150", git_get_head_hash
($project)
3548 or die_error
(undef, "Open git-rev-list failed");
3549 my @revlist = map { chomp; $_ } <$fd>;
3550 close $fd or die_error
(undef, "Reading git-rev-list failed");
3551 print $cgi->header(-type
=> 'text/xml', -charset
=> 'utf-8');
3553 <?xml version="1.0" encoding="utf-8"?>
3554 <rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/">
3556 <title>$project $my_uri $my_url</title>
3557 <link>${\esc_html("$my_url?p=$project;a=summary")}</link>
3558 <description>$project log</description>
3559 <language>en</language>
3562 for (my $i = 0; $i <= $#revlist; $i++) {
3563 my $commit = $revlist[$i];
3564 my %co = parse_commit
($commit);
3565 # we read 150, we always show 30 and the ones more recent than 48 hours
3566 if (($i >= 20) && ((time - $co{'committer_epoch'}) > 48*60*60)) {
3569 my %cd = parse_date
($co{'committer_epoch'});
3570 open $fd, "-|", git_cmd
(), "diff-tree", '-r', @diff_opts,
3571 $co{'parent'}, $co{'id'}
3573 my @difftree = map { chomp; $_ } <$fd>;
3578 sprintf("%d %s %02d:%02d", $cd{'mday'}, $cd{'month'}, $cd{'hour'}, $cd{'minute'}) . " - " . esc_html
($co{'title'}) .
3580 "<author>" . esc_html
($co{'author'}) . "</author>\n" .
3581 "<pubDate>$cd{'rfc2822'}</pubDate>\n" .
3582 "<guid isPermaLink=\"true\">" . esc_html
("$my_url?p=$project;a=commit;h=$commit") . "</guid>\n" .
3583 "<link>" . esc_html
("$my_url?p=$project;a=commit;h=$commit") . "</link>\n" .
3584 "<description>" . esc_html
($co{'title'}) . "</description>\n" .
3585 "<content:encoded>" .
3587 my $comment = $co{'comment'};
3588 foreach my $line (@
$comment) {
3589 $line = decode
("utf8", $line, Encode
::FB_DEFAULT
);
3590 print "$line<br/>\n";
3593 foreach my $line (@difftree) {
3594 if (!($line =~ m/^:([0-7]{6}) ([0-7]{6}) ([0-9a-fA-F]{40}) ([0-9a-fA-F]{40}) (.)([0-9]{0,3})\t(.*)$/)) {
3597 my $file = esc_html
(unquote
($7));
3598 $file = decode
("utf8", $file, Encode
::FB_DEFAULT
);
3599 print "$file<br/>\n";
3602 "</content:encoded>\n" .
3605 print "</channel></rss>";
3609 my @list = git_get_projects_list
();
3611 print $cgi->header(-type
=> 'text/xml', -charset
=> 'utf-8');
3613 <?xml version="1.0" encoding="utf-8"?>
3614 <opml version="1.0">
3616 <title>$site_name Git OPML Export</title>
3619 <outline text="git RSS feeds">
3622 foreach my $pr (@list) {
3624 my $head = git_get_head_hash
($proj{'path'});
3625 if (!defined $head) {
3628 $git_dir = "$projectroot/$proj{'path'}";
3629 my %co = parse_commit
($head);
3634 my $path = esc_html
(chop_str
($proj{'path'}, 25, 5));
3635 my $rss = "$my_url?p=$proj{'path'};a=rss";
3636 my $html = "$my_url?p=$proj{'path'};a=summary";
3637 print "<outline type=\"rss\" text=\"$path\" title=\"$path\" xmlUrl=\"$rss\" htmlUrl=\"$html\"/>\n";