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 CGI
->compile() if $ENV{'MOD_PERL'};
26 our $version = "++GIT_VERSION++";
27 our $my_url = $cgi->url();
28 our $my_uri = $cgi->url(-absolute
=> 1);
30 # core git executable to use
31 # this can just be "git" if your webserver has a sensible PATH
32 our $GIT = "++GIT_BINDIR++/git";
34 # absolute fs-path which will be prepended to the project path
35 #our $projectroot = "/pub/scm";
36 our $projectroot = "++GITWEB_PROJECTROOT++";
38 # target of the home link on top of all pages
39 our $home_link = $my_uri || "/";
41 # string of the home link on top of all pages
42 our $home_link_str = "++GITWEB_HOME_LINK_STR++";
44 # name of your site or organization to appear in page titles
45 # replace this with something more descriptive for clearer bookmarks
46 our $site_name = "++GITWEB_SITENAME++"
47 || ($ENV{'SERVER_NAME'} || "Untitled") . " Git";
49 # filename of html text to include at top of each page
50 our $site_header = "++GITWEB_SITE_HEADER++";
51 # html text to include at home page
52 our $home_text = "++GITWEB_HOMETEXT++";
53 # filename of html text to include at bottom of each page
54 our $site_footer = "++GITWEB_SITE_FOOTER++";
57 our @stylesheets = ("++GITWEB_CSS++");
58 # URI of a single stylesheet, which can be overridden in GITWEB_CONFIG.
59 our $stylesheet = undef;
60 # URI of GIT logo (72x27 size)
61 our $logo = "++GITWEB_LOGO++";
62 # URI of GIT favicon, assumed to be image/png type
63 our $favicon = "++GITWEB_FAVICON++";
65 # URI and label (title) of GIT logo link
66 #our $logo_url = "http://www.kernel.org/pub/software/scm/git/docs/";
67 #our $logo_label = "git documentation";
68 our $logo_url = "http://git.or.cz/";
69 our $logo_label = "git homepage";
71 # source of projects list
72 our $projects_list = "++GITWEB_LIST++";
74 # the width (in characters) of the projects list "Description" column
75 our $projects_list_description_width = 25;
77 # default order of projects list
78 # valid values are none, project, descr, owner, and age
79 our $default_projects_order = "project";
81 # show repository only if this file exists
82 # (only effective if this variable evaluates to true)
83 our $export_ok = "++GITWEB_EXPORT_OK++";
85 # only allow viewing of repositories also shown on the overview page
86 our $strict_export = "++GITWEB_STRICT_EXPORT++";
88 # list of git base URLs used for URL to where fetch project from,
89 # i.e. full URL is "$git_base_url/$project"
90 our @git_base_url_list = grep { $_ ne '' } ("++GITWEB_BASE_URL++");
92 # default blob_plain mimetype and default charset for text/plain blob
93 our $default_blob_plain_mimetype = 'text/plain';
94 our $default_text_plain_charset = undef;
96 # file to use for guessing MIME types before trying /etc/mime.types
97 # (relative to the current git repository)
98 our $mimetypes_file = undef;
100 # assume this charset if line contains non-UTF-8 characters;
101 # it should be valid encoding (see Encoding::Supported(3pm) for list),
102 # for which encoding all byte sequences are valid, for example
103 # 'iso-8859-1' aka 'latin1' (it is decoded without checking, so it
104 # could be even 'utf-8' for the old behavior)
105 our $fallback_encoding = 'latin1';
107 # rename detection options for git-diff and git-diff-tree
108 # - default is '-M', with the cost proportional to
109 # (number of removed files) * (number of new files).
110 # - more costly is '-C' (which implies '-M'), with the cost proportional to
111 # (number of changed files + number of removed files) * (number of new files)
112 # - even more costly is '-C', '--find-copies-harder' with cost
113 # (number of files in the original tree) * (number of new files)
114 # - one might want to include '-B' option, e.g. '-B', '-M'
115 our @diff_opts = ('-M'); # taken from git_commit
117 # information about snapshot formats that gitweb is capable of serving
118 our %known_snapshot_formats = (
120 # 'display' => display name,
121 # 'type' => mime type,
122 # 'suffix' => filename suffix,
123 # 'format' => --format for git-archive,
124 # 'compressor' => [compressor command and arguments]
125 # (array reference, optional)}
128 'display' => 'tar.gz',
129 'type' => 'application/x-gzip',
130 'suffix' => '.tar.gz',
132 'compressor' => ['gzip']},
135 'display' => 'tar.bz2',
136 'type' => 'application/x-bzip2',
137 'suffix' => '.tar.bz2',
139 'compressor' => ['bzip2']},
143 'type' => 'application/x-zip',
148 # Aliases so we understand old gitweb.snapshot values in repository
150 our %known_snapshot_format_aliases = (
154 # backward compatibility: legacy gitweb config support
155 'x-gzip' => undef, 'gz' => undef,
156 'x-bzip2' => undef, 'bz2' => undef,
157 'x-zip' => undef, '' => undef,
160 # You define site-wide feature defaults here; override them with
161 # $GITWEB_CONFIG as necessary.
164 # 'sub' => feature-sub (subroutine),
165 # 'override' => allow-override (boolean),
166 # 'default' => [ default options...] (array reference)}
168 # if feature is overridable (it means that allow-override has true value),
169 # then feature-sub will be called with default options as parameters;
170 # return value of feature-sub indicates if to enable specified feature
172 # if there is no 'sub' key (no feature-sub), then feature cannot be
175 # use gitweb_check_feature(<feature>) to check if <feature> is enabled
177 # Enable the 'blame' blob view, showing the last commit that modified
178 # each line in the file. This can be very CPU-intensive.
180 # To enable system wide have in $GITWEB_CONFIG
181 # $feature{'blame'}{'default'} = [1];
182 # To have project specific config enable override in $GITWEB_CONFIG
183 # $feature{'blame'}{'override'} = 1;
184 # and in project config gitweb.blame = 0|1;
186 'sub' => \
&feature_blame
,
190 # Enable the 'snapshot' link, providing a compressed archive of any
191 # tree. This can potentially generate high traffic if you have large
194 # Value is a list of formats defined in %known_snapshot_formats that
196 # To disable system wide have in $GITWEB_CONFIG
197 # $feature{'snapshot'}{'default'} = [];
198 # To have project specific config enable override in $GITWEB_CONFIG
199 # $feature{'snapshot'}{'override'} = 1;
200 # and in project config, a comma-separated list of formats or "none"
201 # to disable. Example: gitweb.snapshot = tbz2,zip;
203 'sub' => \
&feature_snapshot
,
205 'default' => ['tgz']},
207 # Enable text search, which will list the commits which match author,
208 # committer or commit text to a given string. Enabled by default.
209 # Project specific override is not supported.
214 # Enable grep search, which will list the files in currently selected
215 # tree containing the given string. Enabled by default. This can be
216 # potentially CPU-intensive, of course.
218 # To enable system wide have in $GITWEB_CONFIG
219 # $feature{'grep'}{'default'} = [1];
220 # To have project specific config enable override in $GITWEB_CONFIG
221 # $feature{'grep'}{'override'} = 1;
222 # and in project config gitweb.grep = 0|1;
227 # Enable the pickaxe search, which will list the commits that modified
228 # a given string in a file. This can be practical and quite faster
229 # alternative to 'blame', but still potentially CPU-intensive.
231 # To enable system wide have in $GITWEB_CONFIG
232 # $feature{'pickaxe'}{'default'} = [1];
233 # To have project specific config enable override in $GITWEB_CONFIG
234 # $feature{'pickaxe'}{'override'} = 1;
235 # and in project config gitweb.pickaxe = 0|1;
237 'sub' => \
&feature_pickaxe
,
241 # Make gitweb use an alternative format of the URLs which can be
242 # more readable and natural-looking: project name is embedded
243 # directly in the path and the query string contains other
244 # auxiliary information. All gitweb installations recognize
245 # URL in either format; this configures in which formats gitweb
248 # To enable system wide have in $GITWEB_CONFIG
249 # $feature{'pathinfo'}{'default'} = [1];
250 # Project specific override is not supported.
252 # Note that you will need to change the default location of CSS,
253 # favicon, logo and possibly other files to an absolute URL. Also,
254 # if gitweb.cgi serves as your indexfile, you will need to force
255 # $my_uri to contain the script name in your $GITWEB_CONFIG.
260 # Make gitweb consider projects in project root subdirectories
261 # to be forks of existing projects. Given project $projname.git,
262 # projects matching $projname/*.git will not be shown in the main
263 # projects list, instead a '+' mark will be added to $projname
264 # there and a 'forks' view will be enabled for the project, listing
265 # all the forks. If project list is taken from a file, forks have
266 # to be listed after the main project.
268 # To enable system wide have in $GITWEB_CONFIG
269 # $feature{'forks'}{'default'} = [1];
270 # Project specific override is not supported.
276 sub gitweb_check_feature
{
278 return unless exists $feature{$name};
279 my ($sub, $override, @defaults) = (
280 $feature{$name}{'sub'},
281 $feature{$name}{'override'},
282 @
{$feature{$name}{'default'}});
283 if (!$override) { return @defaults; }
285 warn "feature $name is not overrideable";
288 return $sub->(@defaults);
292 my ($val) = git_get_project_config
('blame', '--bool');
294 if ($val eq 'true') {
296 } elsif ($val eq 'false') {
303 sub feature_snapshot
{
306 my ($val) = git_get_project_config
('snapshot');
309 @fmts = ($val eq 'none' ?
() : split /\s*[,\s]\s*/, $val);
316 my ($val) = git_get_project_config
('grep', '--bool');
318 if ($val eq 'true') {
320 } elsif ($val eq 'false') {
327 sub feature_pickaxe
{
328 my ($val) = git_get_project_config
('pickaxe', '--bool');
330 if ($val eq 'true') {
332 } elsif ($val eq 'false') {
339 # checking HEAD file with -e is fragile if the repository was
340 # initialized long time ago (i.e. symlink HEAD) and was pack-ref'ed
342 sub check_head_link
{
344 my $headfile = "$dir/HEAD";
345 return ((-e
$headfile) ||
346 (-l
$headfile && readlink($headfile) =~ /^refs\/heads\
//));
349 sub check_export_ok
{
351 return (check_head_link
($dir) &&
352 (!$export_ok || -e
"$dir/$export_ok"));
355 # process alternate names for backward compatibility
356 # filter out unsupported (unknown) snapshot formats
357 sub filter_snapshot_fmts
{
361 exists $known_snapshot_format_aliases{$_} ?
362 $known_snapshot_format_aliases{$_} : $_} @fmts;
363 @fmts = grep(exists $known_snapshot_formats{$_}, @fmts);
367 our $GITWEB_CONFIG = $ENV{'GITWEB_CONFIG'} || "++GITWEB_CONFIG++";
368 do $GITWEB_CONFIG if -e
$GITWEB_CONFIG;
370 # version of the core git binary
371 our $git_version = qx($GIT --version
) =~ m/git version (.*)$/ ?
$1 : "unknown";
373 $projects_list ||= $projectroot;
375 # ======================================================================
376 # input validation and dispatch
377 our $action = $cgi->param('a');
378 if (defined $action) {
379 if ($action =~ m/[^0-9a-zA-Z\.\-_]/) {
380 die_error
(undef, "Invalid action parameter");
384 # parameters which are pathnames
385 our $project = $cgi->param('p');
386 if (defined $project) {
387 if (!validate_pathname
($project) ||
388 !(-d
"$projectroot/$project") ||
389 !check_head_link
("$projectroot/$project") ||
390 ($export_ok && !(-e
"$projectroot/$project/$export_ok")) ||
391 ($strict_export && !project_in_list
($project))) {
393 die_error
(undef, "No such project");
397 our $file_name = $cgi->param('f');
398 if (defined $file_name) {
399 if (!validate_pathname
($file_name)) {
400 die_error
(undef, "Invalid file parameter");
404 our $file_parent = $cgi->param('fp');
405 if (defined $file_parent) {
406 if (!validate_pathname
($file_parent)) {
407 die_error
(undef, "Invalid file parent parameter");
411 # parameters which are refnames
412 our $hash = $cgi->param('h');
414 if (!validate_refname
($hash)) {
415 die_error
(undef, "Invalid hash parameter");
419 our $hash_parent = $cgi->param('hp');
420 if (defined $hash_parent) {
421 if (!validate_refname
($hash_parent)) {
422 die_error
(undef, "Invalid hash parent parameter");
426 our $hash_base = $cgi->param('hb');
427 if (defined $hash_base) {
428 if (!validate_refname
($hash_base)) {
429 die_error
(undef, "Invalid hash base parameter");
433 my %allowed_options = (
434 "--no-merges" => [ qw(rss atom log shortlog history) ],
437 our @extra_options = $cgi->param('opt');
438 if (defined @extra_options) {
439 foreach my $opt (@extra_options) {
440 if (not exists $allowed_options{$opt}) {
441 die_error
(undef, "Invalid option parameter");
443 if (not grep(/^$action$/, @
{$allowed_options{$opt}})) {
444 die_error
(undef, "Invalid option parameter for this action");
449 our $hash_parent_base = $cgi->param('hpb');
450 if (defined $hash_parent_base) {
451 if (!validate_refname
($hash_parent_base)) {
452 die_error
(undef, "Invalid hash parent base parameter");
457 our $page = $cgi->param('pg');
459 if ($page =~ m/[^0-9]/) {
460 die_error
(undef, "Invalid page parameter");
464 our $searchtype = $cgi->param('st');
465 if (defined $searchtype) {
466 if ($searchtype =~ m/[^a-z]/) {
467 die_error
(undef, "Invalid searchtype parameter");
471 our $searchtext = $cgi->param('s');
473 if (defined $searchtext) {
474 if ($searchtype ne 'grep' and $searchtype ne 'pickaxe' and $searchtext =~ m/[^a-zA-Z0-9_\.\/\
-\
+\
:\@
]/) {
475 die_error
(undef, "Invalid search parameter");
477 if (length($searchtext) < 2) {
478 die_error
(undef, "At least two characters are required for search parameter");
480 $search_regexp = quotemeta $searchtext;
483 # now read PATH_INFO and use it as alternative to parameters
484 sub evaluate_path_info
{
485 return if defined $project;
486 my $path_info = $ENV{"PATH_INFO"};
487 return if !$path_info;
488 $path_info =~ s
,^/+,,;
489 return if !$path_info;
490 # find which part of PATH_INFO is project
491 $project = $path_info;
493 while ($project && !check_head_link
("$projectroot/$project")) {
494 $project =~ s
,/*[^/]*$,,;
497 $project = validate_pathname
($project);
499 ($export_ok && !-e
"$projectroot/$project/$export_ok") ||
500 ($strict_export && !project_in_list
($project))) {
504 # do not change any parameters if an action is given using the query string
506 $path_info =~ s
,^$project/*,,;
507 my ($refname, $pathname) = split(/:/, $path_info, 2);
508 if (defined $pathname) {
509 # we got "project.git/branch:filename" or "project.git/branch:dir/"
510 # we could use git_get_type(branch:pathname), but it needs $git_dir
511 $pathname =~ s
,^/+,,;
512 if (!$pathname || substr($pathname, -1) eq "/") {
516 $action ||= "blob_plain";
518 $hash_base ||= validate_refname
($refname);
519 $file_name ||= validate_pathname
($pathname);
520 } elsif (defined $refname) {
521 # we got "project.git/branch"
522 $action ||= "shortlog";
523 $hash ||= validate_refname
($refname);
526 evaluate_path_info
();
528 # path to the current git repository
530 $git_dir = "$projectroot/$project" if $project;
534 "blame" => \
&git_blame2
,
535 "blobdiff" => \
&git_blobdiff
,
536 "blobdiff_plain" => \
&git_blobdiff_plain
,
537 "blob" => \
&git_blob
,
538 "blob_plain" => \
&git_blob_plain
,
539 "commitdiff" => \
&git_commitdiff
,
540 "commitdiff_plain" => \
&git_commitdiff_plain
,
541 "commit" => \
&git_commit
,
542 "forks" => \
&git_forks
,
543 "heads" => \
&git_heads
,
544 "history" => \
&git_history
,
547 "atom" => \
&git_atom
,
548 "search" => \
&git_search
,
549 "search_help" => \
&git_search_help
,
550 "shortlog" => \
&git_shortlog
,
551 "summary" => \
&git_summary
,
553 "tags" => \
&git_tags
,
554 "tree" => \
&git_tree
,
555 "snapshot" => \
&git_snapshot
,
556 "object" => \
&git_object
,
557 # those below don't need $project
558 "opml" => \
&git_opml
,
559 "project_list" => \
&git_project_list
,
560 "project_index" => \
&git_project_index
,
563 if (!defined $action) {
565 $action = git_get_type
($hash);
566 } elsif (defined $hash_base && defined $file_name) {
567 $action = git_get_type
("$hash_base:$file_name");
568 } elsif (defined $project) {
571 $action = 'project_list';
574 if (!defined($actions{$action})) {
575 die_error
(undef, "Unknown action");
577 if ($action !~ m/^(opml|project_list|project_index)$/ &&
579 die_error
(undef, "Project needed");
581 $actions{$action}->();
584 ## ======================================================================
589 # default is to use -absolute url() i.e. $my_uri
590 my $href = $params{-full
} ?
$my_url : $my_uri;
592 # XXX: Warning: If you touch this, check the search form for updating,
603 hash_parent_base
=> "hpb",
608 snapshot_format
=> "sf",
609 extra_options
=> "opt",
611 my %mapping = @mapping;
613 $params{'project'} = $project unless exists $params{'project'};
615 my ($use_pathinfo) = gitweb_check_feature
('pathinfo');
617 # use PATH_INFO for project name
618 $href .= "/$params{'project'}" if defined $params{'project'};
619 delete $params{'project'};
621 # Summary just uses the project path URL
622 if (defined $params{'action'} && $params{'action'} eq 'summary') {
623 delete $params{'action'};
627 # now encode the parameters explicitly
629 for (my $i = 0; $i < @mapping; $i += 2) {
630 my ($name, $symbol) = ($mapping[$i], $mapping[$i+1]);
631 if (defined $params{$name}) {
632 if (ref($params{$name}) eq "ARRAY") {
633 foreach my $par (@
{$params{$name}}) {
634 push @result, $symbol . "=" . esc_param
($par);
637 push @result, $symbol . "=" . esc_param
($params{$name});
641 $href .= "?" . join(';', @result) if scalar @result;
647 ## ======================================================================
648 ## validation, quoting/unquoting and escaping
650 sub validate_pathname
{
651 my $input = shift || return undef;
653 # no '.' or '..' as elements of path, i.e. no '.' nor '..'
654 # at the beginning, at the end, and between slashes.
655 # also this catches doubled slashes
656 if ($input =~ m!(^|/)(|\.|\.\.)(/|$)!) {
660 if ($input =~ m!\0!) {
666 sub validate_refname
{
667 my $input = shift || return undef;
669 # textual hashes are O.K.
670 if ($input =~ m/^[0-9a-fA-F]{40}$/) {
673 # it must be correct pathname
674 $input = validate_pathname
($input)
676 # restrictions on ref name according to git-check-ref-format
677 if ($input =~ m!(/\.|\.\.|[\000-\040\177 ~^:?*\[]|/$)!) {
683 # decode sequences of octets in utf8 into Perl's internal form,
684 # which is utf-8 with utf8 flag set if needed. gitweb writes out
685 # in utf-8 thanks to "binmode STDOUT, ':utf8'" at beginning
689 eval { $res = decode_utf8
($str, Encode
::FB_CROAK
); };
693 return decode
($fallback_encoding, $str, Encode
::FB_DEFAULT
);
697 # quote unsafe chars, but keep the slash, even when it's not
698 # correct, but quoted slashes look too horrible in bookmarks
701 $str =~ s/([^A-Za-z0-9\-_.~()\/:@])/sprintf
("%%%02X", ord($1))/eg
;
707 # quote unsafe chars in whole URL, so some charactrs cannot be quoted
710 $str =~ s/([^A-Za-z0-9\-_.~();\/;?:@&=])/sprintf
("%%%02X", ord($1))/eg
;
716 # replace invalid utf8 character with SUBSTITUTION sequence
721 $str = to_utf8
($str);
722 $str = $cgi->escapeHTML($str);
723 if ($opts{'-nbsp'}) {
724 $str =~ s/ / /g;
726 $str =~ s
|([[:cntrl
:]])|(($1 ne "\t") ? quot_cec
($1) : $1)|eg
;
730 # quote control characters and escape filename to HTML
735 $str = to_utf8
($str);
736 $str = $cgi->escapeHTML($str);
737 if ($opts{'-nbsp'}) {
738 $str =~ s/ / /g;
740 $str =~ s
|([[:cntrl
:]])|quot_cec
($1)|eg
;
744 # Make control characters "printable", using character escape codes (CEC)
747 my %es = ( # character escape codes, aka escape sequences
748 "\t" => '\t', # tab (HT)
749 "\n" => '\n', # line feed (LF)
750 "\r" => '\r', # carrige return (CR)
751 "\f" => '\f', # form feed (FF)
752 "\b" => '\b', # backspace (BS)
753 "\a" => '\a', # alarm (bell) (BEL)
754 "\e" => '\e', # escape (ESC)
755 "\013" => '\v', # vertical tab (VT)
756 "\000" => '\0', # nul character (NUL)
758 my $chr = ( (exists $es{$cntrl})
760 : sprintf('\%03o', ord($cntrl)) );
761 return "<span class=\"cntrl\">$chr</span>";
764 # Alternatively use unicode control pictures codepoints,
765 # Unicode "printable representation" (PR)
768 my $chr = sprintf('&#%04d;', 0x2400+ord($cntrl));
769 return "<span class=\"cntrl\">$chr</span>";
772 # git may return quoted and escaped filenames
778 my %es = ( # character escape codes, aka escape sequences
779 't' => "\t", # tab (HT, TAB)
780 'n' => "\n", # newline (NL)
781 'r' => "\r", # return (CR)
782 'f' => "\f", # form feed (FF)
783 'b' => "\b", # backspace (BS)
784 'a' => "\a", # alarm (bell) (BEL)
785 'e' => "\e", # escape (ESC)
786 'v' => "\013", # vertical tab (VT)
789 if ($seq =~ m/^[0-7]{1,3}$/) {
790 # octal char sequence
791 return chr(oct($seq));
792 } elsif (exists $es{$seq}) {
793 # C escape sequence, aka character escape code
796 # quoted ordinary character
800 if ($str =~ m/^"(.*)"$/) {
803 $str =~ s/\\([^0-7]|[0-7]{1,3})/unq($1)/eg;
808 # escape tabs (convert tabs to spaces)
812 while ((my $pos = index($line, "\t")) != -1) {
813 if (my $count = (8 - ($pos % 8))) {
814 my $spaces = ' ' x
$count;
815 $line =~ s/\t/$spaces/;
822 sub project_in_list
{
824 my @list = git_get_projects_list
();
825 return @list && scalar(grep { $_->{'path'} eq $project } @list);
828 ## ----------------------------------------------------------------------
829 ## HTML aware string manipulation
834 my $add_len = shift || 10;
836 # allow only $len chars, but don't cut a word if it would fit in $add_len
837 # if it doesn't fit, cut it if it's still longer than the dots we would add
838 $str =~ m/^(.{0,$len}[^ \/\
-_
:\
.@
]{0,$add_len})(.*)/;
841 if (length($tail) > 4) {
843 $body =~ s/&[^;]*$//; # remove chopped character entities
848 ## ----------------------------------------------------------------------
849 ## functions returning short strings
851 # CSS class for given age value (in seconds)
857 } elsif ($age < 60*60*2) {
859 } elsif ($age < 60*60*24*2) {
866 # convert age in seconds to "nn units ago" string
871 if ($age > 60*60*24*365*2) {
872 $age_str = (int $age/60/60/24/365);
873 $age_str .= " years ago";
874 } elsif ($age > 60*60*24*(365/12)*2) {
875 $age_str = int $age/60/60/24/(365/12);
876 $age_str .= " months ago";
877 } elsif ($age > 60*60*24*7*2) {
878 $age_str = int $age/60/60/24/7;
879 $age_str .= " weeks ago";
880 } elsif ($age > 60*60*24*2) {
881 $age_str = int $age/60/60/24;
882 $age_str .= " days ago";
883 } elsif ($age > 60*60*2) {
884 $age_str = int $age/60/60;
885 $age_str .= " hours ago";
886 } elsif ($age > 60*2) {
887 $age_str = int $age/60;
888 $age_str .= " min ago";
891 $age_str .= " sec ago";
893 $age_str .= " right now";
899 S_IFINVALID
=> 0030000,
900 S_IFGITLINK
=> 0160000,
903 # submodule/subproject, a commit object reference
907 return (($mode & S_IFMT
) == S_IFGITLINK
)
910 # convert file mode in octal to symbolic file mode string
912 my $mode = oct shift;
914 if (S_ISGITLINK
($mode)) {
916 } elsif (S_ISDIR
($mode & S_IFMT
)) {
918 } elsif (S_ISLNK
($mode)) {
920 } elsif (S_ISREG
($mode)) {
921 # git cares only about the executable bit
922 if ($mode & S_IXUSR
) {
932 # convert file mode in octal to file type string
936 if ($mode !~ m/^[0-7]+$/) {
942 if (S_ISGITLINK
($mode)) {
944 } elsif (S_ISDIR
($mode & S_IFMT
)) {
946 } elsif (S_ISLNK
($mode)) {
948 } elsif (S_ISREG
($mode)) {
955 # convert file mode in octal to file type description string
959 if ($mode !~ m/^[0-7]+$/) {
965 if (S_ISGITLINK
($mode)) {
967 } elsif (S_ISDIR
($mode & S_IFMT
)) {
969 } elsif (S_ISLNK
($mode)) {
971 } elsif (S_ISREG
($mode)) {
972 if ($mode & S_IXUSR
) {
983 ## ----------------------------------------------------------------------
984 ## functions returning short HTML fragments, or transforming HTML fragments
985 ## which don't belong to other sections
987 # format line of commit message.
988 sub format_log_line_html
{
991 $line = esc_html
($line, -nbsp
=>1);
992 if ($line =~ m/([0-9a-fA-F]{8,40})/) {
995 $cgi->a({-href
=> href
(action
=>"object", hash
=>$hash_text),
996 -class => "text"}, $hash_text);
997 $line =~ s/$hash_text/$link/;
1002 # format marker of refs pointing to given object
1003 sub format_ref_marker
{
1004 my ($refs, $id) = @_;
1007 if (defined $refs->{$id}) {
1008 foreach my $ref (@
{$refs->{$id}}) {
1009 my ($type, $name) = qw();
1010 # e.g. tags/v2.6.11 or heads/next
1011 if ($ref =~ m!^(.*?)s?/(.*)$!) {
1019 $markers .= " <span class=\"$type\" title=\"$ref\">" .
1020 esc_html
($name) . "</span>";
1025 return ' <span class="refs">'. $markers . '</span>';
1031 # format, perhaps shortened and with markers, title line
1032 sub format_subject_html
{
1033 my ($long, $short, $href, $extra) = @_;
1034 $extra = '' unless defined($extra);
1036 if (length($short) < length($long)) {
1037 return $cgi->a({-href
=> $href, -class => "list subject",
1038 -title
=> to_utf8
($long)},
1039 esc_html
($short) . $extra);
1041 return $cgi->a({-href
=> $href, -class => "list subject"},
1042 esc_html
($long) . $extra);
1046 # format git diff header line, i.e. "diff --(git|combined|cc) ..."
1047 sub format_git_diff_header_line
{
1049 my $diffinfo = shift;
1050 my ($from, $to) = @_;
1052 if ($diffinfo->{'nparents'}) {
1054 $line =~ s!^(diff (.*?) )"?.*$!$1!;
1055 if ($to->{'href'}) {
1056 $line .= $cgi->a({-href
=> $to->{'href'}, -class => "path"},
1057 esc_path
($to->{'file'}));
1058 } else { # file was deleted (no href)
1059 $line .= esc_path
($to->{'file'});
1063 $line =~ s!^(diff (.*?) )"?a/.*$!$1!;
1064 if ($from->{'href'}) {
1065 $line .= $cgi->a({-href
=> $from->{'href'}, -class => "path"},
1066 'a/' . esc_path
($from->{'file'}));
1067 } else { # file was added (no href)
1068 $line .= 'a/' . esc_path
($from->{'file'});
1071 if ($to->{'href'}) {
1072 $line .= $cgi->a({-href
=> $to->{'href'}, -class => "path"},
1073 'b/' . esc_path
($to->{'file'}));
1074 } else { # file was deleted
1075 $line .= 'b/' . esc_path
($to->{'file'});
1079 return "<div class=\"diff header\">$line</div>\n";
1082 # format extended diff header line, before patch itself
1083 sub format_extended_diff_header_line
{
1085 my $diffinfo = shift;
1086 my ($from, $to) = @_;
1089 if ($line =~ s!^((copy|rename) from ).*$!$1! && $from->{'href'}) {
1090 $line .= $cgi->a({-href
=>$from->{'href'}, -class=>"path"},
1091 esc_path
($from->{'file'}));
1093 if ($line =~ s!^((copy|rename) to ).*$!$1! && $to->{'href'}) {
1094 $line .= $cgi->a({-href
=>$to->{'href'}, -class=>"path"},
1095 esc_path
($to->{'file'}));
1097 # match single <mode>
1098 if ($line =~ m/\s(\d{6})$/) {
1099 $line .= '<span class="info"> (' .
1100 file_type_long
($1) .
1104 if ($line =~ m/^index [0-9a-fA-F]{40},[0-9a-fA-F]{40}/) {
1105 # can match only for combined diff
1107 for (my $i = 0; $i < $diffinfo->{'nparents'}; $i++) {
1108 if ($from->{'href'}[$i]) {
1109 $line .= $cgi->a({-href
=>$from->{'href'}[$i],
1111 substr($diffinfo->{'from_id'}[$i],0,7));
1116 $line .= ',' if ($i < $diffinfo->{'nparents'} - 1);
1119 if ($to->{'href'}) {
1120 $line .= $cgi->a({-href
=>$to->{'href'}, -class=>"hash"},
1121 substr($diffinfo->{'to_id'},0,7));
1126 } elsif ($line =~ m/^index [0-9a-fA-F]{40}..[0-9a-fA-F]{40}/) {
1127 # can match only for ordinary diff
1128 my ($from_link, $to_link);
1129 if ($from->{'href'}) {
1130 $from_link = $cgi->a({-href
=>$from->{'href'}, -class=>"hash"},
1131 substr($diffinfo->{'from_id'},0,7));
1133 $from_link = '0' x
7;
1135 if ($to->{'href'}) {
1136 $to_link = $cgi->a({-href
=>$to->{'href'}, -class=>"hash"},
1137 substr($diffinfo->{'to_id'},0,7));
1141 my ($from_id, $to_id) = ($diffinfo->{'from_id'}, $diffinfo->{'to_id'});
1142 $line =~ s!$from_id\.\.$to_id!$from_link..$to_link!;
1145 return $line . "<br/>\n";
1148 # format from-file/to-file diff header
1149 sub format_diff_from_to_header
{
1150 my ($from_line, $to_line, $diffinfo, $from, $to, @parents) = @_;
1155 #assert($line =~ m/^---/) if DEBUG;
1156 # no extra formatting for "^--- /dev/null"
1157 if (! $diffinfo->{'nparents'}) {
1158 # ordinary (single parent) diff
1159 if ($line =~ m!^--- "?a/!) {
1160 if ($from->{'href'}) {
1162 $cgi->a({-href
=>$from->{'href'}, -class=>"path"},
1163 esc_path
($from->{'file'}));
1166 esc_path
($from->{'file'});
1169 $result .= qq!<div
class="diff from_file">$line</div
>\n!;
1172 # combined diff (merge commit)
1173 for (my $i = 0; $i < $diffinfo->{'nparents'}; $i++) {
1174 if ($from->{'href'}[$i]) {
1176 $cgi->a({-href
=>href
(action
=>"blobdiff",
1177 hash_parent
=>$diffinfo->{'from_id'}[$i],
1178 hash_parent_base
=>$parents[$i],
1179 file_parent
=>$from->{'file'}[$i],
1180 hash
=>$diffinfo->{'to_id'},
1182 file_name
=>$to->{'file'}),
1184 -title
=>"diff" . ($i+1)},
1187 $cgi->a({-href
=>$from->{'href'}[$i], -class=>"path"},
1188 esc_path
($from->{'file'}[$i]));
1190 $line = '--- /dev/null';
1192 $result .= qq!<div
class="diff from_file">$line</div
>\n!;
1197 #assert($line =~ m/^\+\+\+/) if DEBUG;
1198 # no extra formatting for "^+++ /dev/null"
1199 if ($line =~ m!^\+\+\+ "?b/!) {
1200 if ($to->{'href'}) {
1202 $cgi->a({-href
=>$to->{'href'}, -class=>"path"},
1203 esc_path
($to->{'file'}));
1206 esc_path
($to->{'file'});
1209 $result .= qq!<div
class="diff to_file">$line</div
>\n!;
1214 # create note for patch simplified by combined diff
1215 sub format_diff_cc_simplified
{
1216 my ($diffinfo, @parents) = @_;
1219 $result .= "<div class=\"diff header\">" .
1221 if (!is_deleted
($diffinfo)) {
1222 $result .= $cgi->a({-href
=> href
(action
=>"blob",
1224 hash
=>$diffinfo->{'to_id'},
1225 file_name
=>$diffinfo->{'to_file'}),
1227 esc_path
($diffinfo->{'to_file'}));
1229 $result .= esc_path
($diffinfo->{'to_file'});
1231 $result .= "</div>\n" . # class="diff header"
1232 "<div class=\"diff nodifferences\">" .
1234 "</div>\n"; # class="diff nodifferences"
1239 # format patch (diff) line (not to be used for diff headers)
1240 sub format_diff_line
{
1242 my ($from, $to) = @_;
1243 my $diff_class = "";
1247 if ($from && $to && ref($from->{'href'}) eq "ARRAY") {
1249 my $prefix = substr($line, 0, scalar @
{$from->{'href'}});
1250 if ($line =~ m/^\@{3}/) {
1251 $diff_class = " chunk_header";
1252 } elsif ($line =~ m/^\\/) {
1253 $diff_class = " incomplete";
1254 } elsif ($prefix =~ tr/+/+/) {
1255 $diff_class = " add";
1256 } elsif ($prefix =~ tr/-/-/) {
1257 $diff_class = " rem";
1260 # assume ordinary diff
1261 my $char = substr($line, 0, 1);
1263 $diff_class = " add";
1264 } elsif ($char eq '-') {
1265 $diff_class = " rem";
1266 } elsif ($char eq '@') {
1267 $diff_class = " chunk_header";
1268 } elsif ($char eq "\\") {
1269 $diff_class = " incomplete";
1272 $line = untabify
($line);
1273 if ($from && $to && $line =~ m/^\@{2} /) {
1274 my ($from_text, $from_start, $from_lines, $to_text, $to_start, $to_lines, $section) =
1275 $line =~ m/^\@{2} (-(\d+)(?:,(\d+))?) (\+(\d+)(?:,(\d+))?) \@{2}(.*)$/;
1277 $from_lines = 0 unless defined $from_lines;
1278 $to_lines = 0 unless defined $to_lines;
1280 if ($from->{'href'}) {
1281 $from_text = $cgi->a({-href
=>"$from->{'href'}#l$from_start",
1282 -class=>"list"}, $from_text);
1284 if ($to->{'href'}) {
1285 $to_text = $cgi->a({-href
=>"$to->{'href'}#l$to_start",
1286 -class=>"list"}, $to_text);
1288 $line = "<span class=\"chunk_info\">@@ $from_text $to_text @@</span>" .
1289 "<span class=\"section\">" . esc_html
($section, -nbsp
=>1) . "</span>";
1290 return "<div class=\"diff$diff_class\">$line</div>\n";
1291 } elsif ($from && $to && $line =~ m/^\@{3}/) {
1292 my ($prefix, $ranges, $section) = $line =~ m/^(\@+) (.*?) \@+(.*)$/;
1293 my (@from_text, @from_start, @from_nlines, $to_text, $to_start, $to_nlines);
1295 @from_text = split(' ', $ranges);
1296 for (my $i = 0; $i < @from_text; ++$i) {
1297 ($from_start[$i], $from_nlines[$i]) =
1298 (split(',', substr($from_text[$i], 1)), 0);
1301 $to_text = pop @from_text;
1302 $to_start = pop @from_start;
1303 $to_nlines = pop @from_nlines;
1305 $line = "<span class=\"chunk_info\">$prefix ";
1306 for (my $i = 0; $i < @from_text; ++$i) {
1307 if ($from->{'href'}[$i]) {
1308 $line .= $cgi->a({-href
=>"$from->{'href'}[$i]#l$from_start[$i]",
1309 -class=>"list"}, $from_text[$i]);
1311 $line .= $from_text[$i];
1315 if ($to->{'href'}) {
1316 $line .= $cgi->a({-href
=>"$to->{'href'}#l$to_start",
1317 -class=>"list"}, $to_text);
1321 $line .= " $prefix</span>" .
1322 "<span class=\"section\">" . esc_html
($section, -nbsp
=>1) . "</span>";
1323 return "<div class=\"diff$diff_class\">$line</div>\n";
1325 return "<div class=\"diff$diff_class\">" . esc_html
($line, -nbsp
=>1) . "</div>\n";
1328 # Generates undef or something like "_snapshot_" or "snapshot (_tbz2_ _zip_)",
1329 # linked. Pass the hash of the tree/commit to snapshot.
1330 sub format_snapshot_links
{
1332 my @snapshot_fmts = gitweb_check_feature
('snapshot');
1333 @snapshot_fmts = filter_snapshot_fmts
(@snapshot_fmts);
1334 my $num_fmts = @snapshot_fmts;
1335 if ($num_fmts > 1) {
1336 # A parenthesized list of links bearing format names.
1337 # e.g. "snapshot (_tar.gz_ _zip_)"
1338 return "snapshot (" . join(' ', map
1345 }, $known_snapshot_formats{$_}{'display'})
1346 , @snapshot_fmts) . ")";
1347 } elsif ($num_fmts == 1) {
1348 # A single "snapshot" link whose tooltip bears the format name.
1350 my ($fmt) = @snapshot_fmts;
1356 snapshot_format
=>$fmt
1358 -title
=> "in format: $known_snapshot_formats{$fmt}{'display'}"
1360 } else { # $num_fmts == 0
1365 ## ----------------------------------------------------------------------
1366 ## git utility subroutines, invoking git commands
1368 # returns path to the core git executable and the --git-dir parameter as list
1370 return $GIT, '--git-dir='.$git_dir;
1373 # returns path to the core git executable and the --git-dir parameter as string
1375 return join(' ', git_cmd
());
1378 # get HEAD ref of given project as hash
1379 sub git_get_head_hash
{
1380 my $project = shift;
1381 my $o_git_dir = $git_dir;
1383 $git_dir = "$projectroot/$project";
1384 if (open my $fd, "-|", git_cmd
(), "rev-parse", "--verify", "HEAD") {
1387 if (defined $head && $head =~ /^([0-9a-fA-F]{40})$/) {
1391 if (defined $o_git_dir) {
1392 $git_dir = $o_git_dir;
1397 # get type of given object
1401 open my $fd, "-|", git_cmd
(), "cat-file", '-t', $hash or return;
1403 close $fd or return;
1408 sub git_get_project_config
{
1409 my ($key, $type) = @_;
1411 return unless ($key);
1412 $key =~ s/^gitweb\.//;
1413 return if ($key =~ m/\W/);
1415 my @x = (git_cmd
(), 'config');
1416 if (defined $type) { push @x, $type; }
1418 push @x, "gitweb.$key";
1424 # get hash of given path at given ref
1425 sub git_get_hash_by_path
{
1427 my $path = shift || return undef;
1432 open my $fd, "-|", git_cmd
(), "ls-tree", $base, "--", $path
1433 or die_error
(undef, "Open git-ls-tree failed");
1435 close $fd or return undef;
1437 if (!defined $line) {
1438 # there is no tree or hash given by $path at $base
1442 #'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'
1443 $line =~ m/^([0-9]+) (.+) ([0-9a-fA-F]{40})\t/;
1444 if (defined $type && $type ne $2) {
1445 # type doesn't match
1451 # get path of entry with given hash at given tree-ish (ref)
1452 # used to get 'from' filename for combined diff (merge commit) for renames
1453 sub git_get_path_by_hash
{
1454 my $base = shift || return;
1455 my $hash = shift || return;
1459 open my $fd, "-|", git_cmd
(), "ls-tree", '-r', '-t', '-z', $base
1461 while (my $line = <$fd>) {
1464 #'040000 tree 595596a6a9117ddba9fe379b6b012b558bac8423 gitweb'
1465 #'100644 blob e02e90f0429be0d2a69b76571101f20b8f75530f gitweb/README'
1466 if ($line =~ m/(?:[0-9]+) (?:.+) $hash\t(.+)$/) {
1475 ## ......................................................................
1476 ## git utility functions, directly accessing git repository
1478 sub git_get_project_description
{
1481 open my $fd, "$projectroot/$path/description" or return undef;
1484 if (defined $descr) {
1490 sub git_get_project_url_list
{
1493 open my $fd, "$projectroot/$path/cloneurl" or return;
1494 my @git_project_url_list = map { chomp; $_ } <$fd>;
1497 return wantarray ?
@git_project_url_list : \
@git_project_url_list;
1500 sub git_get_projects_list
{
1505 $filter =~ s/\.git$//;
1507 my ($check_forks) = gitweb_check_feature
('forks');
1509 if (-d
$projects_list) {
1510 # search in directory
1511 my $dir = $projects_list . ($filter ?
"/$filter" : '');
1512 # remove the trailing "/"
1514 my $pfxlen = length("$dir");
1517 follow_fast
=> 1, # follow symbolic links
1518 dangling_symlinks
=> 0, # ignore dangling symlinks, silently
1520 # skip project-list toplevel, if we get it.
1521 return if (m!^[/.]$!);
1522 # only directories can be git repositories
1523 return unless (-d
$_);
1525 my $subdir = substr($File::Find
::name
, $pfxlen + 1);
1526 # we check related file in $projectroot
1527 if ($check_forks and $subdir =~ m
#/.#) {
1528 $File::Find
::prune
= 1;
1529 } elsif (check_export_ok
("$projectroot/$filter/$subdir")) {
1530 push @list, { path
=> ($filter ?
"$filter/" : '') . $subdir };
1531 $File::Find
::prune
= 1;
1536 } elsif (-f
$projects_list) {
1537 # read from file(url-encoded):
1538 # 'git%2Fgit.git Linus+Torvalds'
1539 # 'libs%2Fklibc%2Fklibc.git H.+Peter+Anvin'
1540 # 'linux%2Fhotplug%2Fudev.git Greg+Kroah-Hartman'
1542 open my ($fd), $projects_list or return;
1544 while (my $line = <$fd>) {
1546 my ($path, $owner) = split ' ', $line;
1547 $path = unescape
($path);
1548 $owner = unescape
($owner);
1549 if (!defined $path) {
1552 if ($filter ne '') {
1553 # looking for forks;
1554 my $pfx = substr($path, 0, length($filter));
1555 if ($pfx ne $filter) {
1558 my $sfx = substr($path, length($filter));
1559 if ($sfx !~ /^\/.*\
.git
$/) {
1562 } elsif ($check_forks) {
1564 foreach my $filter (keys %paths) {
1565 # looking for forks;
1566 my $pfx = substr($path, 0, length($filter));
1567 if ($pfx ne $filter) {
1570 my $sfx = substr($path, length($filter));
1571 if ($sfx !~ /^\/.*\
.git
$/) {
1574 # is a fork, don't include it in
1579 if (check_export_ok
("$projectroot/$path")) {
1582 owner
=> to_utf8
($owner),
1585 (my $forks_path = $path) =~ s/\.git$//;
1586 $paths{$forks_path}++;
1594 our $gitweb_project_owner = undef;
1595 sub git_get_project_list_from_file
{
1597 return if (defined $gitweb_project_owner);
1599 $gitweb_project_owner = {};
1600 # read from file (url-encoded):
1601 # 'git%2Fgit.git Linus+Torvalds'
1602 # 'libs%2Fklibc%2Fklibc.git H.+Peter+Anvin'
1603 # 'linux%2Fhotplug%2Fudev.git Greg+Kroah-Hartman'
1604 if (-f
$projects_list) {
1605 open (my $fd , $projects_list);
1606 while (my $line = <$fd>) {
1608 my ($pr, $ow) = split ' ', $line;
1609 $pr = unescape
($pr);
1610 $ow = unescape
($ow);
1611 $gitweb_project_owner->{$pr} = to_utf8
($ow);
1617 sub git_get_project_owner
{
1618 my $project = shift;
1621 return undef unless $project;
1623 if (!defined $gitweb_project_owner) {
1624 git_get_project_list_from_file
();
1627 if (exists $gitweb_project_owner->{$project}) {
1628 $owner = $gitweb_project_owner->{$project};
1630 if (!defined $owner) {
1631 $owner = get_file_owner
("$projectroot/$project");
1637 sub git_get_last_activity
{
1641 $git_dir = "$projectroot/$path";
1642 open($fd, "-|", git_cmd
(), 'for-each-ref',
1643 '--format=%(committer)',
1644 '--sort=-committerdate',
1646 'refs/heads') or return;
1647 my $most_recent = <$fd>;
1648 close $fd or return;
1649 if (defined $most_recent &&
1650 $most_recent =~ / (\d+) [-+][01]\d\d\d$/) {
1652 my $age = time - $timestamp;
1653 return ($age, age_string
($age));
1655 return (undef, undef);
1658 sub git_get_references
{
1659 my $type = shift || "";
1661 # 5dc01c595e6c6ec9ccda4f6f69c131c0dd945f8c refs/tags/v2.6.11
1662 # c39ae07f393806ccf406ef966e9a15afc43cc36a refs/tags/v2.6.11^{}
1663 open my $fd, "-|", git_cmd
(), "show-ref", "--dereference",
1664 ($type ?
("--", "refs/$type") : ()) # use -- <pattern> if $type
1667 while (my $line = <$fd>) {
1669 if ($line =~ m!^([0-9a-fA-F]{40})\srefs/($type/?[^^]+)!) {
1670 if (defined $refs{$1}) {
1671 push @
{$refs{$1}}, $2;
1677 close $fd or return;
1681 sub git_get_rev_name_tags
{
1682 my $hash = shift || return undef;
1684 open my $fd, "-|", git_cmd
(), "name-rev", "--tags", $hash
1686 my $name_rev = <$fd>;
1689 if ($name_rev =~ m
|^$hash tags
/(.*)$|) {
1692 # catches also '$hash undefined' output
1697 ## ----------------------------------------------------------------------
1698 ## parse to hash functions
1702 my $tz = shift || "-0000";
1705 my @months = ("Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec");
1706 my @days = ("Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat");
1707 my ($sec, $min, $hour, $mday, $mon, $year, $wday, $yday) = gmtime($epoch);
1708 $date{'hour'} = $hour;
1709 $date{'minute'} = $min;
1710 $date{'mday'} = $mday;
1711 $date{'day'} = $days[$wday];
1712 $date{'month'} = $months[$mon];
1713 $date{'rfc2822'} = sprintf "%s, %d %s %4d %02d:%02d:%02d +0000",
1714 $days[$wday], $mday, $months[$mon], 1900+$year, $hour ,$min, $sec;
1715 $date{'mday-time'} = sprintf "%d %s %02d:%02d",
1716 $mday, $months[$mon], $hour ,$min;
1717 $date{'iso-8601'} = sprintf "%04d-%02d-%02dT%02d:%02d:%02dZ",
1718 1900+$year, $mon, $mday, $hour ,$min, $sec;
1720 $tz =~ m/^([+\-][0-9][0-9])([0-9][0-9])$/;
1721 my $local = $epoch + ((int $1 + ($2/60)) * 3600);
1722 ($sec, $min, $hour, $mday, $mon, $year, $wday, $yday) = gmtime($local);
1723 $date{'hour_local'} = $hour;
1724 $date{'minute_local'} = $min;
1725 $date{'tz_local'} = $tz;
1726 $date{'iso-tz'} = sprintf("%04d-%02d-%02d %02d:%02d:%02d %s",
1727 1900+$year, $mon+1, $mday,
1728 $hour, $min, $sec, $tz);
1737 open my $fd, "-|", git_cmd
(), "cat-file", "tag", $tag_id or return;
1738 $tag{'id'} = $tag_id;
1739 while (my $line = <$fd>) {
1741 if ($line =~ m/^object ([0-9a-fA-F]{40})$/) {
1742 $tag{'object'} = $1;
1743 } elsif ($line =~ m/^type (.+)$/) {
1745 } elsif ($line =~ m/^tag (.+)$/) {
1747 } elsif ($line =~ m/^tagger (.*) ([0-9]+) (.*)$/) {
1748 $tag{'author'} = $1;
1751 } elsif ($line =~ m/--BEGIN/) {
1752 push @comment, $line;
1754 } elsif ($line eq "") {
1758 push @comment, <$fd>;
1759 $tag{'comment'} = \
@comment;
1760 close $fd or return;
1761 if (!defined $tag{'name'}) {
1767 sub parse_commit_text
{
1768 my ($commit_text, $withparents) = @_;
1769 my @commit_lines = split '\n', $commit_text;
1772 pop @commit_lines; # Remove '\0'
1774 if (! @commit_lines) {
1778 my $header = shift @commit_lines;
1779 if ($header !~ m/^[0-9a-fA-F]{40}/) {
1782 ($co{'id'}, my @parents) = split ' ', $header;
1783 while (my $line = shift @commit_lines) {
1784 last if $line eq "\n";
1785 if ($line =~ m/^tree ([0-9a-fA-F]{40})$/) {
1787 } elsif ((!defined $withparents) && ($line =~ m/^parent ([0-9a-fA-F]{40})$/)) {
1789 } elsif ($line =~ m/^author (.*) ([0-9]+) (.*)$/) {
1791 $co{'author_epoch'} = $2;
1792 $co{'author_tz'} = $3;
1793 if ($co{'author'} =~ m/^([^<]+) <([^>]*)>/) {
1794 $co{'author_name'} = $1;
1795 $co{'author_email'} = $2;
1797 $co{'author_name'} = $co{'author'};
1799 } elsif ($line =~ m/^committer (.*) ([0-9]+) (.*)$/) {
1800 $co{'committer'} = $1;
1801 $co{'committer_epoch'} = $2;
1802 $co{'committer_tz'} = $3;
1803 $co{'committer_name'} = $co{'committer'};
1804 if ($co{'committer'} =~ m/^([^<]+) <([^>]*)>/) {
1805 $co{'committer_name'} = $1;
1806 $co{'committer_email'} = $2;
1808 $co{'committer_name'} = $co{'committer'};
1812 if (!defined $co{'tree'}) {
1815 $co{'parents'} = \
@parents;
1816 $co{'parent'} = $parents[0];
1818 foreach my $title (@commit_lines) {
1821 $co{'title'} = chop_str
($title, 80, 5);
1822 # remove leading stuff of merges to make the interesting part visible
1823 if (length($title) > 50) {
1824 $title =~ s/^Automatic //;
1825 $title =~ s/^merge (of|with) /Merge ... /i;
1826 if (length($title) > 50) {
1827 $title =~ s/(http|rsync):\/\///;
1829 if (length($title) > 50) {
1830 $title =~ s/(master|www|rsync)\.//;
1832 if (length($title) > 50) {
1833 $title =~ s/kernel.org:?//;
1835 if (length($title) > 50) {
1836 $title =~ s/\/pub\/scm//;
1839 $co{'title_short'} = chop_str
($title, 50, 5);
1843 if ($co{'title'} eq "") {
1844 $co{'title'} = $co{'title_short'} = '(no commit message)';
1846 # remove added spaces
1847 foreach my $line (@commit_lines) {
1850 $co{'comment'} = \
@commit_lines;
1852 my $age = time - $co{'committer_epoch'};
1854 $co{'age_string'} = age_string
($age);
1855 my ($sec, $min, $hour, $mday, $mon, $year, $wday, $yday) = gmtime($co{'committer_epoch'});
1856 if ($age > 60*60*24*7*2) {
1857 $co{'age_string_date'} = sprintf "%4i-%02u-%02i", 1900 + $year, $mon+1, $mday;
1858 $co{'age_string_age'} = $co{'age_string'};
1860 $co{'age_string_date'} = $co{'age_string'};
1861 $co{'age_string_age'} = sprintf "%4i-%02u-%02i", 1900 + $year, $mon+1, $mday;
1867 my ($commit_id) = @_;
1872 open my $fd, "-|", git_cmd
(), "rev-list",
1878 or die_error
(undef, "Open git-rev-list failed");
1879 %co = parse_commit_text
(<$fd>, 1);
1886 my ($commit_id, $maxcount, $skip, $arg, $filename) = @_;
1894 open my $fd, "-|", git_cmd
(), "rev-list",
1896 ($arg ?
($arg) : ()),
1897 ("--max-count=" . $maxcount),
1898 ("--skip=" . $skip),
1902 ($filename ?
($filename) : ())
1903 or die_error
(undef, "Open git-rev-list failed");
1904 while (my $line = <$fd>) {
1905 my %co = parse_commit_text
($line);
1910 return wantarray ?
@cos : \
@cos;
1913 # parse ref from ref_file, given by ref_id, with given type
1915 my $ref_file = shift;
1917 my $type = shift || git_get_type
($ref_id);
1920 $ref_item{'type'} = $type;
1921 $ref_item{'id'} = $ref_id;
1922 $ref_item{'epoch'} = 0;
1923 $ref_item{'age'} = "unknown";
1924 if ($type eq "tag") {
1925 my %tag = parse_tag
($ref_id);
1926 $ref_item{'comment'} = $tag{'comment'};
1927 if ($tag{'type'} eq "commit") {
1928 my %co = parse_commit
($tag{'object'});
1929 $ref_item{'epoch'} = $co{'committer_epoch'};
1930 $ref_item{'age'} = $co{'age_string'};
1931 } elsif (defined($tag{'epoch'})) {
1932 my $age = time - $tag{'epoch'};
1933 $ref_item{'epoch'} = $tag{'epoch'};
1934 $ref_item{'age'} = age_string
($age);
1936 $ref_item{'reftype'} = $tag{'type'};
1937 $ref_item{'name'} = $tag{'name'};
1938 $ref_item{'refid'} = $tag{'object'};
1939 } elsif ($type eq "commit"){
1940 my %co = parse_commit
($ref_id);
1941 $ref_item{'reftype'} = "commit";
1942 $ref_item{'name'} = $ref_file;
1943 $ref_item{'title'} = $co{'title'};
1944 $ref_item{'refid'} = $ref_id;
1945 $ref_item{'epoch'} = $co{'committer_epoch'};
1946 $ref_item{'age'} = $co{'age_string'};
1948 $ref_item{'reftype'} = $type;
1949 $ref_item{'name'} = $ref_file;
1950 $ref_item{'refid'} = $ref_id;
1956 # parse line of git-diff-tree "raw" output
1957 sub parse_difftree_raw_line
{
1961 # ':100644 100644 03b218260e99b78c6df0ed378e59ed9205ccc96d 3b93d5e7cc7f7dd4ebed13a5cc1a4ad976fc94d8 M ls-files.c'
1962 # ':100644 100644 7f9281985086971d3877aca27704f2aaf9c448ce bc190ebc71bbd923f2b728e505408f5e54bd073a M rev-tree.c'
1963 if ($line =~ m/^:([0-7]{6}) ([0-7]{6}) ([0-9a-fA-F]{40}) ([0-9a-fA-F]{40}) (.)([0-9]{0,3})\t(.*)$/) {
1964 $res{'from_mode'} = $1;
1965 $res{'to_mode'} = $2;
1966 $res{'from_id'} = $3;
1968 $res{'status'} = $5;
1969 $res{'similarity'} = $6;
1970 if ($res{'status'} eq 'R' || $res{'status'} eq 'C') { # renamed or copied
1971 ($res{'from_file'}, $res{'to_file'}) = map { unquote
($_) } split("\t", $7);
1973 $res{'file'} = unquote
($7);
1976 # '::100755 100755 100755 60e79ca1b01bc8b057abe17ddab484699a7f5fdb 94067cc5f73388f33722d52ae02f44692bc07490 94067cc5f73388f33722d52ae02f44692bc07490 MR git-gui/git-gui.sh'
1977 # combined diff (for merge commit)
1978 elsif ($line =~ s/^(::+)((?:[0-7]{6} )+)((?:[0-9a-fA-F]{40} )+)([a-zA-Z]+)\t(.*)$//) {
1979 $res{'nparents'} = length($1);
1980 $res{'from_mode'} = [ split(' ', $2) ];
1981 $res{'to_mode'} = pop @
{$res{'from_mode'}};
1982 $res{'from_id'} = [ split(' ', $3) ];
1983 $res{'to_id'} = pop @
{$res{'from_id'}};
1984 $res{'status'} = [ split('', $4) ];
1985 $res{'to_file'} = unquote
($5);
1987 # 'c512b523472485aef4fff9e57b229d9d243c967f'
1988 elsif ($line =~ m/^([0-9a-fA-F]{40})$/) {
1989 $res{'commit'} = $1;
1992 return wantarray ?
%res : \
%res;
1995 # parse line of git-ls-tree output
1996 sub parse_ls_tree_line
($;%) {
2001 #'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'
2002 $line =~ m/^([0-9]+) (.+) ([0-9a-fA-F]{40})\t(.+)$/s;
2010 $res{'name'} = unquote
($4);
2013 return wantarray ?
%res : \
%res;
2016 # generates _two_ hashes, references to which are passed as 2 and 3 argument
2017 sub parse_from_to_diffinfo
{
2018 my ($diffinfo, $from, $to, @parents) = @_;
2020 if ($diffinfo->{'nparents'}) {
2022 $from->{'file'} = [];
2023 $from->{'href'} = [];
2024 fill_from_file_info
($diffinfo, @parents)
2025 unless exists $diffinfo->{'from_file'};
2026 for (my $i = 0; $i < $diffinfo->{'nparents'}; $i++) {
2027 $from->{'file'}[$i] = $diffinfo->{'from_file'}[$i] || $diffinfo->{'to_file'};
2028 if ($diffinfo->{'status'}[$i] ne "A") { # not new (added) file
2029 $from->{'href'}[$i] = href
(action
=>"blob",
2030 hash_base
=>$parents[$i],
2031 hash
=>$diffinfo->{'from_id'}[$i],
2032 file_name
=>$from->{'file'}[$i]);
2034 $from->{'href'}[$i] = undef;
2038 $from->{'file'} = $diffinfo->{'from_file'} || $diffinfo->{'file'};
2039 if ($diffinfo->{'status'} ne "A") { # not new (added) file
2040 $from->{'href'} = href
(action
=>"blob", hash_base
=>$hash_parent,
2041 hash
=>$diffinfo->{'from_id'},
2042 file_name
=>$from->{'file'});
2044 delete $from->{'href'};
2048 $to->{'file'} = $diffinfo->{'to_file'} || $diffinfo->{'file'};
2049 if (!is_deleted
($diffinfo)) { # file exists in result
2050 $to->{'href'} = href
(action
=>"blob", hash_base
=>$hash,
2051 hash
=>$diffinfo->{'to_id'},
2052 file_name
=>$to->{'file'});
2054 delete $to->{'href'};
2058 ## ......................................................................
2059 ## parse to array of hashes functions
2061 sub git_get_heads_list
{
2065 open my $fd, '-|', git_cmd
(), 'for-each-ref',
2066 ($limit ?
'--count='.($limit+1) : ()), '--sort=-committerdate',
2067 '--format=%(objectname) %(refname) %(subject)%00%(committer)',
2070 while (my $line = <$fd>) {
2074 my ($refinfo, $committerinfo) = split(/\0/, $line);
2075 my ($hash, $name, $title) = split(' ', $refinfo, 3);
2076 my ($committer, $epoch, $tz) =
2077 ($committerinfo =~ /^(.*) ([0-9]+) (.*)$/);
2078 $name =~ s!^refs/heads/!!;
2080 $ref_item{'name'} = $name;
2081 $ref_item{'id'} = $hash;
2082 $ref_item{'title'} = $title || '(no commit message)';
2083 $ref_item{'epoch'} = $epoch;
2085 $ref_item{'age'} = age_string
(time - $ref_item{'epoch'});
2087 $ref_item{'age'} = "unknown";
2090 push @headslist, \
%ref_item;
2094 return wantarray ?
@headslist : \
@headslist;
2097 sub git_get_tags_list
{
2101 open my $fd, '-|', git_cmd
(), 'for-each-ref',
2102 ($limit ?
'--count='.($limit+1) : ()), '--sort=-creatordate',
2103 '--format=%(objectname) %(objecttype) %(refname) '.
2104 '%(*objectname) %(*objecttype) %(subject)%00%(creator)',
2107 while (my $line = <$fd>) {
2111 my ($refinfo, $creatorinfo) = split(/\0/, $line);
2112 my ($id, $type, $name, $refid, $reftype, $title) = split(' ', $refinfo, 6);
2113 my ($creator, $epoch, $tz) =
2114 ($creatorinfo =~ /^(.*) ([0-9]+) (.*)$/);
2115 $name =~ s!^refs/tags/!!;
2117 $ref_item{'type'} = $type;
2118 $ref_item{'id'} = $id;
2119 $ref_item{'name'} = $name;
2120 if ($type eq "tag") {
2121 $ref_item{'subject'} = $title;
2122 $ref_item{'reftype'} = $reftype;
2123 $ref_item{'refid'} = $refid;
2125 $ref_item{'reftype'} = $type;
2126 $ref_item{'refid'} = $id;
2129 if ($type eq "tag" || $type eq "commit") {
2130 $ref_item{'epoch'} = $epoch;
2132 $ref_item{'age'} = age_string
(time - $ref_item{'epoch'});
2134 $ref_item{'age'} = "unknown";
2138 push @tagslist, \
%ref_item;
2142 return wantarray ?
@tagslist : \
@tagslist;
2145 ## ----------------------------------------------------------------------
2146 ## filesystem-related functions
2148 sub get_file_owner
{
2151 my ($dev, $ino, $mode, $nlink, $st_uid, $st_gid, $rdev, $size) = stat($path);
2152 my ($name, $passwd, $uid, $gid, $quota, $comment, $gcos, $dir, $shell) = getpwuid($st_uid);
2153 if (!defined $gcos) {
2157 $owner =~ s/[,;].*$//;
2158 return to_utf8
($owner);
2161 ## ......................................................................
2162 ## mimetype related functions
2164 sub mimetype_guess_file
{
2165 my $filename = shift;
2166 my $mimemap = shift;
2167 -r
$mimemap or return undef;
2170 open(MIME
, $mimemap) or return undef;
2172 next if m/^#/; # skip comments
2173 my ($mime, $exts) = split(/\t+/);
2174 if (defined $exts) {
2175 my @exts = split(/\s+/, $exts);
2176 foreach my $ext (@exts) {
2177 $mimemap{$ext} = $mime;
2183 $filename =~ /\.([^.]*)$/;
2184 return $mimemap{$1};
2187 sub mimetype_guess
{
2188 my $filename = shift;
2190 $filename =~ /\./ or return undef;
2192 if ($mimetypes_file) {
2193 my $file = $mimetypes_file;
2194 if ($file !~ m!^/!) { # if it is relative path
2195 # it is relative to project
2196 $file = "$projectroot/$project/$file";
2198 $mime = mimetype_guess_file
($filename, $file);
2200 $mime ||= mimetype_guess_file
($filename, '/etc/mime.types');
2206 my $filename = shift;
2209 my $mime = mimetype_guess
($filename);
2210 $mime and return $mime;
2214 return $default_blob_plain_mimetype unless $fd;
2217 return 'text/plain' .
2218 ($default_text_plain_charset ?
'; charset='.$default_text_plain_charset : '');
2219 } elsif (! $filename) {
2220 return 'application/octet-stream';
2221 } elsif ($filename =~ m/\.png$/i) {
2223 } elsif ($filename =~ m/\.gif$/i) {
2225 } elsif ($filename =~ m/\.jpe?g$/i) {
2226 return 'image/jpeg';
2228 return 'application/octet-stream';
2232 ## ======================================================================
2233 ## functions printing HTML: header, footer, error page
2235 sub git_header_html
{
2236 my $status = shift || "200 OK";
2237 my $expires = shift;
2239 my $title = "$site_name";
2240 if (defined $project) {
2241 $title .= " - " . to_utf8
($project);
2242 if (defined $action) {
2243 $title .= "/$action";
2244 if (defined $file_name) {
2245 $title .= " - " . esc_path
($file_name);
2246 if ($action eq "tree" && $file_name !~ m
|/$|) {
2253 # require explicit support from the UA if we are to send the page as
2254 # 'application/xhtml+xml', otherwise send it as plain old 'text/html'.
2255 # we have to do this because MSIE sometimes globs '*/*', pretending to
2256 # support xhtml+xml but choking when it gets what it asked for.
2257 if (defined $cgi->http('HTTP_ACCEPT') &&
2258 $cgi->http('HTTP_ACCEPT') =~ m/(,|;|\s|^)application\/xhtml\
+xml
(,|;|\s
|$)/ &&
2259 $cgi->Accept('application/xhtml+xml') != 0) {
2260 $content_type = 'application/xhtml+xml';
2262 $content_type = 'text/html';
2264 print $cgi->header(-type
=>$content_type, -charset
=> 'utf-8',
2265 -status
=> $status, -expires
=> $expires);
2266 my $mod_perl_version = $ENV{'MOD_PERL'} ?
" $ENV{'MOD_PERL'}" : '';
2268 <?xml version="1.0" encoding="utf-8"?>
2269 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2270 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" lang="en-US">
2271 <!-- git web interface version $version, (C) 2005-2006, Kay Sievers <kay.sievers\@vrfy.org>, Christian Gierke -->
2272 <!-- git core binaries version $git_version -->
2274 <meta http-equiv="content-type" content="$content_type; charset=utf-8"/>
2275 <meta name="generator" content="gitweb/$version git/$git_version$mod_perl_version"/>
2276 <meta name="robots" content="index, nofollow"/>
2277 <title>$title</title>
2279 # print out each stylesheet that exist
2280 if (defined $stylesheet) {
2281 #provides backwards capability for those people who define style sheet in a config file
2282 print '<link rel="stylesheet" type="text/css" href="'.$stylesheet.'"/>'."\n";
2284 foreach my $stylesheet (@stylesheets) {
2285 next unless $stylesheet;
2286 print '<link rel="stylesheet" type="text/css" href="'.$stylesheet.'"/>'."\n";
2289 if (defined $project) {
2290 printf('<link rel="alternate" title="%s log RSS feed" '.
2291 'href="%s" type="application/rss+xml" />'."\n",
2292 esc_param
($project), href
(action
=>"rss"));
2293 printf('<link rel="alternate" title="%s log RSS feed (no merges)" '.
2294 'href="%s" type="application/rss+xml" />'."\n",
2295 esc_param
($project), href
(action
=>"rss",
2296 extra_options
=>"--no-merges"));
2297 printf('<link rel="alternate" title="%s log Atom feed" '.
2298 'href="%s" type="application/atom+xml" />'."\n",
2299 esc_param
($project), href
(action
=>"atom"));
2300 printf('<link rel="alternate" title="%s log Atom feed (no merges)" '.
2301 'href="%s" type="application/atom+xml" />'."\n",
2302 esc_param
($project), href
(action
=>"atom",
2303 extra_options
=>"--no-merges"));
2305 printf('<link rel="alternate" title="%s projects list" '.
2306 'href="%s" type="text/plain; charset=utf-8"/>'."\n",
2307 $site_name, href
(project
=>undef, action
=>"project_index"));
2308 printf('<link rel="alternate" title="%s projects feeds" '.
2309 'href="%s" type="text/x-opml"/>'."\n",
2310 $site_name, href
(project
=>undef, action
=>"opml"));
2312 if (defined $favicon) {
2313 print qq(<link rel
="shortcut icon" href
="$favicon" type
="image/png"/>\n);
2319 if (-f
$site_header) {
2320 open (my $fd, $site_header);
2325 print "<div class=\"page_header\">\n" .
2326 $cgi->a({-href
=> esc_url
($logo_url),
2327 -title
=> $logo_label},
2328 qq(<img src
="$logo" width
="72" height
="27" alt
="git" class="logo"/>));
2329 print $cgi->a({-href
=> esc_url
($home_link)}, $home_link_str) . " / ";
2330 if (defined $project) {
2331 print $cgi->a({-href
=> href
(action
=>"summary")}, esc_html
($project));
2332 if (defined $action) {
2339 my ($have_search) = gitweb_check_feature
('search');
2340 if ((defined $project) && ($have_search)) {
2341 if (!defined $searchtext) {
2345 if (defined $hash_base) {
2346 $search_hash = $hash_base;
2347 } elsif (defined $hash) {
2348 $search_hash = $hash;
2350 $search_hash = "HEAD";
2352 my $action = $my_uri;
2353 my ($use_pathinfo) = gitweb_check_feature
('pathinfo');
2354 if ($use_pathinfo) {
2355 $action .= "/$project";
2357 $cgi->param("p", $project);
2359 $cgi->param("a", "search");
2360 $cgi->param("h", $search_hash);
2361 print $cgi->startform(-method
=> "get", -action
=> $action) .
2362 "<div class=\"search\">\n" .
2363 (!$use_pathinfo && $cgi->hidden(-name
=> "p") . "\n") .
2364 $cgi->hidden(-name
=> "a") . "\n" .
2365 $cgi->hidden(-name
=> "h") . "\n" .
2366 $cgi->popup_menu(-name
=> 'st', -default => 'commit',
2367 -values => ['commit', 'grep', 'author', 'committer', 'pickaxe']) .
2368 $cgi->sup($cgi->a({-href
=> href
(action
=>"search_help")}, "?")) .
2370 $cgi->textfield(-name
=> "s", -value
=> $searchtext) . "\n" .
2372 $cgi->end_form() . "\n";
2376 sub git_footer_html
{
2377 print "<div class=\"page_footer\">\n";
2378 if (defined $project) {
2379 my $descr = git_get_project_description
($project);
2380 if (defined $descr) {
2381 print "<div class=\"page_footer_text\">" . esc_html
($descr) . "</div>\n";
2383 print $cgi->a({-href
=> href
(action
=>"rss"),
2384 -class => "rss_logo"}, "RSS") . " ";
2385 print $cgi->a({-href
=> href
(action
=>"atom"),
2386 -class => "rss_logo"}, "Atom") . "\n";
2388 print $cgi->a({-href
=> href
(project
=>undef, action
=>"opml"),
2389 -class => "rss_logo"}, "OPML") . " ";
2390 print $cgi->a({-href
=> href
(project
=>undef, action
=>"project_index"),
2391 -class => "rss_logo"}, "TXT") . "\n";
2395 if (-f
$site_footer) {
2396 open (my $fd, $site_footer);
2406 my $status = shift || "403 Forbidden";
2407 my $error = shift || "Malformed query, file missing or permission denied";
2409 git_header_html
($status);
2411 <div class="page_body">
2421 ## ----------------------------------------------------------------------
2422 ## functions printing or outputting HTML: navigation
2424 sub git_print_page_nav
{
2425 my ($current, $suppress, $head, $treehead, $treebase, $extra) = @_;
2426 $extra = '' if !defined $extra; # pager or formats
2428 my @navs = qw(summary shortlog log commit commitdiff tree);
2430 @navs = grep { $_ ne $suppress } @navs;
2433 my %arg = map { $_ => {action
=>$_} } @navs;
2434 if (defined $head) {
2435 for (qw(commit commitdiff)) {
2436 $arg{$_}{'hash'} = $head;
2438 if ($current =~ m/^(tree | log | shortlog | commit | commitdiff | search)$/x) {
2439 for (qw(shortlog log)) {
2440 $arg{$_}{'hash'} = $head;
2444 $arg{'tree'}{'hash'} = $treehead if defined $treehead;
2445 $arg{'tree'}{'hash_base'} = $treebase if defined $treebase;
2447 print "<div class=\"page_nav\">\n" .
2449 map { $_ eq $current ?
2450 $_ : $cgi->a({-href
=> href
(%{$arg{$_}})}, "$_")
2452 print "<br/>\n$extra<br/>\n" .
2456 sub format_paging_nav
{
2457 my ($action, $hash, $head, $page, $nrevs) = @_;
2461 if ($hash ne $head || $page) {
2462 $paging_nav .= $cgi->a({-href
=> href
(action
=>$action)}, "HEAD");
2464 $paging_nav .= "HEAD";
2468 $paging_nav .= " ⋅ " .
2469 $cgi->a({-href
=> href
(action
=>$action, hash
=>$hash, page
=>$page-1),
2470 -accesskey
=> "p", -title
=> "Alt-p"}, "prev");
2472 $paging_nav .= " ⋅ prev";
2475 if ($nrevs >= (100 * ($page+1)-1)) {
2476 $paging_nav .= " ⋅ " .
2477 $cgi->a({-href
=> href
(action
=>$action, hash
=>$hash, page
=>$page+1),
2478 -accesskey
=> "n", -title
=> "Alt-n"}, "next");
2480 $paging_nav .= " ⋅ next";
2486 ## ......................................................................
2487 ## functions printing or outputting HTML: div
2489 sub git_print_header_div
{
2490 my ($action, $title, $hash, $hash_base) = @_;
2493 $args{'action'} = $action;
2494 $args{'hash'} = $hash if $hash;
2495 $args{'hash_base'} = $hash_base if $hash_base;
2497 print "<div class=\"header\">\n" .
2498 $cgi->a({-href
=> href
(%args), -class => "title"},
2499 $title ?
$title : $action) .
2503 #sub git_print_authorship (\%) {
2504 sub git_print_authorship
{
2507 my %ad = parse_date
($co->{'author_epoch'}, $co->{'author_tz'});
2508 print "<div class=\"author_date\">" .
2509 esc_html
($co->{'author_name'}) .
2511 if ($ad{'hour_local'} < 6) {
2512 printf(" (<span class=\"atnight\">%02d:%02d</span> %s)",
2513 $ad{'hour_local'}, $ad{'minute_local'}, $ad{'tz_local'});
2515 printf(" (%02d:%02d %s)",
2516 $ad{'hour_local'}, $ad{'minute_local'}, $ad{'tz_local'});
2521 sub git_print_page_path
{
2527 print "<div class=\"page_path\">";
2528 print $cgi->a({-href
=> href
(action
=>"tree", hash_base
=>$hb),
2529 -title
=> 'tree root'}, to_utf8
("[$project]"));
2531 if (defined $name) {
2532 my @dirname = split '/', $name;
2533 my $basename = pop @dirname;
2536 foreach my $dir (@dirname) {
2537 $fullname .= ($fullname ?
'/' : '') . $dir;
2538 print $cgi->a({-href
=> href
(action
=>"tree", file_name
=>$fullname,
2540 -title
=> $fullname}, esc_path
($dir));
2543 if (defined $type && $type eq 'blob') {
2544 print $cgi->a({-href
=> href
(action
=>"blob_plain", file_name
=>$file_name,
2546 -title
=> $name}, esc_path
($basename));
2547 } elsif (defined $type && $type eq 'tree') {
2548 print $cgi->a({-href
=> href
(action
=>"tree", file_name
=>$file_name,
2550 -title
=> $name}, esc_path
($basename));
2553 print esc_path
($basename);
2556 print "<br/></div>\n";
2559 # sub git_print_log (\@;%) {
2560 sub git_print_log
($;%) {
2564 if ($opts{'-remove_title'}) {
2565 # remove title, i.e. first line of log
2568 # remove leading empty lines
2569 while (defined $log->[0] && $log->[0] eq "") {
2576 foreach my $line (@
$log) {
2577 if ($line =~ m/^ *(signed[ \-]off[ \-]by[ :]|acked[ \-]by[ :]|cc[ :])/i) {
2580 if (! $opts{'-remove_signoff'}) {
2581 print "<span class=\"signoff\">" . esc_html
($line) . "</span><br/>\n";
2584 # remove signoff lines
2591 # print only one empty line
2592 # do not print empty line after signoff
2594 next if ($empty || $signoff);
2600 print format_log_line_html
($line) . "<br/>\n";
2603 if ($opts{'-final_empty_line'}) {
2604 # end with single empty line
2605 print "<br/>\n" unless $empty;
2609 # return link target (what link points to)
2610 sub git_get_link_target
{
2615 open my $fd, "-|", git_cmd
(), "cat-file", "blob", $hash
2619 $link_target = <$fd>;
2624 return $link_target;
2627 # given link target, and the directory (basedir) the link is in,
2628 # return target of link relative to top directory (top tree);
2629 # return undef if it is not possible (including absolute links).
2630 sub normalize_link_target
{
2631 my ($link_target, $basedir, $hash_base) = @_;
2633 # we can normalize symlink target only if $hash_base is provided
2634 return unless $hash_base;
2636 # absolute symlinks (beginning with '/') cannot be normalized
2637 return if (substr($link_target, 0, 1) eq '/');
2639 # normalize link target to path from top (root) tree (dir)
2642 $path = $basedir . '/' . $link_target;
2644 # we are in top (root) tree (dir)
2645 $path = $link_target;
2648 # remove //, /./, and /../
2650 foreach my $part (split('/', $path)) {
2651 # discard '.' and ''
2652 next if (!$part || $part eq '.');
2654 if ($part eq '..') {
2658 # link leads outside repository (outside top dir)
2662 push @path_parts, $part;
2665 $path = join('/', @path_parts);
2670 # print tree entry (row of git_tree), but without encompassing <tr> element
2671 sub git_print_tree_entry
{
2672 my ($t, $basedir, $hash_base, $have_blame) = @_;
2675 $base_key{'hash_base'} = $hash_base if defined $hash_base;
2677 # The format of a table row is: mode list link. Where mode is
2678 # the mode of the entry, list is the name of the entry, an href,
2679 # and link is the action links of the entry.
2681 print "<td class=\"mode\">" . mode_str
($t->{'mode'}) . "</td>\n";
2682 if ($t->{'type'} eq "blob") {
2683 print "<td class=\"list\">" .
2684 $cgi->a({-href
=> href
(action
=>"blob", hash
=>$t->{'hash'},
2685 file_name
=>"$basedir$t->{'name'}", %base_key),
2686 -class => "list"}, esc_path
($t->{'name'}));
2687 if (S_ISLNK
(oct $t->{'mode'})) {
2688 my $link_target = git_get_link_target
($t->{'hash'});
2690 my $norm_target = normalize_link_target
($link_target, $basedir, $hash_base);
2691 if (defined $norm_target) {
2693 $cgi->a({-href
=> href
(action
=>"object", hash_base
=>$hash_base,
2694 file_name
=>$norm_target),
2695 -title
=> $norm_target}, esc_path
($link_target));
2697 print " -> " . esc_path
($link_target);
2702 print "<td class=\"link\">";
2703 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$t->{'hash'},
2704 file_name
=>"$basedir$t->{'name'}", %base_key)},
2708 $cgi->a({-href
=> href
(action
=>"blame", hash
=>$t->{'hash'},
2709 file_name
=>"$basedir$t->{'name'}", %base_key)},
2712 if (defined $hash_base) {
2714 $cgi->a({-href
=> href
(action
=>"history", hash_base
=>$hash_base,
2715 hash
=>$t->{'hash'}, file_name
=>"$basedir$t->{'name'}")},
2719 $cgi->a({-href
=> href
(action
=>"blob_plain", hash_base
=>$hash_base,
2720 file_name
=>"$basedir$t->{'name'}")},
2724 } elsif ($t->{'type'} eq "tree") {
2725 print "<td class=\"list\">";
2726 print $cgi->a({-href
=> href
(action
=>"tree", hash
=>$t->{'hash'},
2727 file_name
=>"$basedir$t->{'name'}", %base_key)},
2728 esc_path
($t->{'name'}));
2730 print "<td class=\"link\">";
2731 print $cgi->a({-href
=> href
(action
=>"tree", hash
=>$t->{'hash'},
2732 file_name
=>"$basedir$t->{'name'}", %base_key)},
2734 if (defined $hash_base) {
2736 $cgi->a({-href
=> href
(action
=>"history", hash_base
=>$hash_base,
2737 file_name
=>"$basedir$t->{'name'}")},
2742 # unknown object: we can only present history for it
2743 # (this includes 'commit' object, i.e. submodule support)
2744 print "<td class=\"list\">" .
2745 esc_path
($t->{'name'}) .
2747 print "<td class=\"link\">";
2748 if (defined $hash_base) {
2749 print $cgi->a({-href
=> href
(action
=>"history",
2750 hash_base
=>$hash_base,
2751 file_name
=>"$basedir$t->{'name'}")},
2758 ## ......................................................................
2759 ## functions printing large fragments of HTML
2761 sub fill_from_file_info
{
2762 my ($diff, @parents) = @_;
2764 $diff->{'from_file'} = [ ];
2765 $diff->{'from_file'}[$diff->{'nparents'} - 1] = undef;
2766 for (my $i = 0; $i < $diff->{'nparents'}; $i++) {
2767 if ($diff->{'status'}[$i] eq 'R' ||
2768 $diff->{'status'}[$i] eq 'C') {
2769 $diff->{'from_file'}[$i] =
2770 git_get_path_by_hash
($parents[$i], $diff->{'from_id'}[$i]);
2777 # parameters can be strings, or references to arrays of strings
2781 if (ref($a) eq "ARRAY" && ref($b) eq "ARRAY" && @
$a == @
$b) {
2782 for (my $i = 0; $i < @
$a; ++$i) {
2783 return 0 unless ($a->[$i] eq $b->[$i]);
2786 } elsif (!ref($a) && !ref($b)) {
2794 my $diffinfo = shift;
2796 return $diffinfo->{'to_id'} eq ('0' x
40);
2799 sub git_difftree_body
{
2800 my ($difftree, $hash, @parents) = @_;
2801 my ($parent) = $parents[0];
2802 my ($have_blame) = gitweb_check_feature
('blame');
2803 print "<div class=\"list_head\">\n";
2804 if ($#{$difftree} > 10) {
2805 print(($#{$difftree} + 1) . " files changed:\n");
2809 print "<table class=\"" .
2810 (@parents > 1 ?
"combined " : "") .
2813 # header only for combined diff in 'commitdiff' view
2814 my $has_header = @parents > 1 && $action eq 'commitdiff';
2817 print "<thead><tr>\n" .
2818 "<th></th><th></th>\n"; # filename, patchN link
2819 for (my $i = 0; $i < @parents; $i++) {
2820 my $par = $parents[$i];
2822 $cgi->a({-href
=> href
(action
=>"commitdiff",
2823 hash
=>$hash, hash_parent
=>$par),
2824 -title
=> 'commitdiff to parent number ' .
2825 ($i+1) . ': ' . substr($par,0,7)},
2829 print "</tr></thead>\n<tbody>\n";
2834 foreach my $line (@
{$difftree}) {
2836 if (ref($line) eq "HASH") {
2837 # pre-parsed (or generated by hand)
2840 $diff = parse_difftree_raw_line
($line);
2844 print "<tr class=\"dark\">\n";
2846 print "<tr class=\"light\">\n";
2850 if (exists $diff->{'nparents'}) { # combined diff
2852 fill_from_file_info
($diff, @parents)
2853 unless exists $diff->{'from_file'};
2855 if (!is_deleted
($diff)) {
2856 # file exists in the result (child) commit
2858 $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff->{'to_id'},
2859 file_name
=>$diff->{'to_file'},
2861 -class => "list"}, esc_path
($diff->{'to_file'})) .
2865 esc_path
($diff->{'to_file'}) .
2869 if ($action eq 'commitdiff') {
2872 print "<td class=\"link\">" .
2873 $cgi->a({-href
=> "#patch$patchno"}, "patch") .
2878 my $has_history = 0;
2879 my $not_deleted = 0;
2880 for (my $i = 0; $i < $diff->{'nparents'}; $i++) {
2881 my $hash_parent = $parents[$i];
2882 my $from_hash = $diff->{'from_id'}[$i];
2883 my $from_path = $diff->{'from_file'}[$i];
2884 my $status = $diff->{'status'}[$i];
2886 $has_history ||= ($status ne 'A');
2887 $not_deleted ||= ($status ne 'D');
2889 if ($status eq 'A') {
2890 print "<td class=\"link\" align=\"right\"> | </td>\n";
2891 } elsif ($status eq 'D') {
2892 print "<td class=\"link\">" .
2893 $cgi->a({-href
=> href
(action
=>"blob",
2896 file_name
=>$from_path)},
2900 if ($diff->{'to_id'} eq $from_hash) {
2901 print "<td class=\"link nochange\">";
2903 print "<td class=\"link\">";
2905 print $cgi->a({-href
=> href
(action
=>"blobdiff",
2906 hash
=>$diff->{'to_id'},
2907 hash_parent
=>$from_hash,
2909 hash_parent_base
=>$hash_parent,
2910 file_name
=>$diff->{'to_file'},
2911 file_parent
=>$from_path)},
2917 print "<td class=\"link\">";
2919 print $cgi->a({-href
=> href
(action
=>"blob",
2920 hash
=>$diff->{'to_id'},
2921 file_name
=>$diff->{'to_file'},
2924 print " | " if ($has_history);
2927 print $cgi->a({-href
=> href
(action
=>"history",
2928 file_name
=>$diff->{'to_file'},
2935 next; # instead of 'else' clause, to avoid extra indent
2937 # else ordinary diff
2939 my ($to_mode_oct, $to_mode_str, $to_file_type);
2940 my ($from_mode_oct, $from_mode_str, $from_file_type);
2941 if ($diff->{'to_mode'} ne ('0' x
6)) {
2942 $to_mode_oct = oct $diff->{'to_mode'};
2943 if (S_ISREG
($to_mode_oct)) { # only for regular file
2944 $to_mode_str = sprintf("%04o", $to_mode_oct & 0777); # permission bits
2946 $to_file_type = file_type
($diff->{'to_mode'});
2948 if ($diff->{'from_mode'} ne ('0' x
6)) {
2949 $from_mode_oct = oct $diff->{'from_mode'};
2950 if (S_ISREG
($to_mode_oct)) { # only for regular file
2951 $from_mode_str = sprintf("%04o", $from_mode_oct & 0777); # permission bits
2953 $from_file_type = file_type
($diff->{'from_mode'});
2956 if ($diff->{'status'} eq "A") { # created
2957 my $mode_chng = "<span class=\"file_status new\">[new $to_file_type";
2958 $mode_chng .= " with mode: $to_mode_str" if $to_mode_str;
2959 $mode_chng .= "]</span>";
2961 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff->{'to_id'},
2962 hash_base
=>$hash, file_name
=>$diff->{'file'}),
2963 -class => "list"}, esc_path
($diff->{'file'}));
2965 print "<td>$mode_chng</td>\n";
2966 print "<td class=\"link\">";
2967 if ($action eq 'commitdiff') {
2970 print $cgi->a({-href
=> "#patch$patchno"}, "patch");
2973 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff->{'to_id'},
2974 hash_base
=>$hash, file_name
=>$diff->{'file'})},
2978 } elsif ($diff->{'status'} eq "D") { # deleted
2979 my $mode_chng = "<span class=\"file_status deleted\">[deleted $from_file_type]</span>";
2981 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff->{'from_id'},
2982 hash_base
=>$parent, file_name
=>$diff->{'file'}),
2983 -class => "list"}, esc_path
($diff->{'file'}));
2985 print "<td>$mode_chng</td>\n";
2986 print "<td class=\"link\">";
2987 if ($action eq 'commitdiff') {
2990 print $cgi->a({-href
=> "#patch$patchno"}, "patch");
2993 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff->{'from_id'},
2994 hash_base
=>$parent, file_name
=>$diff->{'file'})},
2997 print $cgi->a({-href
=> href
(action
=>"blame", hash_base
=>$parent,
2998 file_name
=>$diff->{'file'})},
3001 print $cgi->a({-href
=> href
(action
=>"history", hash_base
=>$parent,
3002 file_name
=>$diff->{'file'})},
3006 } elsif ($diff->{'status'} eq "M" || $diff->{'status'} eq "T") { # modified, or type changed
3007 my $mode_chnge = "";
3008 if ($diff->{'from_mode'} != $diff->{'to_mode'}) {
3009 $mode_chnge = "<span class=\"file_status mode_chnge\">[changed";
3010 if ($from_file_type ne $to_file_type) {
3011 $mode_chnge .= " from $from_file_type to $to_file_type";
3013 if (($from_mode_oct & 0777) != ($to_mode_oct & 0777)) {
3014 if ($from_mode_str && $to_mode_str) {
3015 $mode_chnge .= " mode: $from_mode_str->$to_mode_str";
3016 } elsif ($to_mode_str) {
3017 $mode_chnge .= " mode: $to_mode_str";
3020 $mode_chnge .= "]</span>\n";
3023 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff->{'to_id'},
3024 hash_base
=>$hash, file_name
=>$diff->{'file'}),
3025 -class => "list"}, esc_path
($diff->{'file'}));
3027 print "<td>$mode_chnge</td>\n";
3028 print "<td class=\"link\">";
3029 if ($action eq 'commitdiff') {
3032 print $cgi->a({-href
=> "#patch$patchno"}, "patch") .
3034 } elsif ($diff->{'to_id'} ne $diff->{'from_id'}) {
3035 # "commit" view and modified file (not onlu mode changed)
3036 print $cgi->a({-href
=> href
(action
=>"blobdiff",
3037 hash
=>$diff->{'to_id'}, hash_parent
=>$diff->{'from_id'},
3038 hash_base
=>$hash, hash_parent_base
=>$parent,
3039 file_name
=>$diff->{'file'})},
3043 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff->{'to_id'},
3044 hash_base
=>$hash, file_name
=>$diff->{'file'})},
3047 print $cgi->a({-href
=> href
(action
=>"blame", hash_base
=>$hash,
3048 file_name
=>$diff->{'file'})},
3051 print $cgi->a({-href
=> href
(action
=>"history", hash_base
=>$hash,
3052 file_name
=>$diff->{'file'})},
3056 } elsif ($diff->{'status'} eq "R" || $diff->{'status'} eq "C") { # renamed or copied
3057 my %status_name = ('R' => 'moved', 'C' => 'copied');
3058 my $nstatus = $status_name{$diff->{'status'}};
3060 if ($diff->{'from_mode'} != $diff->{'to_mode'}) {
3061 # mode also for directories, so we cannot use $to_mode_str
3062 $mode_chng = sprintf(", mode: %04o", $to_mode_oct & 0777);
3065 $cgi->a({-href
=> href
(action
=>"blob", hash_base
=>$hash,
3066 hash
=>$diff->{'to_id'}, file_name
=>$diff->{'to_file'}),
3067 -class => "list"}, esc_path
($diff->{'to_file'})) . "</td>\n" .
3068 "<td><span class=\"file_status $nstatus\">[$nstatus from " .
3069 $cgi->a({-href
=> href
(action
=>"blob", hash_base
=>$parent,
3070 hash
=>$diff->{'from_id'}, file_name
=>$diff->{'from_file'}),
3071 -class => "list"}, esc_path
($diff->{'from_file'})) .
3072 " with " . (int $diff->{'similarity'}) . "% similarity$mode_chng]</span></td>\n" .
3073 "<td class=\"link\">";
3074 if ($action eq 'commitdiff') {
3077 print $cgi->a({-href
=> "#patch$patchno"}, "patch") .
3079 } elsif ($diff->{'to_id'} ne $diff->{'from_id'}) {
3080 # "commit" view and modified file (not only pure rename or copy)
3081 print $cgi->a({-href
=> href
(action
=>"blobdiff",
3082 hash
=>$diff->{'to_id'}, hash_parent
=>$diff->{'from_id'},
3083 hash_base
=>$hash, hash_parent_base
=>$parent,
3084 file_name
=>$diff->{'to_file'}, file_parent
=>$diff->{'from_file'})},
3088 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff->{'to_id'},
3089 hash_base
=>$parent, file_name
=>$diff->{'to_file'})},
3092 print $cgi->a({-href
=> href
(action
=>"blame", hash_base
=>$hash,
3093 file_name
=>$diff->{'to_file'})},
3096 print $cgi->a({-href
=> href
(action
=>"history", hash_base
=>$hash,
3097 file_name
=>$diff->{'to_file'})},
3101 } # we should not encounter Unmerged (U) or Unknown (X) status
3104 print "</tbody>" if $has_header;
3108 sub git_patchset_body
{
3109 my ($fd, $difftree, $hash, @hash_parents) = @_;
3110 my ($hash_parent) = $hash_parents[0];
3113 my $patch_number = 0;
3118 print "<div class=\"patchset\">\n";
3120 # skip to first patch
3121 while ($patch_line = <$fd>) {
3124 last if ($patch_line =~ m/^diff /);
3128 while ($patch_line) {
3130 my ($from_id, $to_id);
3133 #assert($patch_line =~ m/^diff /) if DEBUG;
3134 #assert($patch_line !~ m!$/$!) if DEBUG; # is chomp-ed
3136 push @diff_header, $patch_line;
3138 # extended diff header
3140 while ($patch_line = <$fd>) {
3143 last EXTENDED_HEADER
if ($patch_line =~ m/^--- |^diff /);
3145 if ($patch_line =~ m/^index ([0-9a-fA-F]{40})..([0-9a-fA-F]{40})/) {
3148 } elsif ($patch_line =~ m/^index ((?:[0-9a-fA-F]{40},)+[0-9a-fA-F]{40})..([0-9a-fA-F]{40})/) {
3149 $from_id = [ split(',', $1) ];
3153 push @diff_header, $patch_line;
3155 my $last_patch_line = $patch_line;
3157 # check if current patch belong to current raw line
3158 # and parse raw git-diff line if needed
3159 if (defined $diffinfo &&
3160 defined $from_id && defined $to_id &&
3161 from_ids_eq
($diffinfo->{'from_id'}, $from_id) &&
3162 $diffinfo->{'to_id'} eq $to_id) {
3163 # this is continuation of a split patch
3164 print "<div class=\"patch cont\">\n";
3166 # advance raw git-diff output if needed
3167 $patch_idx++ if defined $diffinfo;
3169 # compact combined diff output can have some patches skipped
3170 # find which patch (using pathname of result) we are at now
3172 if ($diff_header[0] =~ m!^diff --cc "?(.*)"?$!) {
3177 # read and prepare patch information
3178 if (ref($difftree->[$patch_idx]) eq "HASH") {
3179 # pre-parsed (or generated by hand)
3180 $diffinfo = $difftree->[$patch_idx];
3182 $diffinfo = parse_difftree_raw_line
($difftree->[$patch_idx]);
3185 # check if current raw line has no patch (it got simplified)
3186 if (defined $to_name && $to_name ne $diffinfo->{'to_file'}) {
3187 print "<div class=\"patch\" id=\"patch". ($patch_idx+1) ."\">\n" .
3188 format_diff_cc_simplified
($diffinfo, @hash_parents) .
3189 "</div>\n"; # class="patch"
3194 } until (!defined $to_name || $to_name eq $diffinfo->{'to_file'} ||
3195 $patch_idx > $#$difftree);
3196 # modifies %from, %to hashes
3197 parse_from_to_diffinfo
($diffinfo, \
%from, \
%to, @hash_parents);
3198 if ($diffinfo->{'nparents'}) {
3202 fill_from_file_info
($diffinfo, @hash_parents)
3203 unless exists $diffinfo->{'from_file'};
3204 for (my $i = 0; $i < $diffinfo->{'nparents'}; $i++) {
3205 $from{'file'}[$i] = $diffinfo->{'from_file'}[$i] || $diffinfo->{'to_file'};
3206 if ($diffinfo->{'status'}[$i] ne "A") { # not new (added) file
3207 $from{'href'}[$i] = href
(action
=>"blob",
3208 hash_base
=>$hash_parents[$i],
3209 hash
=>$diffinfo->{'from_id'}[$i],
3210 file_name
=>$from{'file'}[$i]);
3212 $from{'href'}[$i] = undef;
3216 $from{'file'} = $diffinfo->{'from_file'} || $diffinfo->{'file'};
3217 if ($diffinfo->{'status'} ne "A") { # not new (added) file
3218 $from{'href'} = href
(action
=>"blob", hash_base
=>$hash_parent,
3219 hash
=>$diffinfo->{'from_id'},
3220 file_name
=>$from{'file'});
3222 delete $from{'href'};
3226 $to{'file'} = $diffinfo->{'to_file'} || $diffinfo->{'file'};
3227 if (!is_deleted
($diffinfo)) { # file exists in result
3228 $to{'href'} = href
(action
=>"blob", hash_base
=>$hash,
3229 hash
=>$diffinfo->{'to_id'},
3230 file_name
=>$to{'file'});
3234 # this is first patch for raw difftree line with $patch_idx index
3235 # we index @$difftree array from 0, but number patches from 1
3236 print "<div class=\"patch\" id=\"patch". ($patch_idx+1) ."\">\n";
3239 # print "git diff" header
3240 $patch_line = shift @diff_header;
3241 print format_git_diff_header_line
($patch_line, $diffinfo,
3244 # print extended diff header
3245 print "<div class=\"diff extended_header\">\n" if (@diff_header > 0);
3247 foreach $patch_line (@diff_header) {
3248 print format_extended_diff_header_line
($patch_line, $diffinfo,
3251 print "</div>\n" if (@diff_header > 0); # class="diff extended_header"
3253 # from-file/to-file diff header
3254 $patch_line = $last_patch_line;
3255 if (! $patch_line) {
3256 print "</div>\n"; # class="patch"
3259 next PATCH
if ($patch_line =~ m/^diff /);
3260 #assert($patch_line =~ m/^---/) if DEBUG;
3261 #assert($patch_line eq $last_patch_line) if DEBUG;
3263 $patch_line = <$fd>;
3265 #assert($patch_line =~ m/^\+\+\+/) if DEBUG;
3267 print format_diff_from_to_header
($last_patch_line, $patch_line,
3268 $diffinfo, \
%from, \
%to,
3273 while ($patch_line = <$fd>) {
3276 next PATCH
if ($patch_line =~ m/^diff /);
3278 print format_diff_line
($patch_line, \
%from, \
%to);
3282 print "</div>\n"; # class="patch"
3285 # for compact combined (--cc) format, with chunk and patch simpliciaction
3286 # patchset might be empty, but there might be unprocessed raw lines
3287 for ($patch_idx++ if $patch_number > 0;
3288 $patch_idx < @
$difftree;
3290 # read and prepare patch information
3291 if (ref($difftree->[$patch_idx]) eq "HASH") {
3292 # pre-parsed (or generated by hand)
3293 $diffinfo = $difftree->[$patch_idx];
3295 $diffinfo = parse_difftree_raw_line
($difftree->[$patch_idx]);
3298 # generate anchor for "patch" links in difftree / whatchanged part
3299 print "<div class=\"patch\" id=\"patch". ($patch_idx+1) ."\">\n" .
3300 format_diff_cc_simplified
($diffinfo, @hash_parents) .
3301 "</div>\n"; # class="patch"
3306 if ($patch_number == 0) {
3307 if (@hash_parents > 1) {
3308 print "<div class=\"diff nodifferences\">Trivial merge</div>\n";
3310 print "<div class=\"diff nodifferences\">No differences found</div>\n";
3314 print "</div>\n"; # class="patchset"
3317 # . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
3319 sub git_project_list_body
{
3320 my ($projlist, $order, $from, $to, $extra, $no_header) = @_;
3322 my ($check_forks) = gitweb_check_feature
('forks');
3325 foreach my $pr (@
$projlist) {
3326 my (@aa) = git_get_last_activity
($pr->{'path'});
3330 ($pr->{'age'}, $pr->{'age_string'}) = @aa;
3331 if (!defined $pr->{'descr'}) {
3332 my $descr = git_get_project_description
($pr->{'path'}) || "";
3333 $pr->{'descr_long'} = to_utf8
($descr);
3334 $pr->{'descr'} = chop_str
($descr, $projects_list_description_width, 5);
3336 if (!defined $pr->{'owner'}) {
3337 $pr->{'owner'} = git_get_project_owner
("$pr->{'path'}") || "";
3340 my $pname = $pr->{'path'};
3341 if (($pname =~ s/\.git$//) &&
3342 ($pname !~ /\/$/) &&
3343 (-d
"$projectroot/$pname")) {
3344 $pr->{'forks'} = "-d $projectroot/$pname";
3350 push @projects, $pr;
3353 $order ||= $default_projects_order;
3354 $from = 0 unless defined $from;
3355 $to = $#projects if (!defined $to || $#projects < $to);
3357 print "<table class=\"project_list\">\n";
3358 unless ($no_header) {
3361 print "<th></th>\n";
3363 if ($order eq "project") {
3364 @projects = sort {$a->{'path'} cmp $b->{'path'}} @projects;
3365 print "<th>Project</th>\n";
3368 $cgi->a({-href
=> href
(project
=>undef, order
=>'project'),
3369 -class => "header"}, "Project") .
3372 if ($order eq "descr") {
3373 @projects = sort {$a->{'descr'} cmp $b->{'descr'}} @projects;
3374 print "<th>Description</th>\n";
3377 $cgi->a({-href
=> href
(project
=>undef, order
=>'descr'),
3378 -class => "header"}, "Description") .
3381 if ($order eq "owner") {
3382 @projects = sort {$a->{'owner'} cmp $b->{'owner'}} @projects;
3383 print "<th>Owner</th>\n";
3386 $cgi->a({-href
=> href
(project
=>undef, order
=>'owner'),
3387 -class => "header"}, "Owner") .
3390 if ($order eq "age") {
3391 @projects = sort {$a->{'age'} <=> $b->{'age'}} @projects;
3392 print "<th>Last Change</th>\n";
3395 $cgi->a({-href
=> href
(project
=>undef, order
=>'age'),
3396 -class => "header"}, "Last Change") .
3399 print "<th></th>\n" .
3403 for (my $i = $from; $i <= $to; $i++) {
3404 my $pr = $projects[$i];
3406 print "<tr class=\"dark\">\n";
3408 print "<tr class=\"light\">\n";
3413 if ($pr->{'forks'}) {
3414 print "<!-- $pr->{'forks'} -->\n";
3415 print $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"forks")}, "+");
3419 print "<td>" . $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"summary"),
3420 -class => "list"}, esc_html
($pr->{'path'})) . "</td>\n" .
3421 "<td>" . $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"summary"),
3422 -class => "list", -title
=> $pr->{'descr_long'}},
3423 esc_html
($pr->{'descr'})) . "</td>\n" .
3424 "<td><i>" . chop_str
($pr->{'owner'}, 15) . "</i></td>\n";
3425 print "<td class=\"". age_class
($pr->{'age'}) . "\">" .
3426 (defined $pr->{'age_string'} ?
$pr->{'age_string'} : "No commits") . "</td>\n" .
3427 "<td class=\"link\">" .
3428 $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"summary")}, "summary") . " | " .
3429 $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"shortlog")}, "shortlog") . " | " .
3430 $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"log")}, "log") . " | " .
3431 $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"tree")}, "tree") .
3432 ($pr->{'forks'} ?
" | " . $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"forks")}, "forks") : '') .
3436 if (defined $extra) {
3439 print "<td></td>\n";
3441 print "<td colspan=\"5\">$extra</td>\n" .
3447 sub git_shortlog_body
{
3448 # uses global variable $project
3449 my ($commitlist, $from, $to, $refs, $extra) = @_;
3451 $from = 0 unless defined $from;
3452 $to = $#{$commitlist} if (!defined $to || $#{$commitlist} < $to);
3454 print "<table class=\"shortlog\" cellspacing=\"0\">\n";
3456 for (my $i = $from; $i <= $to; $i++) {
3457 my %co = %{$commitlist->[$i]};
3458 my $commit = $co{'id'};
3459 my $ref = format_ref_marker
($refs, $commit);
3461 print "<tr class=\"dark\">\n";
3463 print "<tr class=\"light\">\n";
3466 # git_summary() used print "<td><i>$co{'age_string'}</i></td>\n" .
3467 print "<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n" .
3468 "<td><i>" . esc_html
(chop_str
($co{'author_name'}, 10)) . "</i></td>\n" .
3470 print format_subject_html
($co{'title'}, $co{'title_short'},
3471 href
(action
=>"commit", hash
=>$commit), $ref);
3473 "<td class=\"link\">" .
3474 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$commit)}, "commit") . " | " .
3475 $cgi->a({-href
=> href
(action
=>"commitdiff", hash
=>$commit)}, "commitdiff") . " | " .
3476 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$commit, hash_base
=>$commit)}, "tree");
3477 my $snapshot_links = format_snapshot_links
($commit);
3478 if (defined $snapshot_links) {
3479 print " | " . $snapshot_links;
3484 if (defined $extra) {
3486 "<td colspan=\"4\">$extra</td>\n" .
3492 sub git_history_body
{
3493 # Warning: assumes constant type (blob or tree) during history
3494 my ($commitlist, $from, $to, $refs, $hash_base, $ftype, $extra) = @_;
3496 $from = 0 unless defined $from;
3497 $to = $#{$commitlist} unless (defined $to && $to <= $#{$commitlist});
3499 print "<table class=\"history\" cellspacing=\"0\">\n";
3501 for (my $i = $from; $i <= $to; $i++) {
3502 my %co = %{$commitlist->[$i]};
3506 my $commit = $co{'id'};
3508 my $ref = format_ref_marker
($refs, $commit);
3511 print "<tr class=\"dark\">\n";
3513 print "<tr class=\"light\">\n";
3516 print "<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n" .
3517 # shortlog uses chop_str($co{'author_name'}, 10)
3518 "<td><i>" . esc_html
(chop_str
($co{'author_name'}, 15, 3)) . "</i></td>\n" .
3520 # originally git_history used chop_str($co{'title'}, 50)
3521 print format_subject_html
($co{'title'}, $co{'title_short'},
3522 href
(action
=>"commit", hash
=>$commit), $ref);
3524 "<td class=\"link\">" .
3525 $cgi->a({-href
=> href
(action
=>$ftype, hash_base
=>$commit, file_name
=>$file_name)}, $ftype) . " | " .
3526 $cgi->a({-href
=> href
(action
=>"commitdiff", hash
=>$commit)}, "commitdiff");
3528 if ($ftype eq 'blob') {
3529 my $blob_current = git_get_hash_by_path
($hash_base, $file_name);
3530 my $blob_parent = git_get_hash_by_path
($commit, $file_name);
3531 if (defined $blob_current && defined $blob_parent &&
3532 $blob_current ne $blob_parent) {
3534 $cgi->a({-href
=> href
(action
=>"blobdiff",
3535 hash
=>$blob_current, hash_parent
=>$blob_parent,
3536 hash_base
=>$hash_base, hash_parent_base
=>$commit,
3537 file_name
=>$file_name)},
3544 if (defined $extra) {
3546 "<td colspan=\"4\">$extra</td>\n" .
3553 # uses global variable $project
3554 my ($taglist, $from, $to, $extra) = @_;
3555 $from = 0 unless defined $from;
3556 $to = $#{$taglist} if (!defined $to || $#{$taglist} < $to);
3558 print "<table class=\"tags\" cellspacing=\"0\">\n";
3560 for (my $i = $from; $i <= $to; $i++) {
3561 my $entry = $taglist->[$i];
3563 my $comment = $tag{'subject'};
3565 if (defined $comment) {
3566 $comment_short = chop_str
($comment, 30, 5);
3569 print "<tr class=\"dark\">\n";
3571 print "<tr class=\"light\">\n";
3574 if (defined $tag{'age'}) {
3575 print "<td><i>$tag{'age'}</i></td>\n";
3577 print "<td></td>\n";
3580 $cgi->a({-href
=> href
(action
=>$tag{'reftype'}, hash
=>$tag{'refid'}),
3581 -class => "list name"}, esc_html
($tag{'name'})) .
3584 if (defined $comment) {
3585 print format_subject_html
($comment, $comment_short,
3586 href
(action
=>"tag", hash
=>$tag{'id'}));
3589 "<td class=\"selflink\">";
3590 if ($tag{'type'} eq "tag") {
3591 print $cgi->a({-href
=> href
(action
=>"tag", hash
=>$tag{'id'})}, "tag");
3596 "<td class=\"link\">" . " | " .
3597 $cgi->a({-href
=> href
(action
=>$tag{'reftype'}, hash
=>$tag{'refid'})}, $tag{'reftype'});
3598 if ($tag{'reftype'} eq "commit") {
3599 print " | " . $cgi->a({-href
=> href
(action
=>"shortlog", hash
=>$tag{'name'})}, "shortlog") .
3600 " | " . $cgi->a({-href
=> href
(action
=>"log", hash
=>$tag{'name'})}, "log");
3601 } elsif ($tag{'reftype'} eq "blob") {
3602 print " | " . $cgi->a({-href
=> href
(action
=>"blob_plain", hash
=>$tag{'refid'})}, "raw");
3607 if (defined $extra) {
3609 "<td colspan=\"5\">$extra</td>\n" .
3615 sub git_heads_body
{
3616 # uses global variable $project
3617 my ($headlist, $head, $from, $to, $extra) = @_;
3618 $from = 0 unless defined $from;
3619 $to = $#{$headlist} if (!defined $to || $#{$headlist} < $to);
3621 print "<table class=\"heads\" cellspacing=\"0\">\n";
3623 for (my $i = $from; $i <= $to; $i++) {
3624 my $entry = $headlist->[$i];
3626 my $curr = $ref{'id'} eq $head;
3628 print "<tr class=\"dark\">\n";
3630 print "<tr class=\"light\">\n";
3633 print "<td><i>$ref{'age'}</i></td>\n" .
3634 ($curr ?
"<td class=\"current_head\">" : "<td>") .
3635 $cgi->a({-href
=> href
(action
=>"shortlog", hash
=>$ref{'name'}),
3636 -class => "list name"},esc_html
($ref{'name'})) .
3638 "<td class=\"link\">" .
3639 $cgi->a({-href
=> href
(action
=>"shortlog", hash
=>$ref{'name'})}, "shortlog") . " | " .
3640 $cgi->a({-href
=> href
(action
=>"log", hash
=>$ref{'name'})}, "log") . " | " .
3641 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$ref{'name'}, hash_base
=>$ref{'name'})}, "tree") .
3645 if (defined $extra) {
3647 "<td colspan=\"3\">$extra</td>\n" .
3653 sub git_search_grep_body
{
3654 my ($commitlist, $from, $to, $extra) = @_;
3655 $from = 0 unless defined $from;
3656 $to = $#{$commitlist} if (!defined $to || $#{$commitlist} < $to);
3658 print "<table class=\"grep\" cellspacing=\"0\">\n";
3660 for (my $i = $from; $i <= $to; $i++) {
3661 my %co = %{$commitlist->[$i]};
3665 my $commit = $co{'id'};
3667 print "<tr class=\"dark\">\n";
3669 print "<tr class=\"light\">\n";
3672 print "<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n" .
3673 "<td><i>" . esc_html
(chop_str
($co{'author_name'}, 15, 5)) . "</i></td>\n" .
3675 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$co{'id'}), -class => "list subject"},
3676 esc_html
(chop_str
($co{'title'}, 50)) . "<br/>");
3677 my $comment = $co{'comment'};
3678 foreach my $line (@
$comment) {
3679 if ($line =~ m/^(.*)($search_regexp)(.*)$/i) {
3680 my $lead = esc_html
($1) || "";
3681 $lead = chop_str
($lead, 30, 10);
3682 my $match = esc_html
($2) || "";
3683 my $trail = esc_html
($3) || "";
3684 $trail = chop_str
($trail, 30, 10);
3685 my $text = "$lead<span class=\"match\">$match</span>$trail";
3686 print chop_str
($text, 80, 5) . "<br/>\n";
3690 "<td class=\"link\">" .
3691 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$co{'id'})}, "commit") .
3693 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$co{'tree'}, hash_base
=>$co{'id'})}, "tree");
3697 if (defined $extra) {
3699 "<td colspan=\"3\">$extra</td>\n" .
3705 ## ======================================================================
3706 ## ======================================================================
3709 sub git_project_list
{
3710 my $order = $cgi->param('o');
3711 if (defined $order && $order !~ m/none|project|descr|owner|age/) {
3712 die_error
(undef, "Unknown order parameter");
3715 my @list = git_get_projects_list
();
3717 die_error
(undef, "No projects found");
3721 if (-f
$home_text) {
3722 print "<div class=\"index_include\">\n";
3723 open (my $fd, $home_text);
3728 git_project_list_body
(\
@list, $order);
3733 my $order = $cgi->param('o');
3734 if (defined $order && $order !~ m/none|project|descr|owner|age/) {
3735 die_error
(undef, "Unknown order parameter");
3738 my @list = git_get_projects_list
($project);
3740 die_error
(undef, "No forks found");
3744 git_print_page_nav
('','');
3745 git_print_header_div
('summary', "$project forks");
3746 git_project_list_body
(\
@list, $order);
3750 sub git_project_index
{
3751 my @projects = git_get_projects_list
($project);
3754 -type
=> 'text/plain',
3755 -charset
=> 'utf-8',
3756 -content_disposition
=> 'inline; filename="index.aux"');
3758 foreach my $pr (@projects) {
3759 if (!exists $pr->{'owner'}) {
3760 $pr->{'owner'} = git_get_project_owner
("$pr->{'path'}");
3763 my ($path, $owner) = ($pr->{'path'}, $pr->{'owner'});
3764 # quote as in CGI::Util::encode, but keep the slash, and use '+' for ' '
3765 $path =~ s/([^a-zA-Z0-9_.\-\/ ])/sprintf
("%%%02X", ord($1))/eg
;
3766 $owner =~ s/([^a-zA-Z0-9_.\-\/ ])/sprintf
("%%%02X", ord($1))/eg
;
3770 print "$path $owner\n";
3775 my $descr = git_get_project_description
($project) || "none";
3776 my %co = parse_commit
("HEAD");
3777 my %cd = %co ? parse_date
($co{'committer_epoch'}, $co{'committer_tz'}) : ();
3778 my $head = $co{'id'};
3780 my $owner = git_get_project_owner
($project);
3782 my $refs = git_get_references
();
3783 # These get_*_list functions return one more to allow us to see if
3784 # there are more ...
3785 my @taglist = git_get_tags_list
(16);
3786 my @headlist = git_get_heads_list
(16);
3788 my ($check_forks) = gitweb_check_feature
('forks');
3791 @forklist = git_get_projects_list
($project);
3795 git_print_page_nav
('summary','', $head);
3797 print "<div class=\"title\"> </div>\n";
3798 print "<table cellspacing=\"0\">\n" .
3799 "<tr><td>description</td><td>" . esc_html
($descr) . "</td></tr>\n" .
3800 "<tr><td>owner</td><td>$owner</td></tr>\n";
3801 if (defined $cd{'rfc2822'}) {
3802 print "<tr><td>last change</td><td>$cd{'rfc2822'}</td></tr>\n";
3805 # use per project git URL list in $projectroot/$project/cloneurl
3806 # or make project git URL from git base URL and project name
3807 my $url_tag = "URL";
3808 my @url_list = git_get_project_url_list
($project);
3809 @url_list = map { "$_/$project" } @git_base_url_list unless @url_list;
3810 foreach my $git_url (@url_list) {
3811 next unless $git_url;
3812 print "<tr><td>$url_tag</td><td>$git_url</td></tr>\n";
3817 if (-s
"$projectroot/$project/README.html") {
3818 if (open my $fd, "$projectroot/$project/README.html") {
3819 print "<div class=\"title\">readme</div>\n";
3820 print $_ while (<$fd>);
3825 # we need to request one more than 16 (0..15) to check if
3827 my @commitlist = $head ? parse_commits
($head, 17) : ();
3829 git_print_header_div
('shortlog');
3830 git_shortlog_body
(\
@commitlist, 0, 15, $refs,
3831 $#commitlist <= 15 ?
undef :
3832 $cgi->a({-href
=> href
(action
=>"shortlog")}, "..."));
3836 git_print_header_div
('tags');
3837 git_tags_body
(\
@taglist, 0, 15,
3838 $#taglist <= 15 ?
undef :
3839 $cgi->a({-href
=> href
(action
=>"tags")}, "..."));
3843 git_print_header_div
('heads');
3844 git_heads_body
(\
@headlist, $head, 0, 15,
3845 $#headlist <= 15 ?
undef :
3846 $cgi->a({-href
=> href
(action
=>"heads")}, "..."));
3850 git_print_header_div
('forks');
3851 git_project_list_body
(\
@forklist, undef, 0, 15,
3852 $#forklist <= 15 ?
undef :
3853 $cgi->a({-href
=> href
(action
=>"forks")}, "..."),
3861 my $head = git_get_head_hash
($project);
3863 git_print_page_nav
('','', $head,undef,$head);
3864 my %tag = parse_tag
($hash);
3867 die_error
(undef, "Unknown tag object");
3870 git_print_header_div
('commit', esc_html
($tag{'name'}), $hash);
3871 print "<div class=\"title_text\">\n" .
3872 "<table cellspacing=\"0\">\n" .
3874 "<td>object</td>\n" .
3875 "<td>" . $cgi->a({-class => "list", -href
=> href
(action
=>$tag{'type'}, hash
=>$tag{'object'})},
3876 $tag{'object'}) . "</td>\n" .
3877 "<td class=\"link\">" . $cgi->a({-href
=> href
(action
=>$tag{'type'}, hash
=>$tag{'object'})},
3878 $tag{'type'}) . "</td>\n" .
3880 if (defined($tag{'author'})) {
3881 my %ad = parse_date
($tag{'epoch'}, $tag{'tz'});
3882 print "<tr><td>author</td><td>" . esc_html
($tag{'author'}) . "</td></tr>\n";
3883 print "<tr><td></td><td>" . $ad{'rfc2822'} .
3884 sprintf(" (%02d:%02d %s)", $ad{'hour_local'}, $ad{'minute_local'}, $ad{'tz_local'}) .
3887 print "</table>\n\n" .
3889 print "<div class=\"page_body\">";
3890 my $comment = $tag{'comment'};
3891 foreach my $line (@
$comment) {
3893 print esc_html
($line, -nbsp
=>1) . "<br/>\n";
3903 my ($have_blame) = gitweb_check_feature
('blame');
3905 die_error
('403 Permission denied', "Permission denied");
3907 die_error
('404 Not Found', "File name not defined") if (!$file_name);
3908 $hash_base ||= git_get_head_hash
($project);
3909 die_error
(undef, "Couldn't find base commit") unless ($hash_base);
3910 my %co = parse_commit
($hash_base)
3911 or die_error
(undef, "Reading commit failed");
3912 if (!defined $hash) {
3913 $hash = git_get_hash_by_path
($hash_base, $file_name, "blob")
3914 or die_error
(undef, "Error looking up file");
3916 $ftype = git_get_type
($hash);
3917 if ($ftype !~ "blob") {
3918 die_error
('400 Bad Request', "Object is not a blob");
3920 open ($fd, "-|", git_cmd
(), "blame", '-p', '--',
3921 $file_name, $hash_base)
3922 or die_error
(undef, "Open git-blame failed");
3925 $cgi->a({-href
=> href
(action
=>"blob", hash
=>$hash, hash_base
=>$hash_base, file_name
=>$file_name)},
3928 $cgi->a({-href
=> href
(action
=>"history", hash
=>$hash, hash_base
=>$hash_base, file_name
=>$file_name)},
3931 $cgi->a({-href
=> href
(action
=>"blame", file_name
=>$file_name)},
3933 git_print_page_nav
('','', $hash_base,$co{'tree'},$hash_base, $formats_nav);
3934 git_print_header_div
('commit', esc_html
($co{'title'}), $hash_base);
3935 git_print_page_path
($file_name, $ftype, $hash_base);
3936 my @rev_color = (qw(light2 dark2));
3937 my $num_colors = scalar(@rev_color);
3938 my $current_color = 0;
3941 <div class="page_body">
3942 <table class="blame">
3943 <tr><th>Commit</th><th>Line</th><th>Data</th></tr>
3948 last unless defined $_;
3949 my ($full_rev, $orig_lineno, $lineno, $group_size) =
3950 /^([0-9a-f]{40}) (\d+) (\d+)(?: (\d+))?$/;
3951 if (!exists $metainfo{$full_rev}) {
3952 $metainfo{$full_rev} = {};
3954 my $meta = $metainfo{$full_rev};
3957 if (/^(\S+) (.*)$/) {
3963 my $rev = substr($full_rev, 0, 8);
3964 my $author = $meta->{'author'};
3965 my %date = parse_date
($meta->{'author-time'},
3966 $meta->{'author-tz'});
3967 my $date = $date{'iso-tz'};
3969 $current_color = ++$current_color % $num_colors;
3971 print "<tr class=\"$rev_color[$current_color]\">\n";
3973 print "<td class=\"sha1\"";
3974 print " title=\"". esc_html
($author) . ", $date\"";
3975 print " rowspan=\"$group_size\"" if ($group_size > 1);
3977 print $cgi->a({-href
=> href
(action
=>"commit",
3979 file_name
=>$file_name)},
3983 open (my $dd, "-|", git_cmd
(), "rev-parse", "$full_rev^")
3984 or die_error
(undef, "Open git-rev-parse failed");
3985 my $parent_commit = <$dd>;
3987 chomp($parent_commit);
3988 my $blamed = href
(action
=> 'blame',
3989 file_name
=> $meta->{'filename'},
3990 hash_base
=> $parent_commit);
3991 print "<td class=\"linenr\">";
3992 print $cgi->a({ -href
=> "$blamed#l$orig_lineno",
3994 -class => "linenr" },
3997 print "<td class=\"pre\">" . esc_html
($data) . "</td>\n";
4003 or print "Reading blob failed\n";
4010 my ($have_blame) = gitweb_check_feature
('blame');
4012 die_error
('403 Permission denied', "Permission denied");
4014 die_error
('404 Not Found', "File name not defined") if (!$file_name);
4015 $hash_base ||= git_get_head_hash
($project);
4016 die_error
(undef, "Couldn't find base commit") unless ($hash_base);
4017 my %co = parse_commit
($hash_base)
4018 or die_error
(undef, "Reading commit failed");
4019 if (!defined $hash) {
4020 $hash = git_get_hash_by_path
($hash_base, $file_name, "blob")
4021 or die_error
(undef, "Error lookup file");
4023 open ($fd, "-|", git_cmd
(), "annotate", '-l', '-t', '-r', $file_name, $hash_base)
4024 or die_error
(undef, "Open git-annotate failed");
4027 $cgi->a({-href
=> href
(action
=>"blob", hash
=>$hash, hash_base
=>$hash_base, file_name
=>$file_name)},
4030 $cgi->a({-href
=> href
(action
=>"history", hash
=>$hash, hash_base
=>$hash_base, file_name
=>$file_name)},
4033 $cgi->a({-href
=> href
(action
=>"blame", file_name
=>$file_name)},
4035 git_print_page_nav
('','', $hash_base,$co{'tree'},$hash_base, $formats_nav);
4036 git_print_header_div
('commit', esc_html
($co{'title'}), $hash_base);
4037 git_print_page_path
($file_name, 'blob', $hash_base);
4038 print "<div class=\"page_body\">\n";
4040 <table class="blame">
4049 my @line_class = (qw(light dark));
4050 my $line_class_len = scalar (@line_class);
4051 my $line_class_num = $#line_class;
4052 while (my $line = <$fd>) {
4064 $line_class_num = ($line_class_num + 1) % $line_class_len;
4066 if ($line =~ m/^([0-9a-fA-F]{40})\t\(\s*([^\t]+)\t(\d+) [+-]\d\d\d\d\t(\d+)\)(.*)$/) {
4073 print qq( <tr
><td colspan
="5" class="error">Unable to parse
: $line</td></tr
>\n);
4076 $short_rev = substr ($long_rev, 0, 8);
4077 $age = time () - $time;
4078 $age_str = age_string
($age);
4079 $age_str =~ s/ / /g;
4080 $age_class = age_class
($age);
4081 $author = esc_html
($author);
4082 $author =~ s/ / /g;
4084 $data = untabify
($data);
4085 $data = esc_html
($data);
4088 <tr class="$line_class[$line_class_num]">
4089 <td class="sha1"><a href="${\href (action=>"commit", hash=>$long_rev)}" class="text">$short_rev..</a></td>
4090 <td class="$age_class">$age_str</td>
4092 <td class="linenr"><a id="$lineno" href="#$lineno" class="linenr">$lineno</a></td>
4093 <td class="pre">$data</td>
4096 } # while (my $line = <$fd>)
4097 print "</table>\n\n";
4099 or print "Reading blob failed.\n";
4105 my $head = git_get_head_hash
($project);
4107 git_print_page_nav
('','', $head,undef,$head);
4108 git_print_header_div
('summary', $project);
4110 my @tagslist = git_get_tags_list
();
4112 git_tags_body
(\
@tagslist);
4118 my $head = git_get_head_hash
($project);
4120 git_print_page_nav
('','', $head,undef,$head);
4121 git_print_header_div
('summary', $project);
4123 my @headslist = git_get_heads_list
();
4125 git_heads_body
(\
@headslist, $head);
4130 sub git_blob_plain
{
4133 if (!defined $hash) {
4134 if (defined $file_name) {
4135 my $base = $hash_base || git_get_head_hash
($project);
4136 $hash = git_get_hash_by_path
($base, $file_name, "blob")
4137 or die_error
(undef, "Error lookup file");
4139 die_error
(undef, "No file name defined");
4141 } elsif ($hash =~ m/^[0-9a-fA-F]{40}$/) {
4142 # blobs defined by non-textual hash id's can be cached
4147 open my $fd, "-|", git_cmd
(), "cat-file", "blob", $hash
4148 or die_error
(undef, "Couldn't cat $file_name, $hash");
4150 $type ||= blob_mimetype
($fd, $file_name);
4152 # save as filename, even when no $file_name is given
4153 my $save_as = "$hash";
4154 if (defined $file_name) {
4155 $save_as = $file_name;
4156 } elsif ($type =~ m/^text\//) {
4163 -content_disposition
=> 'inline; filename="' . "$save_as" . '"');
4165 binmode STDOUT
, ':raw';
4167 binmode STDOUT
, ':utf8'; # as set at the beginning of gitweb.cgi
4175 if (!defined $hash) {
4176 if (defined $file_name) {
4177 my $base = $hash_base || git_get_head_hash
($project);
4178 $hash = git_get_hash_by_path
($base, $file_name, "blob")
4179 or die_error
(undef, "Error lookup file");
4181 die_error
(undef, "No file name defined");
4183 } elsif ($hash =~ m/^[0-9a-fA-F]{40}$/) {
4184 # blobs defined by non-textual hash id's can be cached
4188 my ($have_blame) = gitweb_check_feature
('blame');
4189 open my $fd, "-|", git_cmd
(), "cat-file", "blob", $hash
4190 or die_error
(undef, "Couldn't cat $file_name, $hash");
4191 my $mimetype = blob_mimetype
($fd, $file_name);
4192 if ($mimetype !~ m!^(?:text/|image/(?:gif|png|jpeg)$)!) {
4194 return git_blob_plain
($mimetype);
4196 # we can have blame only for text/* mimetype
4197 $have_blame &&= ($mimetype =~ m!^text/!);
4199 git_header_html
(undef, $expires);
4200 my $formats_nav = '';
4201 if (defined $hash_base && (my %co = parse_commit
($hash_base))) {
4202 if (defined $file_name) {
4205 $cgi->a({-href
=> href
(action
=>"blame", hash_base
=>$hash_base,
4206 hash
=>$hash, file_name
=>$file_name)},
4211 $cgi->a({-href
=> href
(action
=>"history", hash_base
=>$hash_base,
4212 hash
=>$hash, file_name
=>$file_name)},
4215 $cgi->a({-href
=> href
(action
=>"blob_plain",
4216 hash
=>$hash, file_name
=>$file_name)},
4219 $cgi->a({-href
=> href
(action
=>"blob",
4220 hash_base
=>"HEAD", file_name
=>$file_name)},
4224 $cgi->a({-href
=> href
(action
=>"blob_plain", hash
=>$hash)}, "raw");
4226 git_print_page_nav
('','', $hash_base,$co{'tree'},$hash_base, $formats_nav);
4227 git_print_header_div
('commit', esc_html
($co{'title'}), $hash_base);
4229 print "<div class=\"page_nav\">\n" .
4230 "<br/><br/></div>\n" .
4231 "<div class=\"title\">$hash</div>\n";
4233 git_print_page_path
($file_name, "blob", $hash_base);
4234 print "<div class=\"page_body\">\n";
4235 if ($mimetype =~ m!^text/!) {
4237 while (my $line = <$fd>) {
4240 $line = untabify
($line);
4241 printf "<div class=\"pre\"><a id=\"l%i\" href=\"#l%i\" class=\"linenr\">%4i</a> %s</div>\n",
4242 $nr, $nr, $nr, esc_html
($line, -nbsp
=>1);
4244 } elsif ($mimetype =~ m!^image/!) {
4245 print qq!<img type
="$mimetype"!;
4247 print qq! alt
="$file_name" title
="$file_name"!;
4250 href(action=>"blob_plain
", hash=>$hash,
4251 hash_base=>$hash_base, file_name=>$file_name) .
4255 or print "Reading blob failed.\n";
4261 if (!defined $hash_base) {
4262 $hash_base = "HEAD";
4264 if (!defined $hash) {
4265 if (defined $file_name) {
4266 $hash = git_get_hash_by_path
($hash_base, $file_name, "tree");
4272 open my $fd, "-|", git_cmd
(), "ls-tree", '-z', $hash
4273 or die_error
(undef, "Open git-ls-tree failed");
4274 my @entries = map { chomp; $_ } <$fd>;
4275 close $fd or die_error
(undef, "Reading tree failed");
4278 my $refs = git_get_references
();
4279 my $ref = format_ref_marker
($refs, $hash_base);
4282 my ($have_blame) = gitweb_check_feature
('blame');
4283 if (defined $hash_base && (my %co = parse_commit
($hash_base))) {
4285 if (defined $file_name) {
4287 $cgi->a({-href
=> href
(action
=>"history", hash_base
=>$hash_base,
4288 hash
=>$hash, file_name
=>$file_name)},
4290 $cgi->a({-href
=> href
(action
=>"tree",
4291 hash_base
=>"HEAD", file_name
=>$file_name)},
4294 my $snapshot_links = format_snapshot_links
($hash);
4295 if (defined $snapshot_links) {
4296 # FIXME: Should be available when we have no hash base as well.
4297 push @views_nav, $snapshot_links;
4299 git_print_page_nav
('tree','', $hash_base, undef, undef, join(' | ', @views_nav));
4300 git_print_header_div
('commit', esc_html
($co{'title'}) . $ref, $hash_base);
4303 print "<div class=\"page_nav\">\n";
4304 print "<br/><br/></div>\n";
4305 print "<div class=\"title\">$hash</div>\n";
4307 if (defined $file_name) {
4308 $basedir = $file_name;
4309 if ($basedir ne '' && substr($basedir, -1) ne '/') {
4313 git_print_page_path
($file_name, 'tree', $hash_base);
4314 print "<div class=\"page_body\">\n";
4315 print "<table cellspacing=\"0\">\n";
4317 # '..' (top directory) link if possible
4318 if (defined $hash_base &&
4319 defined $file_name && $file_name =~ m![^/]+$!) {
4321 print "<tr class=\"dark\">\n";
4323 print "<tr class=\"light\">\n";
4327 my $up = $file_name;
4328 $up =~ s!/?[^/]+$!!;
4329 undef $up unless $up;
4330 # based on git_print_tree_entry
4331 print '<td class="mode">' . mode_str
('040000') . "</td>\n";
4332 print '<td class="list">';
4333 print $cgi->a({-href
=> href
(action
=>"tree", hash_base
=>$hash_base,
4337 print "<td class=\"link\"></td>\n";
4341 foreach my $line (@entries) {
4342 my %t = parse_ls_tree_line
($line, -z
=> 1);
4345 print "<tr class=\"dark\">\n";
4347 print "<tr class=\"light\">\n";
4351 git_print_tree_entry
(\
%t, $basedir, $hash_base, $have_blame);
4355 print "</table>\n" .
4361 my @supported_fmts = gitweb_check_feature
('snapshot');
4362 @supported_fmts = filter_snapshot_fmts
(@supported_fmts);
4364 my $format = $cgi->param('sf');
4365 if (!@supported_fmts) {
4366 die_error
('403 Permission denied', "Permission denied");
4368 # default to first supported snapshot format
4369 $format ||= $supported_fmts[0];
4370 if ($format !~ m/^[a-z0-9]+$/) {
4371 die_error
(undef, "Invalid snapshot format parameter");
4372 } elsif (!exists($known_snapshot_formats{$format})) {
4373 die_error
(undef, "Unknown snapshot format");
4374 } elsif (!grep($_ eq $format, @supported_fmts)) {
4375 die_error
(undef, "Unsupported snapshot format");
4378 if (!defined $hash) {
4379 $hash = git_get_head_hash
($project);
4382 my $git_command = git_cmd_str
();
4383 my $name = $project;
4384 $name =~ s
,([^/])/*\
.git
$,$1,;
4385 $name = basename
($name);
4386 my $filename = to_utf8
($name);
4387 $name =~ s/\047/\047\\\047\047/g;
4389 $filename .= "-$hash$known_snapshot_formats{$format}{'suffix'}";
4390 $cmd = "$git_command archive " .
4391 "--format=$known_snapshot_formats{$format}{'format'} " .
4392 "--prefix=\'$name\'/ $hash";
4393 if (exists $known_snapshot_formats{$format}{'compressor'}) {
4394 $cmd .= ' | ' . join ' ', @
{$known_snapshot_formats{$format}{'compressor'}};
4398 -type
=> $known_snapshot_formats{$format}{'type'},
4399 -content_disposition
=> 'inline; filename="' . "$filename" . '"',
4400 -status
=> '200 OK');
4402 open my $fd, "-|", $cmd
4403 or die_error
(undef, "Execute git-archive failed");
4404 binmode STDOUT
, ':raw';
4406 binmode STDOUT
, ':utf8'; # as set at the beginning of gitweb.cgi
4411 my $head = git_get_head_hash
($project);
4412 if (!defined $hash) {
4415 if (!defined $page) {
4418 my $refs = git_get_references
();
4420 my @commitlist = parse_commits
($hash, 101, (100 * $page));
4422 my $paging_nav = format_paging_nav
('log', $hash, $head, $page, (100 * ($page+1)));
4425 git_print_page_nav
('log','', $hash,undef,undef, $paging_nav);
4428 my %co = parse_commit
($hash);
4430 git_print_header_div
('summary', $project);
4431 print "<div class=\"page_body\"> Last change $co{'age_string'}.<br/><br/></div>\n";
4433 my $to = ($#commitlist >= 99) ?
(99) : ($#commitlist);
4434 for (my $i = 0; $i <= $to; $i++) {
4435 my %co = %{$commitlist[$i]};
4437 my $commit = $co{'id'};
4438 my $ref = format_ref_marker
($refs, $commit);
4439 my %ad = parse_date
($co{'author_epoch'});
4440 git_print_header_div
('commit',
4441 "<span class=\"age\">$co{'age_string'}</span>" .
4442 esc_html
($co{'title'}) . $ref,
4444 print "<div class=\"title_text\">\n" .
4445 "<div class=\"log_link\">\n" .
4446 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$commit)}, "commit") .
4448 $cgi->a({-href
=> href
(action
=>"commitdiff", hash
=>$commit)}, "commitdiff") .
4450 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$commit, hash_base
=>$commit)}, "tree") .
4453 "<i>" . esc_html
($co{'author_name'}) . " [$ad{'rfc2822'}]</i><br/>\n" .
4456 print "<div class=\"log_body\">\n";
4457 git_print_log
($co{'comment'}, -final_empty_line
=> 1);
4460 if ($#commitlist >= 100) {
4461 print "<div class=\"page_nav\">\n";
4462 print $cgi->a({-href
=> href
(action
=>"log", hash
=>$hash, page
=>$page+1),
4463 -accesskey
=> "n", -title
=> "Alt-n"}, "next");
4470 $hash ||= $hash_base || "HEAD";
4471 my %co = parse_commit
($hash);
4473 die_error
(undef, "Unknown commit object");
4475 my %ad = parse_date
($co{'author_epoch'}, $co{'author_tz'});
4476 my %cd = parse_date
($co{'committer_epoch'}, $co{'committer_tz'});
4478 my $parent = $co{'parent'};
4479 my $parents = $co{'parents'}; # listref
4481 # we need to prepare $formats_nav before any parameter munging
4483 if (!defined $parent) {
4485 $formats_nav .= '(initial)';
4486 } elsif (@
$parents == 1) {
4487 # single parent commit
4490 $cgi->a({-href
=> href
(action
=>"commit",
4492 esc_html
(substr($parent, 0, 7))) .
4499 $cgi->a({-href
=> href
(action
=>"commit",
4501 esc_html
(substr($_, 0, 7)));
4506 if (!defined $parent) {
4510 open my $fd, "-|", git_cmd
(), "diff-tree", '-r', "--no-commit-id",
4512 (@
$parents <= 1 ?
$parent : '-c'),
4514 or die_error
(undef, "Open git-diff-tree failed");
4515 @difftree = map { chomp; $_ } <$fd>;
4516 close $fd or die_error
(undef, "Reading git-diff-tree failed");
4518 # non-textual hash id's can be cached
4520 if ($hash =~ m/^[0-9a-fA-F]{40}$/) {
4523 my $refs = git_get_references
();
4524 my $ref = format_ref_marker
($refs, $co{'id'});
4526 git_header_html
(undef, $expires);
4527 git_print_page_nav
('commit', '',
4528 $hash, $co{'tree'}, $hash,
4531 if (defined $co{'parent'}) {
4532 git_print_header_div
('commitdiff', esc_html
($co{'title'}) . $ref, $hash);
4534 git_print_header_div
('tree', esc_html
($co{'title'}) . $ref, $co{'tree'}, $hash);
4536 print "<div class=\"title_text\">\n" .
4537 "<table cellspacing=\"0\">\n";
4538 print "<tr><td>author</td><td>" . esc_html
($co{'author'}) . "</td></tr>\n".
4540 "<td></td><td> $ad{'rfc2822'}";
4541 if ($ad{'hour_local'} < 6) {
4542 printf(" (<span class=\"atnight\">%02d:%02d</span> %s)",
4543 $ad{'hour_local'}, $ad{'minute_local'}, $ad{'tz_local'});
4545 printf(" (%02d:%02d %s)",
4546 $ad{'hour_local'}, $ad{'minute_local'}, $ad{'tz_local'});
4550 print "<tr><td>committer</td><td>" . esc_html
($co{'committer'}) . "</td></tr>\n";
4551 print "<tr><td></td><td> $cd{'rfc2822'}" .
4552 sprintf(" (%02d:%02d %s)", $cd{'hour_local'}, $cd{'minute_local'}, $cd{'tz_local'}) .
4554 print "<tr><td>commit</td><td class=\"sha1\">$co{'id'}</td></tr>\n";
4557 "<td class=\"sha1\">" .
4558 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$co{'tree'}, hash_base
=>$hash),
4559 class => "list"}, $co{'tree'}) .
4561 "<td class=\"link\">" .
4562 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$co{'tree'}, hash_base
=>$hash)},
4564 my $snapshot_links = format_snapshot_links
($hash);
4565 if (defined $snapshot_links) {
4566 print " | " . $snapshot_links;
4571 foreach my $par (@
$parents) {
4574 "<td class=\"sha1\">" .
4575 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$par),
4576 class => "list"}, $par) .
4578 "<td class=\"link\">" .
4579 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$par)}, "commit") .
4581 $cgi->a({-href
=> href
(action
=>"commitdiff", hash
=>$hash, hash_parent
=>$par)}, "diff") .
4588 print "<div class=\"page_body\">\n";
4589 git_print_log
($co{'comment'});
4592 git_difftree_body
(\
@difftree, $hash, @
$parents);
4598 # object is defined by:
4599 # - hash or hash_base alone
4600 # - hash_base and file_name
4603 # - hash or hash_base alone
4604 if ($hash || ($hash_base && !defined $file_name)) {
4605 my $object_id = $hash || $hash_base;
4607 my $git_command = git_cmd_str
();
4608 open my $fd, "-|", "$git_command cat-file -t $object_id 2>/dev/null"
4609 or die_error
('404 Not Found', "Object does not exist");
4613 or die_error
('404 Not Found', "Object does not exist");
4615 # - hash_base and file_name
4616 } elsif ($hash_base && defined $file_name) {
4617 $file_name =~ s
,/+$,,;
4619 system(git_cmd
(), "cat-file", '-e', $hash_base) == 0
4620 or die_error
('404 Not Found', "Base object does not exist");
4622 # here errors should not hapen
4623 open my $fd, "-|", git_cmd
(), "ls-tree", $hash_base, "--", $file_name
4624 or die_error
(undef, "Open git-ls-tree failed");
4628 #'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'
4629 unless ($line && $line =~ m/^([0-9]+) (.+) ([0-9a-fA-F]{40})\t/) {
4630 die_error
('404 Not Found', "File or directory for given base does not exist");
4635 die_error
('404 Not Found', "Not enough information to find object");
4638 print $cgi->redirect(-uri
=> href
(action
=>$type, -full
=>1,
4639 hash
=>$hash, hash_base
=>$hash_base,
4640 file_name
=>$file_name),
4641 -status
=> '302 Found');
4645 my $format = shift || 'html';
4652 # preparing $fd and %diffinfo for git_patchset_body
4654 if (defined $hash_base && defined $hash_parent_base) {
4655 if (defined $file_name) {
4657 open $fd, "-|", git_cmd
(), "diff-tree", '-r', @diff_opts,
4658 $hash_parent_base, $hash_base,
4659 "--", (defined $file_parent ?
$file_parent : ()), $file_name
4660 or die_error
(undef, "Open git-diff-tree failed");
4661 @difftree = map { chomp; $_ } <$fd>;
4663 or die_error
(undef, "Reading git-diff-tree failed");
4665 or die_error
('404 Not Found', "Blob diff not found");
4667 } elsif (defined $hash &&
4668 $hash =~ /[0-9a-fA-F]{40}/) {
4669 # try to find filename from $hash
4671 # read filtered raw output
4672 open $fd, "-|", git_cmd
(), "diff-tree", '-r', @diff_opts,
4673 $hash_parent_base, $hash_base, "--"
4674 or die_error
(undef, "Open git-diff-tree failed");
4676 # ':100644 100644 03b21826... 3b93d5e7... M ls-files.c'
4678 grep { /^:[0-7]{6} [0-7]{6} [0-9a-fA-F]{40} $hash/ }
4679 map { chomp; $_ } <$fd>;
4681 or die_error
(undef, "Reading git-diff-tree failed");
4683 or die_error
('404 Not Found', "Blob diff not found");
4686 die_error
('404 Not Found', "Missing one of the blob diff parameters");
4689 if (@difftree > 1) {
4690 die_error
('404 Not Found', "Ambiguous blob diff specification");
4693 %diffinfo = parse_difftree_raw_line
($difftree[0]);
4694 $file_parent ||= $diffinfo{'from_file'} || $file_name || $diffinfo{'file'};
4695 $file_name ||= $diffinfo{'to_file'} || $diffinfo{'file'};
4697 $hash_parent ||= $diffinfo{'from_id'};
4698 $hash ||= $diffinfo{'to_id'};
4700 # non-textual hash id's can be cached
4701 if ($hash_base =~ m/^[0-9a-fA-F]{40}$/ &&
4702 $hash_parent_base =~ m/^[0-9a-fA-F]{40}$/) {
4707 open $fd, "-|", git_cmd
(), "diff-tree", '-r', @diff_opts,
4708 '-p', ($format eq 'html' ?
"--full-index" : ()),
4709 $hash_parent_base, $hash_base,
4710 "--", (defined $file_parent ?
$file_parent : ()), $file_name
4711 or die_error
(undef, "Open git-diff-tree failed");
4714 # old/legacy style URI
4715 if (!%diffinfo && # if new style URI failed
4716 defined $hash && defined $hash_parent) {
4717 # fake git-diff-tree raw output
4718 $diffinfo{'from_mode'} = $diffinfo{'to_mode'} = "blob";
4719 $diffinfo{'from_id'} = $hash_parent;
4720 $diffinfo{'to_id'} = $hash;
4721 if (defined $file_name) {
4722 if (defined $file_parent) {
4723 $diffinfo{'status'} = '2';
4724 $diffinfo{'from_file'} = $file_parent;
4725 $diffinfo{'to_file'} = $file_name;
4726 } else { # assume not renamed
4727 $diffinfo{'status'} = '1';
4728 $diffinfo{'from_file'} = $file_name;
4729 $diffinfo{'to_file'} = $file_name;
4731 } else { # no filename given
4732 $diffinfo{'status'} = '2';
4733 $diffinfo{'from_file'} = $hash_parent;
4734 $diffinfo{'to_file'} = $hash;
4737 # non-textual hash id's can be cached
4738 if ($hash =~ m/^[0-9a-fA-F]{40}$/ &&
4739 $hash_parent =~ m/^[0-9a-fA-F]{40}$/) {
4744 open $fd, "-|", git_cmd
(), "diff", @diff_opts,
4745 '-p', ($format eq 'html' ?
"--full-index" : ()),
4746 $hash_parent, $hash, "--"
4747 or die_error
(undef, "Open git-diff failed");
4749 die_error
('404 Not Found', "Missing one of the blob diff parameters")
4754 if ($format eq 'html') {
4756 $cgi->a({-href
=> href
(action
=>"blobdiff_plain",
4757 hash
=>$hash, hash_parent
=>$hash_parent,
4758 hash_base
=>$hash_base, hash_parent_base
=>$hash_parent_base,
4759 file_name
=>$file_name, file_parent
=>$file_parent)},
4761 git_header_html
(undef, $expires);
4762 if (defined $hash_base && (my %co = parse_commit
($hash_base))) {
4763 git_print_page_nav
('','', $hash_base,$co{'tree'},$hash_base, $formats_nav);
4764 git_print_header_div
('commit', esc_html
($co{'title'}), $hash_base);
4766 print "<div class=\"page_nav\"><br/>$formats_nav<br/></div>\n";
4767 print "<div class=\"title\">$hash vs $hash_parent</div>\n";
4769 if (defined $file_name) {
4770 git_print_page_path
($file_name, "blob", $hash_base);
4772 print "<div class=\"page_path\"></div>\n";
4775 } elsif ($format eq 'plain') {
4777 -type
=> 'text/plain',
4778 -charset
=> 'utf-8',
4779 -expires
=> $expires,
4780 -content_disposition
=> 'inline; filename="' . "$file_name" . '.patch"');
4782 print "X-Git-Url: " . $cgi->self_url() . "\n\n";
4785 die_error
(undef, "Unknown blobdiff format");
4789 if ($format eq 'html') {
4790 print "<div class=\"page_body\">\n";
4792 git_patchset_body
($fd, [ \
%diffinfo ], $hash_base, $hash_parent_base);
4795 print "</div>\n"; # class="page_body"
4799 while (my $line = <$fd>) {
4800 $line =~ s!a/($hash|$hash_parent)!'a/'.esc_path($diffinfo{'from_file'})!eg;
4801 $line =~ s!b/($hash|$hash_parent)!'b/'.esc_path($diffinfo{'to_file'})!eg;
4805 last if $line =~ m!^\+\+\+!;
4813 sub git_blobdiff_plain
{
4814 git_blobdiff
('plain');
4817 sub git_commitdiff
{
4818 my $format = shift || 'html';
4819 $hash ||= $hash_base || "HEAD";
4820 my %co = parse_commit
($hash);
4822 die_error
(undef, "Unknown commit object");
4825 # choose format for commitdiff for merge
4826 if (! defined $hash_parent && @
{$co{'parents'}} > 1) {
4827 $hash_parent = '--cc';
4829 # we need to prepare $formats_nav before almost any parameter munging
4831 if ($format eq 'html') {
4833 $cgi->a({-href
=> href
(action
=>"commitdiff_plain",
4834 hash
=>$hash, hash_parent
=>$hash_parent)},
4837 if (defined $hash_parent &&
4838 $hash_parent ne '-c' && $hash_parent ne '--cc') {
4839 # commitdiff with two commits given
4840 my $hash_parent_short = $hash_parent;
4841 if ($hash_parent =~ m/^[0-9a-fA-F]{40}$/) {
4842 $hash_parent_short = substr($hash_parent, 0, 7);
4846 for (my $i = 0; $i < @
{$co{'parents'}}; $i++) {
4847 if ($co{'parents'}[$i] eq $hash_parent) {
4848 $formats_nav .= ' parent ' . ($i+1);
4852 $formats_nav .= ': ' .
4853 $cgi->a({-href
=> href
(action
=>"commitdiff",
4854 hash
=>$hash_parent)},
4855 esc_html
($hash_parent_short)) .
4857 } elsif (!$co{'parent'}) {
4859 $formats_nav .= ' (initial)';
4860 } elsif (scalar @
{$co{'parents'}} == 1) {
4861 # single parent commit
4864 $cgi->a({-href
=> href
(action
=>"commitdiff",
4865 hash
=>$co{'parent'})},
4866 esc_html
(substr($co{'parent'}, 0, 7))) .
4870 if ($hash_parent eq '--cc') {
4871 $formats_nav .= ' | ' .
4872 $cgi->a({-href
=> href
(action
=>"commitdiff",
4873 hash
=>$hash, hash_parent
=>'-c')},
4875 } else { # $hash_parent eq '-c'
4876 $formats_nav .= ' | ' .
4877 $cgi->a({-href
=> href
(action
=>"commitdiff",
4878 hash
=>$hash, hash_parent
=>'--cc')},
4884 $cgi->a({-href
=> href
(action
=>"commitdiff",
4886 esc_html
(substr($_, 0, 7)));
4887 } @
{$co{'parents'}} ) .
4892 my $hash_parent_param = $hash_parent;
4893 if (!defined $hash_parent_param) {
4894 # --cc for multiple parents, --root for parentless
4895 $hash_parent_param =
4896 @
{$co{'parents'}} > 1 ?
'--cc' : $co{'parent'} || '--root';
4902 if ($format eq 'html') {
4903 open $fd, "-|", git_cmd
(), "diff-tree", '-r', @diff_opts,
4904 "--no-commit-id", "--patch-with-raw", "--full-index",
4905 $hash_parent_param, $hash, "--"
4906 or die_error
(undef, "Open git-diff-tree failed");
4908 while (my $line = <$fd>) {
4910 # empty line ends raw part of diff-tree output
4912 push @difftree, scalar parse_difftree_raw_line
($line);
4915 } elsif ($format eq 'plain') {
4916 open $fd, "-|", git_cmd
(), "diff-tree", '-r', @diff_opts,
4917 '-p', $hash_parent_param, $hash, "--"
4918 or die_error
(undef, "Open git-diff-tree failed");
4921 die_error
(undef, "Unknown commitdiff format");
4924 # non-textual hash id's can be cached
4926 if ($hash =~ m/^[0-9a-fA-F]{40}$/) {
4930 # write commit message
4931 if ($format eq 'html') {
4932 my $refs = git_get_references
();
4933 my $ref = format_ref_marker
($refs, $co{'id'});
4935 git_header_html
(undef, $expires);
4936 git_print_page_nav
('commitdiff','', $hash,$co{'tree'},$hash, $formats_nav);
4937 git_print_header_div
('commit', esc_html
($co{'title'}) . $ref, $hash);
4938 git_print_authorship
(\
%co);
4939 print "<div class=\"page_body\">\n";
4940 if (@
{$co{'comment'}} > 1) {
4941 print "<div class=\"log\">\n";
4942 git_print_log
($co{'comment'}, -final_empty_line
=> 1, -remove_title
=> 1);
4943 print "</div>\n"; # class="log"
4946 } elsif ($format eq 'plain') {
4947 my $refs = git_get_references
("tags");
4948 my $tagname = git_get_rev_name_tags
($hash);
4949 my $filename = basename
($project) . "-$hash.patch";
4952 -type
=> 'text/plain',
4953 -charset
=> 'utf-8',
4954 -expires
=> $expires,
4955 -content_disposition
=> 'inline; filename="' . "$filename" . '"');
4956 my %ad = parse_date
($co{'author_epoch'}, $co{'author_tz'});
4959 Date: $ad{'rfc2822'} ($ad{'tz_local'})
4960 Subject: $co{'title'}
4962 print "X-Git-Tag: $tagname\n" if $tagname;
4963 print "X-Git-Url: " . $cgi->self_url() . "\n\n";
4965 foreach my $line (@
{$co{'comment'}}) {
4972 if ($format eq 'html') {
4973 my $use_parents = !defined $hash_parent ||
4974 $hash_parent eq '-c' || $hash_parent eq '--cc';
4975 git_difftree_body
(\
@difftree, $hash,
4976 $use_parents ? @
{$co{'parents'}} : $hash_parent);
4979 git_patchset_body
($fd, \
@difftree, $hash,
4980 $use_parents ? @
{$co{'parents'}} : $hash_parent);
4982 print "</div>\n"; # class="page_body"
4985 } elsif ($format eq 'plain') {
4989 or print "Reading git-diff-tree failed\n";
4993 sub git_commitdiff_plain
{
4994 git_commitdiff
('plain');
4998 if (!defined $hash_base) {
4999 $hash_base = git_get_head_hash
($project);
5001 if (!defined $page) {
5005 my %co = parse_commit
($hash_base);
5007 die_error
(undef, "Unknown commit object");
5010 my $refs = git_get_references
();
5011 my $limit = sprintf("--max-count=%i", (100 * ($page+1)));
5013 if (!defined $hash && defined $file_name) {
5014 $hash = git_get_hash_by_path
($hash_base, $file_name);
5016 if (defined $hash) {
5017 $ftype = git_get_type
($hash);
5020 my @commitlist = parse_commits
($hash_base, 101, (100 * $page), "--full-history", $file_name);
5022 my $paging_nav = '';
5025 $cgi->a({-href
=> href
(action
=>"history", hash
=>$hash, hash_base
=>$hash_base,
5026 file_name
=>$file_name)},
5028 $paging_nav .= " ⋅ " .
5029 $cgi->a({-href
=> href
(action
=>"history", hash
=>$hash, hash_base
=>$hash_base,
5030 file_name
=>$file_name, page
=>$page-1),
5031 -accesskey
=> "p", -title
=> "Alt-p"}, "prev");
5033 $paging_nav .= "first";
5034 $paging_nav .= " ⋅ prev";
5036 if ($#commitlist >= 100) {
5037 $paging_nav .= " ⋅ " .
5038 $cgi->a({-href
=> href
(action
=>"history", hash
=>$hash, hash_base
=>$hash_base,
5039 file_name
=>$file_name, page
=>$page+1),
5040 -accesskey
=> "n", -title
=> "Alt-n"}, "next");
5042 $paging_nav .= " ⋅ next";
5045 if ($#commitlist >= 100) {
5047 $cgi->a({-href
=> href
(action
=>"history", hash
=>$hash, hash_base
=>$hash_base,
5048 file_name
=>$file_name, page
=>$page+1),
5049 -accesskey
=> "n", -title
=> "Alt-n"}, "next");
5053 git_print_page_nav
('history','', $hash_base,$co{'tree'},$hash_base, $paging_nav);
5054 git_print_header_div
('commit', esc_html
($co{'title'}), $hash_base);
5055 git_print_page_path
($file_name, $ftype, $hash_base);
5057 git_history_body
(\
@commitlist, 0, 99,
5058 $refs, $hash_base, $ftype, $next_link);
5064 my ($have_search) = gitweb_check_feature
('search');
5065 if (!$have_search) {
5066 die_error
('403 Permission denied', "Permission denied");
5068 if (!defined $searchtext) {
5069 die_error
(undef, "Text field empty");
5071 if (!defined $hash) {
5072 $hash = git_get_head_hash
($project);
5074 my %co = parse_commit
($hash);
5076 die_error
(undef, "Unknown commit object");
5078 if (!defined $page) {
5082 $searchtype ||= 'commit';
5083 if ($searchtype eq 'pickaxe') {
5084 # pickaxe may take all resources of your box and run for several minutes
5085 # with every query - so decide by yourself how public you make this feature
5086 my ($have_pickaxe) = gitweb_check_feature
('pickaxe');
5087 if (!$have_pickaxe) {
5088 die_error
('403 Permission denied', "Permission denied");
5091 if ($searchtype eq 'grep') {
5092 my ($have_grep) = gitweb_check_feature
('grep');
5094 die_error
('403 Permission denied', "Permission denied");
5100 if ($searchtype eq 'commit' or $searchtype eq 'author' or $searchtype eq 'committer') {
5102 if ($searchtype eq 'commit') {
5103 $greptype = "--grep=";
5104 } elsif ($searchtype eq 'author') {
5105 $greptype = "--author=";
5106 } elsif ($searchtype eq 'committer') {
5107 $greptype = "--committer=";
5109 $greptype .= $search_regexp;
5110 my @commitlist = parse_commits
($hash, 101, (100 * $page), $greptype);
5112 my $paging_nav = '';
5115 $cgi->a({-href
=> href
(action
=>"search", hash
=>$hash,
5116 searchtext
=>$searchtext, searchtype
=>$searchtype)},
5118 $paging_nav .= " ⋅ " .
5119 $cgi->a({-href
=> href
(action
=>"search", hash
=>$hash,
5120 searchtext
=>$searchtext, searchtype
=>$searchtype,
5122 -accesskey
=> "p", -title
=> "Alt-p"}, "prev");
5124 $paging_nav .= "first";
5125 $paging_nav .= " ⋅ prev";
5127 if ($#commitlist >= 100) {
5128 $paging_nav .= " ⋅ " .
5129 $cgi->a({-href
=> href
(action
=>"search", hash
=>$hash,
5130 searchtext
=>$searchtext, searchtype
=>$searchtype,
5132 -accesskey
=> "n", -title
=> "Alt-n"}, "next");
5134 $paging_nav .= " ⋅ next";
5137 if ($#commitlist >= 100) {
5139 $cgi->a({-href
=> href
(action
=>"search", hash
=>$hash,
5140 searchtext
=>$searchtext, searchtype
=>$searchtype,
5142 -accesskey
=> "n", -title
=> "Alt-n"}, "next");
5145 git_print_page_nav
('','', $hash,$co{'tree'},$hash, $paging_nav);
5146 git_print_header_div
('commit', esc_html
($co{'title'}), $hash);
5147 git_search_grep_body
(\
@commitlist, 0, 99, $next_link);
5150 if ($searchtype eq 'pickaxe') {
5151 git_print_page_nav
('','', $hash,$co{'tree'},$hash);
5152 git_print_header_div
('commit', esc_html
($co{'title'}), $hash);
5154 print "<table cellspacing=\"0\">\n";
5157 my $git_command = git_cmd_str
();
5158 my $searchqtext = $searchtext;
5159 $searchqtext =~ s/'/'\\''/;
5160 open my $fd, "-|", "$git_command rev-list $hash | " .
5161 "$git_command diff-tree -r --stdin -S\'$searchqtext\'";
5164 while (my $line = <$fd>) {
5165 if (%co && $line =~ m/^:([0-7]{6}) ([0-7]{6}) ([0-9a-fA-F]{40}) ([0-9a-fA-F]{40}) (.)\t(.*)$/) {
5168 $set{'from_id'} = $3;
5170 $set{'id'} = $set{'to_id'};
5171 if ($set{'id'} =~ m/0{40}/) {
5172 $set{'id'} = $set{'from_id'};
5174 if ($set{'id'} =~ m/0{40}/) {
5178 } elsif ($line =~ m/^([0-9a-fA-F]{40})$/){
5181 print "<tr class=\"dark\">\n";
5183 print "<tr class=\"light\">\n";
5186 print "<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n" .
5187 "<td><i>" . esc_html
(chop_str
($co{'author_name'}, 15, 5)) . "</i></td>\n" .
5189 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$co{'id'}),
5190 -class => "list subject"},
5191 esc_html
(chop_str
($co{'title'}, 50)) . "<br/>");
5192 while (my $setref = shift @files) {
5194 print $cgi->a({-href
=> href
(action
=>"blob", hash_base
=>$co{'id'},
5195 hash
=>$set{'id'}, file_name
=>$set{'file'}),
5197 "<span class=\"match\">" . esc_path
($set{'file'}) . "</span>") .
5201 "<td class=\"link\">" .
5202 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$co{'id'})}, "commit") .
5204 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$co{'tree'}, hash_base
=>$co{'id'})}, "tree");
5208 %co = parse_commit
($1);
5216 if ($searchtype eq 'grep') {
5217 git_print_page_nav
('','', $hash,$co{'tree'},$hash);
5218 git_print_header_div
('commit', esc_html
($co{'title'}), $hash);
5220 print "<table cellspacing=\"0\">\n";
5224 open my $fd, "-|", git_cmd
(), 'grep', '-n', '-i', '-E', $searchtext, $co{'tree'};
5226 while (my $line = <$fd>) {
5228 my ($file, $lno, $ltext, $binary);
5229 last if ($matches++ > 1000);
5230 if ($line =~ /^Binary file (.+) matches$/) {
5234 (undef, $file, $lno, $ltext) = split(/:/, $line, 4);
5236 if ($file ne $lastfile) {
5237 $lastfile and print "</td></tr>\n";
5239 print "<tr class=\"dark\">\n";
5241 print "<tr class=\"light\">\n";
5243 print "<td class=\"list\">".
5244 $cgi->a({-href
=> href
(action
=>"blob", hash
=>$co{'hash'},
5245 file_name
=>"$file"),
5246 -class => "list"}, esc_path
($file));
5247 print "</td><td>\n";
5251 print "<div class=\"binary\">Binary file</div>\n";
5253 $ltext = untabify
($ltext);
5254 if ($ltext =~ m/^(.*)($searchtext)(.*)$/i) {
5255 $ltext = esc_html
($1, -nbsp
=>1);
5256 $ltext .= '<span class="match">';
5257 $ltext .= esc_html
($2, -nbsp
=>1);
5258 $ltext .= '</span>';
5259 $ltext .= esc_html
($3, -nbsp
=>1);
5261 $ltext = esc_html
($ltext, -nbsp
=>1);
5263 print "<div class=\"pre\">" .
5264 $cgi->a({-href
=> href
(action
=>"blob", hash
=>$co{'hash'},
5265 file_name
=>"$file").'#l'.$lno,
5266 -class => "linenr"}, sprintf('%4i', $lno))
5267 . ' ' . $ltext . "</div>\n";
5271 print "</td></tr>\n";
5272 if ($matches > 1000) {
5273 print "<div class=\"diff nodifferences\">Too many matches, listing trimmed</div>\n";
5276 print "<div class=\"diff nodifferences\">No matches found</div>\n";
5285 sub git_search_help
{
5287 git_print_page_nav
('','', $hash,$hash,$hash);
5290 <dt><b>commit</b></dt>
5291 <dd>The commit messages and authorship information will be scanned for the given string.</dd>
5293 my ($have_grep) = gitweb_check_feature
('grep');
5296 <dt><b>grep</b></dt>
5297 <dd>All files in the currently selected tree (HEAD unless you are explicitly browsing
5298 a different one) are searched for the given
5299 <a href="http://en.wikipedia.org/wiki/Regular_expression">regular expression</a>
5300 (POSIX extended) and the matches are listed. On large
5301 trees, this search can take a while and put some strain on the server, so please use it with
5302 some consideration.</dd>
5306 <dt><b>author</b></dt>
5307 <dd>Name and e-mail of the change author and date of birth of the patch will be scanned for the given string.</dd>
5308 <dt><b>committer</b></dt>
5309 <dd>Name and e-mail of the committer and date of commit will be scanned for the given string.</dd>
5311 my ($have_pickaxe) = gitweb_check_feature
('pickaxe');
5312 if ($have_pickaxe) {
5314 <dt><b>pickaxe</b></dt>
5315 <dd>All commits that caused the string to appear or disappear from any file (changes that
5316 added, removed or "modified" the string) will be listed. This search can take a while and
5317 takes a lot of strain on the server, so please use it wisely.</dd>
5325 my $head = git_get_head_hash
($project);
5326 if (!defined $hash) {
5329 if (!defined $page) {
5332 my $refs = git_get_references
();
5334 my @commitlist = parse_commits
($hash, 101, (100 * $page));
5336 my $paging_nav = format_paging_nav
('shortlog', $hash, $head, $page, (100 * ($page+1)));
5338 if ($#commitlist >= 100) {
5340 $cgi->a({-href
=> href
(action
=>"shortlog", hash
=>$hash, page
=>$page+1),
5341 -accesskey
=> "n", -title
=> "Alt-n"}, "next");
5345 git_print_page_nav
('shortlog','', $hash,$hash,$hash, $paging_nav);
5346 git_print_header_div
('summary', $project);
5348 git_shortlog_body
(\
@commitlist, 0, 99, $refs, $next_link);
5353 ## ......................................................................
5354 ## feeds (RSS, Atom; OPML)
5357 my $format = shift || 'atom';
5358 my ($have_blame) = gitweb_check_feature
('blame');
5360 # Atom: http://www.atomenabled.org/developers/syndication/
5361 # RSS: http://www.notestips.com/80256B3A007F2692/1/NAMO5P9UPQ
5362 if ($format ne 'rss' && $format ne 'atom') {
5363 die_error
(undef, "Unknown web feed format");
5366 # log/feed of current (HEAD) branch, log of given branch, history of file/directory
5367 my $head = $hash || 'HEAD';
5368 my @commitlist = parse_commits
($head, 150);
5372 my $content_type = "application/$format+xml";
5373 if (defined $cgi->http('HTTP_ACCEPT') &&
5374 $cgi->Accept('text/xml') > $cgi->Accept($content_type)) {
5375 # browser (feed reader) prefers text/xml
5376 $content_type = 'text/xml';
5378 if (defined($commitlist[0])) {
5379 %latest_commit = %{$commitlist[0]};
5380 %latest_date = parse_date
($latest_commit{'author_epoch'});
5382 -type
=> $content_type,
5383 -charset
=> 'utf-8',
5384 -last_modified
=> $latest_date{'rfc2822'});
5387 -type
=> $content_type,
5388 -charset
=> 'utf-8');
5391 # Optimization: skip generating the body if client asks only
5392 # for Last-Modified date.
5393 return if ($cgi->request_method() eq 'HEAD');
5396 my $title = "$site_name - $project/$action";
5397 my $feed_type = 'log';
5398 if (defined $hash) {
5399 $title .= " - '$hash'";
5400 $feed_type = 'branch log';
5401 if (defined $file_name) {
5402 $title .= " :: $file_name";
5403 $feed_type = 'history';
5405 } elsif (defined $file_name) {
5406 $title .= " - $file_name";
5407 $feed_type = 'history';
5409 $title .= " $feed_type";
5410 my $descr = git_get_project_description
($project);
5411 if (defined $descr) {
5412 $descr = esc_html
($descr);
5414 $descr = "$project " .
5415 ($format eq 'rss' ?
'RSS' : 'Atom') .
5418 my $owner = git_get_project_owner
($project);
5419 $owner = esc_html
($owner);
5423 if (defined $file_name) {
5424 $alt_url = href
(-full
=>1, action
=>"history", hash
=>$hash, file_name
=>$file_name);
5425 } elsif (defined $hash) {
5426 $alt_url = href
(-full
=>1, action
=>"log", hash
=>$hash);
5428 $alt_url = href
(-full
=>1, action
=>"summary");
5430 print qq!<?xml version
="1.0" encoding
="utf-8"?
>\n!;
5431 if ($format eq 'rss') {
5433 <rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/">
5436 print "<title>$title</title>\n" .
5437 "<link>$alt_url</link>\n" .
5438 "<description>$descr</description>\n" .
5439 "<language>en</language>\n";
5440 } elsif ($format eq 'atom') {
5442 <feed xmlns="http://www.w3.org/2005/Atom">
5444 print "<title>$title</title>\n" .
5445 "<subtitle>$descr</subtitle>\n" .
5446 '<link rel="alternate" type="text/html" href="' .
5447 $alt_url . '" />' . "\n" .
5448 '<link rel="self" type="' . $content_type . '" href="' .
5449 $cgi->self_url() . '" />' . "\n" .
5450 "<id>" . href
(-full
=>1) . "</id>\n" .
5451 # use project owner for feed author
5452 "<author><name>$owner</name></author>\n";
5453 if (defined $favicon) {
5454 print "<icon>" . esc_url
($favicon) . "</icon>\n";
5456 if (defined $logo_url) {
5457 # not twice as wide as tall: 72 x 27 pixels
5458 print "<logo>" . esc_url
($logo) . "</logo>\n";
5460 if (! %latest_date) {
5461 # dummy date to keep the feed valid until commits trickle in:
5462 print "<updated>1970-01-01T00:00:00Z</updated>\n";
5464 print "<updated>$latest_date{'iso-8601'}</updated>\n";
5469 for (my $i = 0; $i <= $#commitlist; $i++) {
5470 my %co = %{$commitlist[$i]};
5471 my $commit = $co{'id'};
5472 # we read 150, we always show 30 and the ones more recent than 48 hours
5473 if (($i >= 20) && ((time - $co{'author_epoch'}) > 48*60*60)) {
5476 my %cd = parse_date
($co{'author_epoch'});
5478 # get list of changed files
5479 open my $fd, "-|", git_cmd
(), "diff-tree", '-r', @diff_opts,
5480 $co{'parent'} || "--root",
5481 $co{'id'}, "--", (defined $file_name ?
$file_name : ())
5483 my @difftree = map { chomp; $_ } <$fd>;
5487 # print element (entry, item)
5488 my $co_url = href
(-full
=>1, action
=>"commit", hash
=>$commit);
5489 if ($format eq 'rss') {
5491 "<title>" . esc_html
($co{'title'}) . "</title>\n" .
5492 "<author>" . esc_html
($co{'author'}) . "</author>\n" .
5493 "<pubDate>$cd{'rfc2822'}</pubDate>\n" .
5494 "<guid isPermaLink=\"true\">$co_url</guid>\n" .
5495 "<link>$co_url</link>\n" .
5496 "<description>" . esc_html
($co{'title'}) . "</description>\n" .
5497 "<content:encoded>" .
5499 } elsif ($format eq 'atom') {
5501 "<title type=\"html\">" . esc_html
($co{'title'}) . "</title>\n" .
5502 "<updated>$cd{'iso-8601'}</updated>\n" .
5504 " <name>" . esc_html
($co{'author_name'}) . "</name>\n";
5505 if ($co{'author_email'}) {
5506 print " <email>" . esc_html
($co{'author_email'}) . "</email>\n";
5508 print "</author>\n" .
5509 # use committer for contributor
5511 " <name>" . esc_html
($co{'committer_name'}) . "</name>\n";
5512 if ($co{'committer_email'}) {
5513 print " <email>" . esc_html
($co{'committer_email'}) . "</email>\n";
5515 print "</contributor>\n" .
5516 "<published>$cd{'iso-8601'}</published>\n" .
5517 "<link rel=\"alternate\" type=\"text/html\" href=\"$co_url\" />\n" .
5518 "<id>$co_url</id>\n" .
5519 "<content type=\"xhtml\" xml:base=\"" . esc_url
($my_url) . "\">\n" .
5520 "<div xmlns=\"http://www.w3.org/1999/xhtml\">\n";
5522 my $comment = $co{'comment'};
5524 foreach my $line (@
$comment) {
5525 $line = esc_html
($line);
5528 print "</pre><ul>\n";
5529 foreach my $difftree_line (@difftree) {
5530 my %difftree = parse_difftree_raw_line
($difftree_line);
5531 next if !$difftree{'from_id'};
5533 my $file = $difftree{'file'} || $difftree{'to_file'};
5537 $cgi->a({-href
=> href
(-full
=>1, action
=>"blobdiff",
5538 hash
=>$difftree{'to_id'}, hash_parent
=>$difftree{'from_id'},
5539 hash_base
=>$co{'id'}, hash_parent_base
=>$co{'parent'},
5540 file_name
=>$file, file_parent
=>$difftree{'from_file'}),
5541 -title
=> "diff"}, 'D');
5543 print $cgi->a({-href
=> href
(-full
=>1, action
=>"blame",
5544 file_name
=>$file, hash_base
=>$commit),
5545 -title
=> "blame"}, 'B');
5547 # if this is not a feed of a file history
5548 if (!defined $file_name || $file_name ne $file) {
5549 print $cgi->a({-href
=> href
(-full
=>1, action
=>"history",
5550 file_name
=>$file, hash
=>$commit),
5551 -title
=> "history"}, 'H');
5553 $file = esc_path
($file);
5557 if ($format eq 'rss') {
5558 print "</ul>]]>\n" .
5559 "</content:encoded>\n" .
5561 } elsif ($format eq 'atom') {
5562 print "</ul>\n</div>\n" .
5569 if ($format eq 'rss') {
5570 print "</channel>\n</rss>\n";
5571 } elsif ($format eq 'atom') {
5585 my @list = git_get_projects_list
();
5587 print $cgi->header(-type
=> 'text/xml', -charset
=> 'utf-8');
5589 <?xml version="1.0" encoding="utf-8"?>
5590 <opml version="1.0">
5592 <title>$site_name OPML Export</title>
5595 <outline text="git RSS feeds">
5598 foreach my $pr (@list) {
5600 my $head = git_get_head_hash
($proj{'path'});
5601 if (!defined $head) {
5604 $git_dir = "$projectroot/$proj{'path'}";
5605 my %co = parse_commit
($head);
5610 my $path = esc_html
(chop_str
($proj{'path'}, 25, 5));
5611 my $rss = "$my_url?p=$proj{'path'};a=rss";
5612 my $html = "$my_url?p=$proj{'path'};a=summary";
5613 print "<outline type=\"rss\" text=\"$path\" title=\"$path\" xmlUrl=\"$rss\" htmlUrl=\"$html\"/>\n";