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 # fs traversing limit for getting project list
39 # the number is relative to the projectroot
40 our $project_maxdepth = "++GITWEB_PROJECT_MAXDEPTH++";
42 # target of the home link on top of all pages
43 our $home_link = $my_uri || "/";
45 # string of the home link on top of all pages
46 our $home_link_str = "++GITWEB_HOME_LINK_STR++";
48 # name of your site or organization to appear in page titles
49 # replace this with something more descriptive for clearer bookmarks
50 our $site_name = "++GITWEB_SITENAME++"
51 || ($ENV{'SERVER_NAME'} || "Untitled") . " Git";
53 # filename of html text to include at top of each page
54 our $site_header = "++GITWEB_SITE_HEADER++";
55 # html text to include at home page
56 our $home_text = "++GITWEB_HOMETEXT++";
57 # filename of html text to include at bottom of each page
58 our $site_footer = "++GITWEB_SITE_FOOTER++";
61 our @stylesheets = ("++GITWEB_CSS++");
62 # URI of a single stylesheet, which can be overridden in GITWEB_CONFIG.
63 our $stylesheet = undef;
64 # URI of GIT logo (72x27 size)
65 our $logo = "++GITWEB_LOGO++";
66 # URI of GIT favicon, assumed to be image/png type
67 our $favicon = "++GITWEB_FAVICON++";
69 # URI and label (title) of GIT logo link
70 #our $logo_url = "http://www.kernel.org/pub/software/scm/git/docs/";
71 #our $logo_label = "git documentation";
72 our $logo_url = "http://git.or.cz/";
73 our $logo_label = "git homepage";
75 # source of projects list
76 our $projects_list = "++GITWEB_LIST++";
78 # the width (in characters) of the projects list "Description" column
79 our $projects_list_description_width = 25;
81 # default order of projects list
82 # valid values are none, project, descr, owner, and age
83 our $default_projects_order = "project";
85 # show repository only if this file exists
86 # (only effective if this variable evaluates to true)
87 our $export_ok = "++GITWEB_EXPORT_OK++";
89 # only allow viewing of repositories also shown on the overview page
90 our $strict_export = "++GITWEB_STRICT_EXPORT++";
92 # list of git base URLs used for URL to where fetch project from,
93 # i.e. full URL is "$git_base_url/$project"
94 our @git_base_url_list = grep { $_ ne '' } ("++GITWEB_BASE_URL++");
96 # default blob_plain mimetype and default charset for text/plain blob
97 our $default_blob_plain_mimetype = 'text/plain';
98 our $default_text_plain_charset = undef;
100 # file to use for guessing MIME types before trying /etc/mime.types
101 # (relative to the current git repository)
102 our $mimetypes_file = undef;
104 # assume this charset if line contains non-UTF-8 characters;
105 # it should be valid encoding (see Encoding::Supported(3pm) for list),
106 # for which encoding all byte sequences are valid, for example
107 # 'iso-8859-1' aka 'latin1' (it is decoded without checking, so it
108 # could be even 'utf-8' for the old behavior)
109 our $fallback_encoding = 'latin1';
111 # rename detection options for git-diff and git-diff-tree
112 # - default is '-M', with the cost proportional to
113 # (number of removed files) * (number of new files).
114 # - more costly is '-C' (which implies '-M'), with the cost proportional to
115 # (number of changed files + number of removed files) * (number of new files)
116 # - even more costly is '-C', '--find-copies-harder' with cost
117 # (number of files in the original tree) * (number of new files)
118 # - one might want to include '-B' option, e.g. '-B', '-M'
119 our @diff_opts = ('-M'); # taken from git_commit
121 # information about snapshot formats that gitweb is capable of serving
122 our %known_snapshot_formats = (
124 # 'display' => display name,
125 # 'type' => mime type,
126 # 'suffix' => filename suffix,
127 # 'format' => --format for git-archive,
128 # 'compressor' => [compressor command and arguments]
129 # (array reference, optional)}
132 'display' => 'tar.gz',
133 'type' => 'application/x-gzip',
134 'suffix' => '.tar.gz',
136 'compressor' => ['gzip']},
139 'display' => 'tar.bz2',
140 'type' => 'application/x-bzip2',
141 'suffix' => '.tar.bz2',
143 'compressor' => ['bzip2']},
147 'type' => 'application/x-zip',
152 # Aliases so we understand old gitweb.snapshot values in repository
154 our %known_snapshot_format_aliases = (
158 # backward compatibility: legacy gitweb config support
159 'x-gzip' => undef, 'gz' => undef,
160 'x-bzip2' => undef, 'bz2' => undef,
161 'x-zip' => undef, '' => undef,
164 # You define site-wide feature defaults here; override them with
165 # $GITWEB_CONFIG as necessary.
168 # 'sub' => feature-sub (subroutine),
169 # 'override' => allow-override (boolean),
170 # 'default' => [ default options...] (array reference)}
172 # if feature is overridable (it means that allow-override has true value),
173 # then feature-sub will be called with default options as parameters;
174 # return value of feature-sub indicates if to enable specified feature
176 # if there is no 'sub' key (no feature-sub), then feature cannot be
179 # use gitweb_check_feature(<feature>) to check if <feature> is enabled
181 # Enable the 'blame' blob view, showing the last commit that modified
182 # each line in the file. This can be very CPU-intensive.
184 # To enable system wide have in $GITWEB_CONFIG
185 # $feature{'blame'}{'default'} = [1];
186 # To have project specific config enable override in $GITWEB_CONFIG
187 # $feature{'blame'}{'override'} = 1;
188 # and in project config gitweb.blame = 0|1;
190 'sub' => \
&feature_blame
,
194 # Enable the 'snapshot' link, providing a compressed archive of any
195 # tree. This can potentially generate high traffic if you have large
198 # Value is a list of formats defined in %known_snapshot_formats that
200 # To disable system wide have in $GITWEB_CONFIG
201 # $feature{'snapshot'}{'default'} = [];
202 # To have project specific config enable override in $GITWEB_CONFIG
203 # $feature{'snapshot'}{'override'} = 1;
204 # and in project config, a comma-separated list of formats or "none"
205 # to disable. Example: gitweb.snapshot = tbz2,zip;
207 'sub' => \
&feature_snapshot
,
209 'default' => ['tgz']},
211 # Enable text search, which will list the commits which match author,
212 # committer or commit text to a given string. Enabled by default.
213 # Project specific override is not supported.
218 # Enable grep search, which will list the files in currently selected
219 # tree containing the given string. Enabled by default. This can be
220 # potentially CPU-intensive, of course.
222 # To enable system wide have in $GITWEB_CONFIG
223 # $feature{'grep'}{'default'} = [1];
224 # To have project specific config enable override in $GITWEB_CONFIG
225 # $feature{'grep'}{'override'} = 1;
226 # and in project config gitweb.grep = 0|1;
231 # Enable the pickaxe search, which will list the commits that modified
232 # a given string in a file. This can be practical and quite faster
233 # alternative to 'blame', but still potentially CPU-intensive.
235 # To enable system wide have in $GITWEB_CONFIG
236 # $feature{'pickaxe'}{'default'} = [1];
237 # To have project specific config enable override in $GITWEB_CONFIG
238 # $feature{'pickaxe'}{'override'} = 1;
239 # and in project config gitweb.pickaxe = 0|1;
241 'sub' => \
&feature_pickaxe
,
245 # Make gitweb use an alternative format of the URLs which can be
246 # more readable and natural-looking: project name is embedded
247 # directly in the path and the query string contains other
248 # auxiliary information. All gitweb installations recognize
249 # URL in either format; this configures in which formats gitweb
252 # To enable system wide have in $GITWEB_CONFIG
253 # $feature{'pathinfo'}{'default'} = [1];
254 # Project specific override is not supported.
256 # Note that you will need to change the default location of CSS,
257 # favicon, logo and possibly other files to an absolute URL. Also,
258 # if gitweb.cgi serves as your indexfile, you will need to force
259 # $my_uri to contain the script name in your $GITWEB_CONFIG.
264 # Make gitweb consider projects in project root subdirectories
265 # to be forks of existing projects. Given project $projname.git,
266 # projects matching $projname/*.git will not be shown in the main
267 # projects list, instead a '+' mark will be added to $projname
268 # there and a 'forks' view will be enabled for the project, listing
269 # all the forks. If project list is taken from a file, forks have
270 # to be listed after the main project.
272 # To enable system wide have in $GITWEB_CONFIG
273 # $feature{'forks'}{'default'} = [1];
274 # Project specific override is not supported.
280 sub gitweb_check_feature
{
282 return unless exists $feature{$name};
283 my ($sub, $override, @defaults) = (
284 $feature{$name}{'sub'},
285 $feature{$name}{'override'},
286 @
{$feature{$name}{'default'}});
287 if (!$override) { return @defaults; }
289 warn "feature $name is not overrideable";
292 return $sub->(@defaults);
296 my ($val) = git_get_project_config
('blame', '--bool');
298 if ($val eq 'true') {
300 } elsif ($val eq 'false') {
307 sub feature_snapshot
{
310 my ($val) = git_get_project_config
('snapshot');
313 @fmts = ($val eq 'none' ?
() : split /\s*[,\s]\s*/, $val);
320 my ($val) = git_get_project_config
('grep', '--bool');
322 if ($val eq 'true') {
324 } elsif ($val eq 'false') {
331 sub feature_pickaxe
{
332 my ($val) = git_get_project_config
('pickaxe', '--bool');
334 if ($val eq 'true') {
336 } elsif ($val eq 'false') {
343 # checking HEAD file with -e is fragile if the repository was
344 # initialized long time ago (i.e. symlink HEAD) and was pack-ref'ed
346 sub check_head_link
{
348 my $headfile = "$dir/HEAD";
349 return ((-e
$headfile) ||
350 (-l
$headfile && readlink($headfile) =~ /^refs\/heads\
//));
353 sub check_export_ok
{
355 return (check_head_link
($dir) &&
356 (!$export_ok || -e
"$dir/$export_ok"));
359 # process alternate names for backward compatibility
360 # filter out unsupported (unknown) snapshot formats
361 sub filter_snapshot_fmts
{
365 exists $known_snapshot_format_aliases{$_} ?
366 $known_snapshot_format_aliases{$_} : $_} @fmts;
367 @fmts = grep(exists $known_snapshot_formats{$_}, @fmts);
371 our $GITWEB_CONFIG = $ENV{'GITWEB_CONFIG'} || "++GITWEB_CONFIG++";
372 do $GITWEB_CONFIG if -e
$GITWEB_CONFIG;
374 # version of the core git binary
375 our $git_version = qx($GIT --version
) =~ m/git version (.*)$/ ?
$1 : "unknown";
377 $projects_list ||= $projectroot;
379 # ======================================================================
380 # input validation and dispatch
381 our $action = $cgi->param('a');
382 if (defined $action) {
383 if ($action =~ m/[^0-9a-zA-Z\.\-_]/) {
384 die_error
(undef, "Invalid action parameter");
388 # parameters which are pathnames
389 our $project = $cgi->param('p');
390 if (defined $project) {
391 if (!validate_pathname
($project) ||
392 !(-d
"$projectroot/$project") ||
393 !check_head_link
("$projectroot/$project") ||
394 ($export_ok && !(-e
"$projectroot/$project/$export_ok")) ||
395 ($strict_export && !project_in_list
($project))) {
397 die_error
(undef, "No such project");
401 our $file_name = $cgi->param('f');
402 if (defined $file_name) {
403 if (!validate_pathname
($file_name)) {
404 die_error
(undef, "Invalid file parameter");
408 our $file_parent = $cgi->param('fp');
409 if (defined $file_parent) {
410 if (!validate_pathname
($file_parent)) {
411 die_error
(undef, "Invalid file parent parameter");
415 # parameters which are refnames
416 our $hash = $cgi->param('h');
418 if (!validate_refname
($hash)) {
419 die_error
(undef, "Invalid hash parameter");
423 our $hash_parent = $cgi->param('hp');
424 if (defined $hash_parent) {
425 if (!validate_refname
($hash_parent)) {
426 die_error
(undef, "Invalid hash parent parameter");
430 our $hash_base = $cgi->param('hb');
431 if (defined $hash_base) {
432 if (!validate_refname
($hash_base)) {
433 die_error
(undef, "Invalid hash base parameter");
437 my %allowed_options = (
438 "--no-merges" => [ qw(rss atom log shortlog history) ],
441 our @extra_options = $cgi->param('opt');
442 if (defined @extra_options) {
443 foreach my $opt (@extra_options) {
444 if (not exists $allowed_options{$opt}) {
445 die_error
(undef, "Invalid option parameter");
447 if (not grep(/^$action$/, @
{$allowed_options{$opt}})) {
448 die_error
(undef, "Invalid option parameter for this action");
453 our $hash_parent_base = $cgi->param('hpb');
454 if (defined $hash_parent_base) {
455 if (!validate_refname
($hash_parent_base)) {
456 die_error
(undef, "Invalid hash parent base parameter");
461 our $page = $cgi->param('pg');
463 if ($page =~ m/[^0-9]/) {
464 die_error
(undef, "Invalid page parameter");
468 our $searchtype = $cgi->param('st');
469 if (defined $searchtype) {
470 if ($searchtype =~ m/[^a-z]/) {
471 die_error
(undef, "Invalid searchtype parameter");
475 our $searchtext = $cgi->param('s');
477 if (defined $searchtext) {
478 if (length($searchtext) < 2) {
479 die_error
(undef, "At least two characters are required for search parameter");
481 $search_regexp = quotemeta $searchtext;
484 # now read PATH_INFO and use it as alternative to parameters
485 sub evaluate_path_info
{
486 return if defined $project;
487 my $path_info = $ENV{"PATH_INFO"};
488 return if !$path_info;
489 $path_info =~ s
,^/+,,;
490 return if !$path_info;
491 # find which part of PATH_INFO is project
492 $project = $path_info;
494 while ($project && !check_head_link
("$projectroot/$project")) {
495 $project =~ s
,/*[^/]*$,,;
498 $project = validate_pathname
($project);
500 ($export_ok && !-e
"$projectroot/$project/$export_ok") ||
501 ($strict_export && !project_in_list
($project))) {
505 # do not change any parameters if an action is given using the query string
507 $path_info =~ s
,^$project/*,,;
508 my ($refname, $pathname) = split(/:/, $path_info, 2);
509 if (defined $pathname) {
510 # we got "project.git/branch:filename" or "project.git/branch:dir/"
511 # we could use git_get_type(branch:pathname), but it needs $git_dir
512 $pathname =~ s
,^/+,,;
513 if (!$pathname || substr($pathname, -1) eq "/") {
517 $action ||= "blob_plain";
519 $hash_base ||= validate_refname
($refname);
520 $file_name ||= validate_pathname
($pathname);
521 } elsif (defined $refname) {
522 # we got "project.git/branch"
523 $action ||= "shortlog";
524 $hash ||= validate_refname
($refname);
527 evaluate_path_info
();
529 # path to the current git repository
531 $git_dir = "$projectroot/$project" if $project;
535 "blame" => \
&git_blame2
,
536 "blobdiff" => \
&git_blobdiff
,
537 "blobdiff_plain" => \
&git_blobdiff_plain
,
538 "blob" => \
&git_blob
,
539 "blob_plain" => \
&git_blob_plain
,
540 "commitdiff" => \
&git_commitdiff
,
541 "commitdiff_plain" => \
&git_commitdiff_plain
,
542 "commit" => \
&git_commit
,
543 "forks" => \
&git_forks
,
544 "heads" => \
&git_heads
,
545 "history" => \
&git_history
,
548 "atom" => \
&git_atom
,
549 "search" => \
&git_search
,
550 "search_help" => \
&git_search_help
,
551 "shortlog" => \
&git_shortlog
,
552 "summary" => \
&git_summary
,
554 "tags" => \
&git_tags
,
555 "tree" => \
&git_tree
,
556 "snapshot" => \
&git_snapshot
,
557 "object" => \
&git_object
,
558 # those below don't need $project
559 "opml" => \
&git_opml
,
560 "project_list" => \
&git_project_list
,
561 "project_index" => \
&git_project_index
,
564 if (!defined $action) {
566 $action = git_get_type
($hash);
567 } elsif (defined $hash_base && defined $file_name) {
568 $action = git_get_type
("$hash_base:$file_name");
569 } elsif (defined $project) {
572 $action = 'project_list';
575 if (!defined($actions{$action})) {
576 die_error
(undef, "Unknown action");
578 if ($action !~ m/^(opml|project_list|project_index)$/ &&
580 die_error
(undef, "Project needed");
582 $actions{$action}->();
585 ## ======================================================================
590 # default is to use -absolute url() i.e. $my_uri
591 my $href = $params{-full
} ?
$my_url : $my_uri;
593 # XXX: Warning: If you touch this, check the search form for updating,
604 hash_parent_base
=> "hpb",
609 snapshot_format
=> "sf",
610 extra_options
=> "opt",
612 my %mapping = @mapping;
614 $params{'project'} = $project unless exists $params{'project'};
616 my ($use_pathinfo) = gitweb_check_feature
('pathinfo');
618 # use PATH_INFO for project name
619 $href .= "/$params{'project'}" if defined $params{'project'};
620 delete $params{'project'};
622 # Summary just uses the project path URL
623 if (defined $params{'action'} && $params{'action'} eq 'summary') {
624 delete $params{'action'};
628 # now encode the parameters explicitly
630 for (my $i = 0; $i < @mapping; $i += 2) {
631 my ($name, $symbol) = ($mapping[$i], $mapping[$i+1]);
632 if (defined $params{$name}) {
633 if (ref($params{$name}) eq "ARRAY") {
634 foreach my $par (@
{$params{$name}}) {
635 push @result, $symbol . "=" . esc_param
($par);
638 push @result, $symbol . "=" . esc_param
($params{$name});
642 $href .= "?" . join(';', @result) if scalar @result;
648 ## ======================================================================
649 ## validation, quoting/unquoting and escaping
651 sub validate_pathname
{
652 my $input = shift || return undef;
654 # no '.' or '..' as elements of path, i.e. no '.' nor '..'
655 # at the beginning, at the end, and between slashes.
656 # also this catches doubled slashes
657 if ($input =~ m!(^|/)(|\.|\.\.)(/|$)!) {
661 if ($input =~ m!\0!) {
667 sub validate_refname
{
668 my $input = shift || return undef;
670 # textual hashes are O.K.
671 if ($input =~ m/^[0-9a-fA-F]{40}$/) {
674 # it must be correct pathname
675 $input = validate_pathname
($input)
677 # restrictions on ref name according to git-check-ref-format
678 if ($input =~ m!(/\.|\.\.|[\000-\040\177 ~^:?*\[]|/$)!) {
684 # decode sequences of octets in utf8 into Perl's internal form,
685 # which is utf-8 with utf8 flag set if needed. gitweb writes out
686 # in utf-8 thanks to "binmode STDOUT, ':utf8'" at beginning
690 eval { $res = decode_utf8
($str, Encode
::FB_CROAK
); };
694 return decode
($fallback_encoding, $str, Encode
::FB_DEFAULT
);
698 # quote unsafe chars, but keep the slash, even when it's not
699 # correct, but quoted slashes look too horrible in bookmarks
702 $str =~ s/([^A-Za-z0-9\-_.~()\/:@])/sprintf
("%%%02X", ord($1))/eg
;
708 # quote unsafe chars in whole URL, so some charactrs cannot be quoted
711 $str =~ s/([^A-Za-z0-9\-_.~();\/;?:@&=])/sprintf
("%%%02X", ord($1))/eg
;
717 # replace invalid utf8 character with SUBSTITUTION sequence
722 $str = to_utf8
($str);
723 $str = $cgi->escapeHTML($str);
724 if ($opts{'-nbsp'}) {
725 $str =~ s/ / /g;
727 $str =~ s
|([[:cntrl
:]])|(($1 ne "\t") ? quot_cec
($1) : $1)|eg
;
731 # quote control characters and escape filename to HTML
736 $str = to_utf8
($str);
737 $str = $cgi->escapeHTML($str);
738 if ($opts{'-nbsp'}) {
739 $str =~ s/ / /g;
741 $str =~ s
|([[:cntrl
:]])|quot_cec
($1)|eg
;
745 # Make control characters "printable", using character escape codes (CEC)
748 my %es = ( # character escape codes, aka escape sequences
749 "\t" => '\t', # tab (HT)
750 "\n" => '\n', # line feed (LF)
751 "\r" => '\r', # carrige return (CR)
752 "\f" => '\f', # form feed (FF)
753 "\b" => '\b', # backspace (BS)
754 "\a" => '\a', # alarm (bell) (BEL)
755 "\e" => '\e', # escape (ESC)
756 "\013" => '\v', # vertical tab (VT)
757 "\000" => '\0', # nul character (NUL)
759 my $chr = ( (exists $es{$cntrl})
761 : sprintf('\%03o', ord($cntrl)) );
762 return "<span class=\"cntrl\">$chr</span>";
765 # Alternatively use unicode control pictures codepoints,
766 # Unicode "printable representation" (PR)
769 my $chr = sprintf('&#%04d;', 0x2400+ord($cntrl));
770 return "<span class=\"cntrl\">$chr</span>";
773 # git may return quoted and escaped filenames
779 my %es = ( # character escape codes, aka escape sequences
780 't' => "\t", # tab (HT, TAB)
781 'n' => "\n", # newline (NL)
782 'r' => "\r", # return (CR)
783 'f' => "\f", # form feed (FF)
784 'b' => "\b", # backspace (BS)
785 'a' => "\a", # alarm (bell) (BEL)
786 'e' => "\e", # escape (ESC)
787 'v' => "\013", # vertical tab (VT)
790 if ($seq =~ m/^[0-7]{1,3}$/) {
791 # octal char sequence
792 return chr(oct($seq));
793 } elsif (exists $es{$seq}) {
794 # C escape sequence, aka character escape code
797 # quoted ordinary character
801 if ($str =~ m/^"(.*)"$/) {
804 $str =~ s/\\([^0-7]|[0-7]{1,3})/unq($1)/eg;
809 # escape tabs (convert tabs to spaces)
813 while ((my $pos = index($line, "\t")) != -1) {
814 if (my $count = (8 - ($pos % 8))) {
815 my $spaces = ' ' x
$count;
816 $line =~ s/\t/$spaces/;
823 sub project_in_list
{
825 my @list = git_get_projects_list
();
826 return @list && scalar(grep { $_->{'path'} eq $project } @list);
829 ## ----------------------------------------------------------------------
830 ## HTML aware string manipulation
835 my $add_len = shift || 10;
837 # allow only $len chars, but don't cut a word if it would fit in $add_len
838 # if it doesn't fit, cut it if it's still longer than the dots we would add
839 $str =~ m/^(.{0,$len}[^ \/\
-_
:\
.@
]{0,$add_len})(.*)/;
842 if (length($tail) > 4) {
844 $body =~ s/&[^;]*$//; # remove chopped character entities
849 ## ----------------------------------------------------------------------
850 ## functions returning short strings
852 # CSS class for given age value (in seconds)
858 } elsif ($age < 60*60*2) {
860 } elsif ($age < 60*60*24*2) {
867 # convert age in seconds to "nn units ago" string
872 if ($age > 60*60*24*365*2) {
873 $age_str = (int $age/60/60/24/365);
874 $age_str .= " years ago";
875 } elsif ($age > 60*60*24*(365/12)*2) {
876 $age_str = int $age/60/60/24/(365/12);
877 $age_str .= " months ago";
878 } elsif ($age > 60*60*24*7*2) {
879 $age_str = int $age/60/60/24/7;
880 $age_str .= " weeks ago";
881 } elsif ($age > 60*60*24*2) {
882 $age_str = int $age/60/60/24;
883 $age_str .= " days ago";
884 } elsif ($age > 60*60*2) {
885 $age_str = int $age/60/60;
886 $age_str .= " hours ago";
887 } elsif ($age > 60*2) {
888 $age_str = int $age/60;
889 $age_str .= " min ago";
892 $age_str .= " sec ago";
894 $age_str .= " right now";
900 S_IFINVALID
=> 0030000,
901 S_IFGITLINK
=> 0160000,
904 # submodule/subproject, a commit object reference
908 return (($mode & S_IFMT
) == S_IFGITLINK
)
911 # convert file mode in octal to symbolic file mode string
913 my $mode = oct shift;
915 if (S_ISGITLINK
($mode)) {
917 } elsif (S_ISDIR
($mode & S_IFMT
)) {
919 } elsif (S_ISLNK
($mode)) {
921 } elsif (S_ISREG
($mode)) {
922 # git cares only about the executable bit
923 if ($mode & S_IXUSR
) {
933 # convert file mode in octal to file type string
937 if ($mode !~ m/^[0-7]+$/) {
943 if (S_ISGITLINK
($mode)) {
945 } elsif (S_ISDIR
($mode & S_IFMT
)) {
947 } elsif (S_ISLNK
($mode)) {
949 } elsif (S_ISREG
($mode)) {
956 # convert file mode in octal to file type description string
960 if ($mode !~ m/^[0-7]+$/) {
966 if (S_ISGITLINK
($mode)) {
968 } elsif (S_ISDIR
($mode & S_IFMT
)) {
970 } elsif (S_ISLNK
($mode)) {
972 } elsif (S_ISREG
($mode)) {
973 if ($mode & S_IXUSR
) {
984 ## ----------------------------------------------------------------------
985 ## functions returning short HTML fragments, or transforming HTML fragments
986 ## which don't belong to other sections
988 # format line of commit message.
989 sub format_log_line_html
{
992 $line = esc_html
($line, -nbsp
=>1);
993 if ($line =~ m/([0-9a-fA-F]{8,40})/) {
996 $cgi->a({-href
=> href
(action
=>"object", hash
=>$hash_text),
997 -class => "text"}, $hash_text);
998 $line =~ s/$hash_text/$link/;
1003 # format marker of refs pointing to given object
1004 sub format_ref_marker
{
1005 my ($refs, $id) = @_;
1008 if (defined $refs->{$id}) {
1009 foreach my $ref (@
{$refs->{$id}}) {
1010 my ($type, $name) = qw();
1011 # e.g. tags/v2.6.11 or heads/next
1012 if ($ref =~ m!^(.*?)s?/(.*)$!) {
1020 $markers .= " <span class=\"$type\" title=\"$ref\">" .
1021 esc_html
($name) . "</span>";
1026 return ' <span class="refs">'. $markers . '</span>';
1032 # format, perhaps shortened and with markers, title line
1033 sub format_subject_html
{
1034 my ($long, $short, $href, $extra) = @_;
1035 $extra = '' unless defined($extra);
1037 if (length($short) < length($long)) {
1038 return $cgi->a({-href
=> $href, -class => "list subject",
1039 -title
=> to_utf8
($long)},
1040 esc_html
($short) . $extra);
1042 return $cgi->a({-href
=> $href, -class => "list subject"},
1043 esc_html
($long) . $extra);
1047 # format git diff header line, i.e. "diff --(git|combined|cc) ..."
1048 sub format_git_diff_header_line
{
1050 my $diffinfo = shift;
1051 my ($from, $to) = @_;
1053 if ($diffinfo->{'nparents'}) {
1055 $line =~ s!^(diff (.*?) )"?.*$!$1!;
1056 if ($to->{'href'}) {
1057 $line .= $cgi->a({-href
=> $to->{'href'}, -class => "path"},
1058 esc_path
($to->{'file'}));
1059 } else { # file was deleted (no href)
1060 $line .= esc_path
($to->{'file'});
1064 $line =~ s!^(diff (.*?) )"?a/.*$!$1!;
1065 if ($from->{'href'}) {
1066 $line .= $cgi->a({-href
=> $from->{'href'}, -class => "path"},
1067 'a/' . esc_path
($from->{'file'}));
1068 } else { # file was added (no href)
1069 $line .= 'a/' . esc_path
($from->{'file'});
1072 if ($to->{'href'}) {
1073 $line .= $cgi->a({-href
=> $to->{'href'}, -class => "path"},
1074 'b/' . esc_path
($to->{'file'}));
1075 } else { # file was deleted
1076 $line .= 'b/' . esc_path
($to->{'file'});
1080 return "<div class=\"diff header\">$line</div>\n";
1083 # format extended diff header line, before patch itself
1084 sub format_extended_diff_header_line
{
1086 my $diffinfo = shift;
1087 my ($from, $to) = @_;
1090 if ($line =~ s!^((copy|rename) from ).*$!$1! && $from->{'href'}) {
1091 $line .= $cgi->a({-href
=>$from->{'href'}, -class=>"path"},
1092 esc_path
($from->{'file'}));
1094 if ($line =~ s!^((copy|rename) to ).*$!$1! && $to->{'href'}) {
1095 $line .= $cgi->a({-href
=>$to->{'href'}, -class=>"path"},
1096 esc_path
($to->{'file'}));
1098 # match single <mode>
1099 if ($line =~ m/\s(\d{6})$/) {
1100 $line .= '<span class="info"> (' .
1101 file_type_long
($1) .
1105 if ($line =~ m/^index [0-9a-fA-F]{40},[0-9a-fA-F]{40}/) {
1106 # can match only for combined diff
1108 for (my $i = 0; $i < $diffinfo->{'nparents'}; $i++) {
1109 if ($from->{'href'}[$i]) {
1110 $line .= $cgi->a({-href
=>$from->{'href'}[$i],
1112 substr($diffinfo->{'from_id'}[$i],0,7));
1117 $line .= ',' if ($i < $diffinfo->{'nparents'} - 1);
1120 if ($to->{'href'}) {
1121 $line .= $cgi->a({-href
=>$to->{'href'}, -class=>"hash"},
1122 substr($diffinfo->{'to_id'},0,7));
1127 } elsif ($line =~ m/^index [0-9a-fA-F]{40}..[0-9a-fA-F]{40}/) {
1128 # can match only for ordinary diff
1129 my ($from_link, $to_link);
1130 if ($from->{'href'}) {
1131 $from_link = $cgi->a({-href
=>$from->{'href'}, -class=>"hash"},
1132 substr($diffinfo->{'from_id'},0,7));
1134 $from_link = '0' x
7;
1136 if ($to->{'href'}) {
1137 $to_link = $cgi->a({-href
=>$to->{'href'}, -class=>"hash"},
1138 substr($diffinfo->{'to_id'},0,7));
1142 my ($from_id, $to_id) = ($diffinfo->{'from_id'}, $diffinfo->{'to_id'});
1143 $line =~ s!$from_id\.\.$to_id!$from_link..$to_link!;
1146 return $line . "<br/>\n";
1149 # format from-file/to-file diff header
1150 sub format_diff_from_to_header
{
1151 my ($from_line, $to_line, $diffinfo, $from, $to, @parents) = @_;
1156 #assert($line =~ m/^---/) if DEBUG;
1157 # no extra formatting for "^--- /dev/null"
1158 if (! $diffinfo->{'nparents'}) {
1159 # ordinary (single parent) diff
1160 if ($line =~ m!^--- "?a/!) {
1161 if ($from->{'href'}) {
1163 $cgi->a({-href
=>$from->{'href'}, -class=>"path"},
1164 esc_path
($from->{'file'}));
1167 esc_path
($from->{'file'});
1170 $result .= qq!<div
class="diff from_file">$line</div
>\n!;
1173 # combined diff (merge commit)
1174 for (my $i = 0; $i < $diffinfo->{'nparents'}; $i++) {
1175 if ($from->{'href'}[$i]) {
1177 $cgi->a({-href
=>href
(action
=>"blobdiff",
1178 hash_parent
=>$diffinfo->{'from_id'}[$i],
1179 hash_parent_base
=>$parents[$i],
1180 file_parent
=>$from->{'file'}[$i],
1181 hash
=>$diffinfo->{'to_id'},
1183 file_name
=>$to->{'file'}),
1185 -title
=>"diff" . ($i+1)},
1188 $cgi->a({-href
=>$from->{'href'}[$i], -class=>"path"},
1189 esc_path
($from->{'file'}[$i]));
1191 $line = '--- /dev/null';
1193 $result .= qq!<div
class="diff from_file">$line</div
>\n!;
1198 #assert($line =~ m/^\+\+\+/) if DEBUG;
1199 # no extra formatting for "^+++ /dev/null"
1200 if ($line =~ m!^\+\+\+ "?b/!) {
1201 if ($to->{'href'}) {
1203 $cgi->a({-href
=>$to->{'href'}, -class=>"path"},
1204 esc_path
($to->{'file'}));
1207 esc_path
($to->{'file'});
1210 $result .= qq!<div
class="diff to_file">$line</div
>\n!;
1215 # create note for patch simplified by combined diff
1216 sub format_diff_cc_simplified
{
1217 my ($diffinfo, @parents) = @_;
1220 $result .= "<div class=\"diff header\">" .
1222 if (!is_deleted
($diffinfo)) {
1223 $result .= $cgi->a({-href
=> href
(action
=>"blob",
1225 hash
=>$diffinfo->{'to_id'},
1226 file_name
=>$diffinfo->{'to_file'}),
1228 esc_path
($diffinfo->{'to_file'}));
1230 $result .= esc_path
($diffinfo->{'to_file'});
1232 $result .= "</div>\n" . # class="diff header"
1233 "<div class=\"diff nodifferences\">" .
1235 "</div>\n"; # class="diff nodifferences"
1240 # format patch (diff) line (not to be used for diff headers)
1241 sub format_diff_line
{
1243 my ($from, $to) = @_;
1244 my $diff_class = "";
1248 if ($from && $to && ref($from->{'href'}) eq "ARRAY") {
1250 my $prefix = substr($line, 0, scalar @
{$from->{'href'}});
1251 if ($line =~ m/^\@{3}/) {
1252 $diff_class = " chunk_header";
1253 } elsif ($line =~ m/^\\/) {
1254 $diff_class = " incomplete";
1255 } elsif ($prefix =~ tr/+/+/) {
1256 $diff_class = " add";
1257 } elsif ($prefix =~ tr/-/-/) {
1258 $diff_class = " rem";
1261 # assume ordinary diff
1262 my $char = substr($line, 0, 1);
1264 $diff_class = " add";
1265 } elsif ($char eq '-') {
1266 $diff_class = " rem";
1267 } elsif ($char eq '@') {
1268 $diff_class = " chunk_header";
1269 } elsif ($char eq "\\") {
1270 $diff_class = " incomplete";
1273 $line = untabify
($line);
1274 if ($from && $to && $line =~ m/^\@{2} /) {
1275 my ($from_text, $from_start, $from_lines, $to_text, $to_start, $to_lines, $section) =
1276 $line =~ m/^\@{2} (-(\d+)(?:,(\d+))?) (\+(\d+)(?:,(\d+))?) \@{2}(.*)$/;
1278 $from_lines = 0 unless defined $from_lines;
1279 $to_lines = 0 unless defined $to_lines;
1281 if ($from->{'href'}) {
1282 $from_text = $cgi->a({-href
=>"$from->{'href'}#l$from_start",
1283 -class=>"list"}, $from_text);
1285 if ($to->{'href'}) {
1286 $to_text = $cgi->a({-href
=>"$to->{'href'}#l$to_start",
1287 -class=>"list"}, $to_text);
1289 $line = "<span class=\"chunk_info\">@@ $from_text $to_text @@</span>" .
1290 "<span class=\"section\">" . esc_html
($section, -nbsp
=>1) . "</span>";
1291 return "<div class=\"diff$diff_class\">$line</div>\n";
1292 } elsif ($from && $to && $line =~ m/^\@{3}/) {
1293 my ($prefix, $ranges, $section) = $line =~ m/^(\@+) (.*?) \@+(.*)$/;
1294 my (@from_text, @from_start, @from_nlines, $to_text, $to_start, $to_nlines);
1296 @from_text = split(' ', $ranges);
1297 for (my $i = 0; $i < @from_text; ++$i) {
1298 ($from_start[$i], $from_nlines[$i]) =
1299 (split(',', substr($from_text[$i], 1)), 0);
1302 $to_text = pop @from_text;
1303 $to_start = pop @from_start;
1304 $to_nlines = pop @from_nlines;
1306 $line = "<span class=\"chunk_info\">$prefix ";
1307 for (my $i = 0; $i < @from_text; ++$i) {
1308 if ($from->{'href'}[$i]) {
1309 $line .= $cgi->a({-href
=>"$from->{'href'}[$i]#l$from_start[$i]",
1310 -class=>"list"}, $from_text[$i]);
1312 $line .= $from_text[$i];
1316 if ($to->{'href'}) {
1317 $line .= $cgi->a({-href
=>"$to->{'href'}#l$to_start",
1318 -class=>"list"}, $to_text);
1322 $line .= " $prefix</span>" .
1323 "<span class=\"section\">" . esc_html
($section, -nbsp
=>1) . "</span>";
1324 return "<div class=\"diff$diff_class\">$line</div>\n";
1326 return "<div class=\"diff$diff_class\">" . esc_html
($line, -nbsp
=>1) . "</div>\n";
1329 # Generates undef or something like "_snapshot_" or "snapshot (_tbz2_ _zip_)",
1330 # linked. Pass the hash of the tree/commit to snapshot.
1331 sub format_snapshot_links
{
1333 my @snapshot_fmts = gitweb_check_feature
('snapshot');
1334 @snapshot_fmts = filter_snapshot_fmts
(@snapshot_fmts);
1335 my $num_fmts = @snapshot_fmts;
1336 if ($num_fmts > 1) {
1337 # A parenthesized list of links bearing format names.
1338 # e.g. "snapshot (_tar.gz_ _zip_)"
1339 return "snapshot (" . join(' ', map
1346 }, $known_snapshot_formats{$_}{'display'})
1347 , @snapshot_fmts) . ")";
1348 } elsif ($num_fmts == 1) {
1349 # A single "snapshot" link whose tooltip bears the format name.
1351 my ($fmt) = @snapshot_fmts;
1357 snapshot_format
=>$fmt
1359 -title
=> "in format: $known_snapshot_formats{$fmt}{'display'}"
1361 } else { # $num_fmts == 0
1366 ## ----------------------------------------------------------------------
1367 ## git utility subroutines, invoking git commands
1369 # returns path to the core git executable and the --git-dir parameter as list
1371 return $GIT, '--git-dir='.$git_dir;
1374 # returns path to the core git executable and the --git-dir parameter as string
1376 return join(' ', git_cmd
());
1379 # get HEAD ref of given project as hash
1380 sub git_get_head_hash
{
1381 my $project = shift;
1382 my $o_git_dir = $git_dir;
1384 $git_dir = "$projectroot/$project";
1385 if (open my $fd, "-|", git_cmd
(), "rev-parse", "--verify", "HEAD") {
1388 if (defined $head && $head =~ /^([0-9a-fA-F]{40})$/) {
1392 if (defined $o_git_dir) {
1393 $git_dir = $o_git_dir;
1398 # get type of given object
1402 open my $fd, "-|", git_cmd
(), "cat-file", '-t', $hash or return;
1404 close $fd or return;
1409 sub git_get_project_config
{
1410 my ($key, $type) = @_;
1412 return unless ($key);
1413 $key =~ s/^gitweb\.//;
1414 return if ($key =~ m/\W/);
1416 my @x = (git_cmd
(), 'config');
1417 if (defined $type) { push @x, $type; }
1419 push @x, "gitweb.$key";
1425 # get hash of given path at given ref
1426 sub git_get_hash_by_path
{
1428 my $path = shift || return undef;
1433 open my $fd, "-|", git_cmd
(), "ls-tree", $base, "--", $path
1434 or die_error
(undef, "Open git-ls-tree failed");
1436 close $fd or return undef;
1438 if (!defined $line) {
1439 # there is no tree or hash given by $path at $base
1443 #'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'
1444 $line =~ m/^([0-9]+) (.+) ([0-9a-fA-F]{40})\t/;
1445 if (defined $type && $type ne $2) {
1446 # type doesn't match
1452 # get path of entry with given hash at given tree-ish (ref)
1453 # used to get 'from' filename for combined diff (merge commit) for renames
1454 sub git_get_path_by_hash
{
1455 my $base = shift || return;
1456 my $hash = shift || return;
1460 open my $fd, "-|", git_cmd
(), "ls-tree", '-r', '-t', '-z', $base
1462 while (my $line = <$fd>) {
1465 #'040000 tree 595596a6a9117ddba9fe379b6b012b558bac8423 gitweb'
1466 #'100644 blob e02e90f0429be0d2a69b76571101f20b8f75530f gitweb/README'
1467 if ($line =~ m/(?:[0-9]+) (?:.+) $hash\t(.+)$/) {
1476 ## ......................................................................
1477 ## git utility functions, directly accessing git repository
1479 sub git_get_project_description
{
1482 open my $fd, "$projectroot/$path/description" or return undef;
1485 if (defined $descr) {
1491 sub git_get_project_url_list
{
1494 open my $fd, "$projectroot/$path/cloneurl" or return;
1495 my @git_project_url_list = map { chomp; $_ } <$fd>;
1498 return wantarray ?
@git_project_url_list : \
@git_project_url_list;
1501 sub git_get_projects_list
{
1506 $filter =~ s/\.git$//;
1508 my ($check_forks) = gitweb_check_feature
('forks');
1510 if (-d
$projects_list) {
1511 # search in directory
1512 my $dir = $projects_list . ($filter ?
"/$filter" : '');
1513 # remove the trailing "/"
1515 my $pfxlen = length("$dir");
1516 my $pfxdepth = ($dir =~ tr!/!!);
1519 follow_fast
=> 1, # follow symbolic links
1520 follow_skip
=> 2, # ignore duplicates
1521 dangling_symlinks
=> 0, # ignore dangling symlinks, silently
1523 # skip project-list toplevel, if we get it.
1524 return if (m!^[/.]$!);
1525 # only directories can be git repositories
1526 return unless (-d
$_);
1527 # don't traverse too deep (Find is super slow on os x)
1528 if (($File::Find
::name
=~ tr!/!!) - $pfxdepth > $project_maxdepth) {
1529 $File::Find
::prune
= 1;
1533 my $subdir = substr($File::Find
::name
, $pfxlen + 1);
1534 # we check related file in $projectroot
1535 if ($check_forks and $subdir =~ m
#/.#) {
1536 $File::Find
::prune
= 1;
1537 } elsif (check_export_ok
("$projectroot/$filter/$subdir")) {
1538 push @list, { path
=> ($filter ?
"$filter/" : '') . $subdir };
1539 $File::Find
::prune
= 1;
1544 } elsif (-f
$projects_list) {
1545 # read from file(url-encoded):
1546 # 'git%2Fgit.git Linus+Torvalds'
1547 # 'libs%2Fklibc%2Fklibc.git H.+Peter+Anvin'
1548 # 'linux%2Fhotplug%2Fudev.git Greg+Kroah-Hartman'
1550 open my ($fd), $projects_list or return;
1552 while (my $line = <$fd>) {
1554 my ($path, $owner) = split ' ', $line;
1555 $path = unescape
($path);
1556 $owner = unescape
($owner);
1557 if (!defined $path) {
1560 if ($filter ne '') {
1561 # looking for forks;
1562 my $pfx = substr($path, 0, length($filter));
1563 if ($pfx ne $filter) {
1566 my $sfx = substr($path, length($filter));
1567 if ($sfx !~ /^\/.*\
.git
$/) {
1570 } elsif ($check_forks) {
1572 foreach my $filter (keys %paths) {
1573 # looking for forks;
1574 my $pfx = substr($path, 0, length($filter));
1575 if ($pfx ne $filter) {
1578 my $sfx = substr($path, length($filter));
1579 if ($sfx !~ /^\/.*\
.git
$/) {
1582 # is a fork, don't include it in
1587 if (check_export_ok
("$projectroot/$path")) {
1590 owner
=> to_utf8
($owner),
1593 (my $forks_path = $path) =~ s/\.git$//;
1594 $paths{$forks_path}++;
1602 our $gitweb_project_owner = undef;
1603 sub git_get_project_list_from_file
{
1605 return if (defined $gitweb_project_owner);
1607 $gitweb_project_owner = {};
1608 # read from file (url-encoded):
1609 # 'git%2Fgit.git Linus+Torvalds'
1610 # 'libs%2Fklibc%2Fklibc.git H.+Peter+Anvin'
1611 # 'linux%2Fhotplug%2Fudev.git Greg+Kroah-Hartman'
1612 if (-f
$projects_list) {
1613 open (my $fd , $projects_list);
1614 while (my $line = <$fd>) {
1616 my ($pr, $ow) = split ' ', $line;
1617 $pr = unescape
($pr);
1618 $ow = unescape
($ow);
1619 $gitweb_project_owner->{$pr} = to_utf8
($ow);
1625 sub git_get_project_owner
{
1626 my $project = shift;
1629 return undef unless $project;
1631 if (!defined $gitweb_project_owner) {
1632 git_get_project_list_from_file
();
1635 if (exists $gitweb_project_owner->{$project}) {
1636 $owner = $gitweb_project_owner->{$project};
1638 if (!defined $owner) {
1639 $owner = get_file_owner
("$projectroot/$project");
1645 sub git_get_last_activity
{
1649 $git_dir = "$projectroot/$path";
1650 open($fd, "-|", git_cmd
(), 'for-each-ref',
1651 '--format=%(committer)',
1652 '--sort=-committerdate',
1654 'refs/heads') or return;
1655 my $most_recent = <$fd>;
1656 close $fd or return;
1657 if (defined $most_recent &&
1658 $most_recent =~ / (\d+) [-+][01]\d\d\d$/) {
1660 my $age = time - $timestamp;
1661 return ($age, age_string
($age));
1663 return (undef, undef);
1666 sub git_get_references
{
1667 my $type = shift || "";
1669 # 5dc01c595e6c6ec9ccda4f6f69c131c0dd945f8c refs/tags/v2.6.11
1670 # c39ae07f393806ccf406ef966e9a15afc43cc36a refs/tags/v2.6.11^{}
1671 open my $fd, "-|", git_cmd
(), "show-ref", "--dereference",
1672 ($type ?
("--", "refs/$type") : ()) # use -- <pattern> if $type
1675 while (my $line = <$fd>) {
1677 if ($line =~ m!^([0-9a-fA-F]{40})\srefs/($type/?[^^]+)!) {
1678 if (defined $refs{$1}) {
1679 push @
{$refs{$1}}, $2;
1685 close $fd or return;
1689 sub git_get_rev_name_tags
{
1690 my $hash = shift || return undef;
1692 open my $fd, "-|", git_cmd
(), "name-rev", "--tags", $hash
1694 my $name_rev = <$fd>;
1697 if ($name_rev =~ m
|^$hash tags
/(.*)$|) {
1700 # catches also '$hash undefined' output
1705 ## ----------------------------------------------------------------------
1706 ## parse to hash functions
1710 my $tz = shift || "-0000";
1713 my @months = ("Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec");
1714 my @days = ("Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat");
1715 my ($sec, $min, $hour, $mday, $mon, $year, $wday, $yday) = gmtime($epoch);
1716 $date{'hour'} = $hour;
1717 $date{'minute'} = $min;
1718 $date{'mday'} = $mday;
1719 $date{'day'} = $days[$wday];
1720 $date{'month'} = $months[$mon];
1721 $date{'rfc2822'} = sprintf "%s, %d %s %4d %02d:%02d:%02d +0000",
1722 $days[$wday], $mday, $months[$mon], 1900+$year, $hour ,$min, $sec;
1723 $date{'mday-time'} = sprintf "%d %s %02d:%02d",
1724 $mday, $months[$mon], $hour ,$min;
1725 $date{'iso-8601'} = sprintf "%04d-%02d-%02dT%02d:%02d:%02dZ",
1726 1900+$year, $mon, $mday, $hour ,$min, $sec;
1728 $tz =~ m/^([+\-][0-9][0-9])([0-9][0-9])$/;
1729 my $local = $epoch + ((int $1 + ($2/60)) * 3600);
1730 ($sec, $min, $hour, $mday, $mon, $year, $wday, $yday) = gmtime($local);
1731 $date{'hour_local'} = $hour;
1732 $date{'minute_local'} = $min;
1733 $date{'tz_local'} = $tz;
1734 $date{'iso-tz'} = sprintf("%04d-%02d-%02d %02d:%02d:%02d %s",
1735 1900+$year, $mon+1, $mday,
1736 $hour, $min, $sec, $tz);
1745 open my $fd, "-|", git_cmd
(), "cat-file", "tag", $tag_id or return;
1746 $tag{'id'} = $tag_id;
1747 while (my $line = <$fd>) {
1749 if ($line =~ m/^object ([0-9a-fA-F]{40})$/) {
1750 $tag{'object'} = $1;
1751 } elsif ($line =~ m/^type (.+)$/) {
1753 } elsif ($line =~ m/^tag (.+)$/) {
1755 } elsif ($line =~ m/^tagger (.*) ([0-9]+) (.*)$/) {
1756 $tag{'author'} = $1;
1759 } elsif ($line =~ m/--BEGIN/) {
1760 push @comment, $line;
1762 } elsif ($line eq "") {
1766 push @comment, <$fd>;
1767 $tag{'comment'} = \
@comment;
1768 close $fd or return;
1769 if (!defined $tag{'name'}) {
1775 sub parse_commit_text
{
1776 my ($commit_text, $withparents) = @_;
1777 my @commit_lines = split '\n', $commit_text;
1780 pop @commit_lines; # Remove '\0'
1782 if (! @commit_lines) {
1786 my $header = shift @commit_lines;
1787 if ($header !~ m/^[0-9a-fA-F]{40}/) {
1790 ($co{'id'}, my @parents) = split ' ', $header;
1791 while (my $line = shift @commit_lines) {
1792 last if $line eq "\n";
1793 if ($line =~ m/^tree ([0-9a-fA-F]{40})$/) {
1795 } elsif ((!defined $withparents) && ($line =~ m/^parent ([0-9a-fA-F]{40})$/)) {
1797 } elsif ($line =~ m/^author (.*) ([0-9]+) (.*)$/) {
1799 $co{'author_epoch'} = $2;
1800 $co{'author_tz'} = $3;
1801 if ($co{'author'} =~ m/^([^<]+) <([^>]*)>/) {
1802 $co{'author_name'} = $1;
1803 $co{'author_email'} = $2;
1805 $co{'author_name'} = $co{'author'};
1807 } elsif ($line =~ m/^committer (.*) ([0-9]+) (.*)$/) {
1808 $co{'committer'} = $1;
1809 $co{'committer_epoch'} = $2;
1810 $co{'committer_tz'} = $3;
1811 $co{'committer_name'} = $co{'committer'};
1812 if ($co{'committer'} =~ m/^([^<]+) <([^>]*)>/) {
1813 $co{'committer_name'} = $1;
1814 $co{'committer_email'} = $2;
1816 $co{'committer_name'} = $co{'committer'};
1820 if (!defined $co{'tree'}) {
1823 $co{'parents'} = \
@parents;
1824 $co{'parent'} = $parents[0];
1826 foreach my $title (@commit_lines) {
1829 $co{'title'} = chop_str
($title, 80, 5);
1830 # remove leading stuff of merges to make the interesting part visible
1831 if (length($title) > 50) {
1832 $title =~ s/^Automatic //;
1833 $title =~ s/^merge (of|with) /Merge ... /i;
1834 if (length($title) > 50) {
1835 $title =~ s/(http|rsync):\/\///;
1837 if (length($title) > 50) {
1838 $title =~ s/(master|www|rsync)\.//;
1840 if (length($title) > 50) {
1841 $title =~ s/kernel.org:?//;
1843 if (length($title) > 50) {
1844 $title =~ s/\/pub\/scm//;
1847 $co{'title_short'} = chop_str
($title, 50, 5);
1851 if ($co{'title'} eq "") {
1852 $co{'title'} = $co{'title_short'} = '(no commit message)';
1854 # remove added spaces
1855 foreach my $line (@commit_lines) {
1858 $co{'comment'} = \
@commit_lines;
1860 my $age = time - $co{'committer_epoch'};
1862 $co{'age_string'} = age_string
($age);
1863 my ($sec, $min, $hour, $mday, $mon, $year, $wday, $yday) = gmtime($co{'committer_epoch'});
1864 if ($age > 60*60*24*7*2) {
1865 $co{'age_string_date'} = sprintf "%4i-%02u-%02i", 1900 + $year, $mon+1, $mday;
1866 $co{'age_string_age'} = $co{'age_string'};
1868 $co{'age_string_date'} = $co{'age_string'};
1869 $co{'age_string_age'} = sprintf "%4i-%02u-%02i", 1900 + $year, $mon+1, $mday;
1875 my ($commit_id) = @_;
1880 open my $fd, "-|", git_cmd
(), "rev-list",
1886 or die_error
(undef, "Open git-rev-list failed");
1887 %co = parse_commit_text
(<$fd>, 1);
1894 my ($commit_id, $maxcount, $skip, $arg, $filename) = @_;
1902 open my $fd, "-|", git_cmd
(), "rev-list",
1904 ($arg ?
($arg) : ()),
1905 ("--max-count=" . $maxcount),
1906 ("--skip=" . $skip),
1910 ($filename ?
($filename) : ())
1911 or die_error
(undef, "Open git-rev-list failed");
1912 while (my $line = <$fd>) {
1913 my %co = parse_commit_text
($line);
1918 return wantarray ?
@cos : \
@cos;
1921 # parse ref from ref_file, given by ref_id, with given type
1923 my $ref_file = shift;
1925 my $type = shift || git_get_type
($ref_id);
1928 $ref_item{'type'} = $type;
1929 $ref_item{'id'} = $ref_id;
1930 $ref_item{'epoch'} = 0;
1931 $ref_item{'age'} = "unknown";
1932 if ($type eq "tag") {
1933 my %tag = parse_tag
($ref_id);
1934 $ref_item{'comment'} = $tag{'comment'};
1935 if ($tag{'type'} eq "commit") {
1936 my %co = parse_commit
($tag{'object'});
1937 $ref_item{'epoch'} = $co{'committer_epoch'};
1938 $ref_item{'age'} = $co{'age_string'};
1939 } elsif (defined($tag{'epoch'})) {
1940 my $age = time - $tag{'epoch'};
1941 $ref_item{'epoch'} = $tag{'epoch'};
1942 $ref_item{'age'} = age_string
($age);
1944 $ref_item{'reftype'} = $tag{'type'};
1945 $ref_item{'name'} = $tag{'name'};
1946 $ref_item{'refid'} = $tag{'object'};
1947 } elsif ($type eq "commit"){
1948 my %co = parse_commit
($ref_id);
1949 $ref_item{'reftype'} = "commit";
1950 $ref_item{'name'} = $ref_file;
1951 $ref_item{'title'} = $co{'title'};
1952 $ref_item{'refid'} = $ref_id;
1953 $ref_item{'epoch'} = $co{'committer_epoch'};
1954 $ref_item{'age'} = $co{'age_string'};
1956 $ref_item{'reftype'} = $type;
1957 $ref_item{'name'} = $ref_file;
1958 $ref_item{'refid'} = $ref_id;
1964 # parse line of git-diff-tree "raw" output
1965 sub parse_difftree_raw_line
{
1969 # ':100644 100644 03b218260e99b78c6df0ed378e59ed9205ccc96d 3b93d5e7cc7f7dd4ebed13a5cc1a4ad976fc94d8 M ls-files.c'
1970 # ':100644 100644 7f9281985086971d3877aca27704f2aaf9c448ce bc190ebc71bbd923f2b728e505408f5e54bd073a M rev-tree.c'
1971 if ($line =~ m/^:([0-7]{6}) ([0-7]{6}) ([0-9a-fA-F]{40}) ([0-9a-fA-F]{40}) (.)([0-9]{0,3})\t(.*)$/) {
1972 $res{'from_mode'} = $1;
1973 $res{'to_mode'} = $2;
1974 $res{'from_id'} = $3;
1976 $res{'status'} = $5;
1977 $res{'similarity'} = $6;
1978 if ($res{'status'} eq 'R' || $res{'status'} eq 'C') { # renamed or copied
1979 ($res{'from_file'}, $res{'to_file'}) = map { unquote
($_) } split("\t", $7);
1981 $res{'file'} = unquote
($7);
1984 # '::100755 100755 100755 60e79ca1b01bc8b057abe17ddab484699a7f5fdb 94067cc5f73388f33722d52ae02f44692bc07490 94067cc5f73388f33722d52ae02f44692bc07490 MR git-gui/git-gui.sh'
1985 # combined diff (for merge commit)
1986 elsif ($line =~ s/^(::+)((?:[0-7]{6} )+)((?:[0-9a-fA-F]{40} )+)([a-zA-Z]+)\t(.*)$//) {
1987 $res{'nparents'} = length($1);
1988 $res{'from_mode'} = [ split(' ', $2) ];
1989 $res{'to_mode'} = pop @
{$res{'from_mode'}};
1990 $res{'from_id'} = [ split(' ', $3) ];
1991 $res{'to_id'} = pop @
{$res{'from_id'}};
1992 $res{'status'} = [ split('', $4) ];
1993 $res{'to_file'} = unquote
($5);
1995 # 'c512b523472485aef4fff9e57b229d9d243c967f'
1996 elsif ($line =~ m/^([0-9a-fA-F]{40})$/) {
1997 $res{'commit'} = $1;
2000 return wantarray ?
%res : \
%res;
2003 # parse line of git-ls-tree output
2004 sub parse_ls_tree_line
($;%) {
2009 #'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'
2010 $line =~ m/^([0-9]+) (.+) ([0-9a-fA-F]{40})\t(.+)$/s;
2018 $res{'name'} = unquote
($4);
2021 return wantarray ?
%res : \
%res;
2024 # generates _two_ hashes, references to which are passed as 2 and 3 argument
2025 sub parse_from_to_diffinfo
{
2026 my ($diffinfo, $from, $to, @parents) = @_;
2028 if ($diffinfo->{'nparents'}) {
2030 $from->{'file'} = [];
2031 $from->{'href'} = [];
2032 fill_from_file_info
($diffinfo, @parents)
2033 unless exists $diffinfo->{'from_file'};
2034 for (my $i = 0; $i < $diffinfo->{'nparents'}; $i++) {
2035 $from->{'file'}[$i] = $diffinfo->{'from_file'}[$i] || $diffinfo->{'to_file'};
2036 if ($diffinfo->{'status'}[$i] ne "A") { # not new (added) file
2037 $from->{'href'}[$i] = href
(action
=>"blob",
2038 hash_base
=>$parents[$i],
2039 hash
=>$diffinfo->{'from_id'}[$i],
2040 file_name
=>$from->{'file'}[$i]);
2042 $from->{'href'}[$i] = undef;
2046 $from->{'file'} = $diffinfo->{'from_file'} || $diffinfo->{'file'};
2047 if ($diffinfo->{'status'} ne "A") { # not new (added) file
2048 $from->{'href'} = href
(action
=>"blob", hash_base
=>$hash_parent,
2049 hash
=>$diffinfo->{'from_id'},
2050 file_name
=>$from->{'file'});
2052 delete $from->{'href'};
2056 $to->{'file'} = $diffinfo->{'to_file'} || $diffinfo->{'file'};
2057 if (!is_deleted
($diffinfo)) { # file exists in result
2058 $to->{'href'} = href
(action
=>"blob", hash_base
=>$hash,
2059 hash
=>$diffinfo->{'to_id'},
2060 file_name
=>$to->{'file'});
2062 delete $to->{'href'};
2066 ## ......................................................................
2067 ## parse to array of hashes functions
2069 sub git_get_heads_list
{
2073 open my $fd, '-|', git_cmd
(), 'for-each-ref',
2074 ($limit ?
'--count='.($limit+1) : ()), '--sort=-committerdate',
2075 '--format=%(objectname) %(refname) %(subject)%00%(committer)',
2078 while (my $line = <$fd>) {
2082 my ($refinfo, $committerinfo) = split(/\0/, $line);
2083 my ($hash, $name, $title) = split(' ', $refinfo, 3);
2084 my ($committer, $epoch, $tz) =
2085 ($committerinfo =~ /^(.*) ([0-9]+) (.*)$/);
2086 $name =~ s!^refs/heads/!!;
2088 $ref_item{'name'} = $name;
2089 $ref_item{'id'} = $hash;
2090 $ref_item{'title'} = $title || '(no commit message)';
2091 $ref_item{'epoch'} = $epoch;
2093 $ref_item{'age'} = age_string
(time - $ref_item{'epoch'});
2095 $ref_item{'age'} = "unknown";
2098 push @headslist, \
%ref_item;
2102 return wantarray ?
@headslist : \
@headslist;
2105 sub git_get_tags_list
{
2109 open my $fd, '-|', git_cmd
(), 'for-each-ref',
2110 ($limit ?
'--count='.($limit+1) : ()), '--sort=-creatordate',
2111 '--format=%(objectname) %(objecttype) %(refname) '.
2112 '%(*objectname) %(*objecttype) %(subject)%00%(creator)',
2115 while (my $line = <$fd>) {
2119 my ($refinfo, $creatorinfo) = split(/\0/, $line);
2120 my ($id, $type, $name, $refid, $reftype, $title) = split(' ', $refinfo, 6);
2121 my ($creator, $epoch, $tz) =
2122 ($creatorinfo =~ /^(.*) ([0-9]+) (.*)$/);
2123 $name =~ s!^refs/tags/!!;
2125 $ref_item{'type'} = $type;
2126 $ref_item{'id'} = $id;
2127 $ref_item{'name'} = $name;
2128 if ($type eq "tag") {
2129 $ref_item{'subject'} = $title;
2130 $ref_item{'reftype'} = $reftype;
2131 $ref_item{'refid'} = $refid;
2133 $ref_item{'reftype'} = $type;
2134 $ref_item{'refid'} = $id;
2137 if ($type eq "tag" || $type eq "commit") {
2138 $ref_item{'epoch'} = $epoch;
2140 $ref_item{'age'} = age_string
(time - $ref_item{'epoch'});
2142 $ref_item{'age'} = "unknown";
2146 push @tagslist, \
%ref_item;
2150 return wantarray ?
@tagslist : \
@tagslist;
2153 ## ----------------------------------------------------------------------
2154 ## filesystem-related functions
2156 sub get_file_owner
{
2159 my ($dev, $ino, $mode, $nlink, $st_uid, $st_gid, $rdev, $size) = stat($path);
2160 my ($name, $passwd, $uid, $gid, $quota, $comment, $gcos, $dir, $shell) = getpwuid($st_uid);
2161 if (!defined $gcos) {
2165 $owner =~ s/[,;].*$//;
2166 return to_utf8
($owner);
2169 ## ......................................................................
2170 ## mimetype related functions
2172 sub mimetype_guess_file
{
2173 my $filename = shift;
2174 my $mimemap = shift;
2175 -r
$mimemap or return undef;
2178 open(MIME
, $mimemap) or return undef;
2180 next if m/^#/; # skip comments
2181 my ($mime, $exts) = split(/\t+/);
2182 if (defined $exts) {
2183 my @exts = split(/\s+/, $exts);
2184 foreach my $ext (@exts) {
2185 $mimemap{$ext} = $mime;
2191 $filename =~ /\.([^.]*)$/;
2192 return $mimemap{$1};
2195 sub mimetype_guess
{
2196 my $filename = shift;
2198 $filename =~ /\./ or return undef;
2200 if ($mimetypes_file) {
2201 my $file = $mimetypes_file;
2202 if ($file !~ m!^/!) { # if it is relative path
2203 # it is relative to project
2204 $file = "$projectroot/$project/$file";
2206 $mime = mimetype_guess_file
($filename, $file);
2208 $mime ||= mimetype_guess_file
($filename, '/etc/mime.types');
2214 my $filename = shift;
2217 my $mime = mimetype_guess
($filename);
2218 $mime and return $mime;
2222 return $default_blob_plain_mimetype unless $fd;
2225 return 'text/plain' .
2226 ($default_text_plain_charset ?
'; charset='.$default_text_plain_charset : '');
2227 } elsif (! $filename) {
2228 return 'application/octet-stream';
2229 } elsif ($filename =~ m/\.png$/i) {
2231 } elsif ($filename =~ m/\.gif$/i) {
2233 } elsif ($filename =~ m/\.jpe?g$/i) {
2234 return 'image/jpeg';
2236 return 'application/octet-stream';
2240 ## ======================================================================
2241 ## functions printing HTML: header, footer, error page
2243 sub git_header_html
{
2244 my $status = shift || "200 OK";
2245 my $expires = shift;
2247 my $title = "$site_name";
2248 if (defined $project) {
2249 $title .= " - " . to_utf8
($project);
2250 if (defined $action) {
2251 $title .= "/$action";
2252 if (defined $file_name) {
2253 $title .= " - " . esc_path
($file_name);
2254 if ($action eq "tree" && $file_name !~ m
|/$|) {
2261 # require explicit support from the UA if we are to send the page as
2262 # 'application/xhtml+xml', otherwise send it as plain old 'text/html'.
2263 # we have to do this because MSIE sometimes globs '*/*', pretending to
2264 # support xhtml+xml but choking when it gets what it asked for.
2265 if (defined $cgi->http('HTTP_ACCEPT') &&
2266 $cgi->http('HTTP_ACCEPT') =~ m/(,|;|\s|^)application\/xhtml\
+xml
(,|;|\s
|$)/ &&
2267 $cgi->Accept('application/xhtml+xml') != 0) {
2268 $content_type = 'application/xhtml+xml';
2270 $content_type = 'text/html';
2272 print $cgi->header(-type
=>$content_type, -charset
=> 'utf-8',
2273 -status
=> $status, -expires
=> $expires);
2274 my $mod_perl_version = $ENV{'MOD_PERL'} ?
" $ENV{'MOD_PERL'}" : '';
2276 <?xml version="1.0" encoding="utf-8"?>
2277 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2278 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" lang="en-US">
2279 <!-- git web interface version $version, (C) 2005-2006, Kay Sievers <kay.sievers\@vrfy.org>, Christian Gierke -->
2280 <!-- git core binaries version $git_version -->
2282 <meta http-equiv="content-type" content="$content_type; charset=utf-8"/>
2283 <meta name="generator" content="gitweb/$version git/$git_version$mod_perl_version"/>
2284 <meta name="robots" content="index, nofollow"/>
2285 <title>$title</title>
2287 # print out each stylesheet that exist
2288 if (defined $stylesheet) {
2289 #provides backwards capability for those people who define style sheet in a config file
2290 print '<link rel="stylesheet" type="text/css" href="'.$stylesheet.'"/>'."\n";
2292 foreach my $stylesheet (@stylesheets) {
2293 next unless $stylesheet;
2294 print '<link rel="stylesheet" type="text/css" href="'.$stylesheet.'"/>'."\n";
2297 if (defined $project) {
2298 printf('<link rel="alternate" title="%s log RSS feed" '.
2299 'href="%s" type="application/rss+xml" />'."\n",
2300 esc_param
($project), href
(action
=>"rss"));
2301 printf('<link rel="alternate" title="%s log RSS feed (no merges)" '.
2302 'href="%s" type="application/rss+xml" />'."\n",
2303 esc_param
($project), href
(action
=>"rss",
2304 extra_options
=>"--no-merges"));
2305 printf('<link rel="alternate" title="%s log Atom feed" '.
2306 'href="%s" type="application/atom+xml" />'."\n",
2307 esc_param
($project), href
(action
=>"atom"));
2308 printf('<link rel="alternate" title="%s log Atom feed (no merges)" '.
2309 'href="%s" type="application/atom+xml" />'."\n",
2310 esc_param
($project), href
(action
=>"atom",
2311 extra_options
=>"--no-merges"));
2313 printf('<link rel="alternate" title="%s projects list" '.
2314 'href="%s" type="text/plain; charset=utf-8"/>'."\n",
2315 $site_name, href
(project
=>undef, action
=>"project_index"));
2316 printf('<link rel="alternate" title="%s projects feeds" '.
2317 'href="%s" type="text/x-opml"/>'."\n",
2318 $site_name, href
(project
=>undef, action
=>"opml"));
2320 if (defined $favicon) {
2321 print qq(<link rel
="shortcut icon" href
="$favicon" type
="image/png"/>\n);
2327 if (-f
$site_header) {
2328 open (my $fd, $site_header);
2333 print "<div class=\"page_header\">\n" .
2334 $cgi->a({-href
=> esc_url
($logo_url),
2335 -title
=> $logo_label},
2336 qq(<img src
="$logo" width
="72" height
="27" alt
="git" class="logo"/>));
2337 print $cgi->a({-href
=> esc_url
($home_link)}, $home_link_str) . " / ";
2338 if (defined $project) {
2339 print $cgi->a({-href
=> href
(action
=>"summary")}, esc_html
($project));
2340 if (defined $action) {
2347 my ($have_search) = gitweb_check_feature
('search');
2348 if ((defined $project) && ($have_search)) {
2349 if (!defined $searchtext) {
2353 if (defined $hash_base) {
2354 $search_hash = $hash_base;
2355 } elsif (defined $hash) {
2356 $search_hash = $hash;
2358 $search_hash = "HEAD";
2360 my $action = $my_uri;
2361 my ($use_pathinfo) = gitweb_check_feature
('pathinfo');
2362 if ($use_pathinfo) {
2363 $action .= "/$project";
2365 $cgi->param("p", $project);
2367 $cgi->param("a", "search");
2368 $cgi->param("h", $search_hash);
2369 print $cgi->startform(-method
=> "get", -action
=> $action) .
2370 "<div class=\"search\">\n" .
2371 (!$use_pathinfo && $cgi->hidden(-name
=> "p") . "\n") .
2372 $cgi->hidden(-name
=> "a") . "\n" .
2373 $cgi->hidden(-name
=> "h") . "\n" .
2374 $cgi->popup_menu(-name
=> 'st', -default => 'commit',
2375 -values => ['commit', 'grep', 'author', 'committer', 'pickaxe']) .
2376 $cgi->sup($cgi->a({-href
=> href
(action
=>"search_help")}, "?")) .
2378 $cgi->textfield(-name
=> "s", -value
=> $searchtext) . "\n" .
2380 $cgi->end_form() . "\n";
2384 sub git_footer_html
{
2385 print "<div class=\"page_footer\">\n";
2386 if (defined $project) {
2387 my $descr = git_get_project_description
($project);
2388 if (defined $descr) {
2389 print "<div class=\"page_footer_text\">" . esc_html
($descr) . "</div>\n";
2391 print $cgi->a({-href
=> href
(action
=>"rss"),
2392 -class => "rss_logo"}, "RSS") . " ";
2393 print $cgi->a({-href
=> href
(action
=>"atom"),
2394 -class => "rss_logo"}, "Atom") . "\n";
2396 print $cgi->a({-href
=> href
(project
=>undef, action
=>"opml"),
2397 -class => "rss_logo"}, "OPML") . " ";
2398 print $cgi->a({-href
=> href
(project
=>undef, action
=>"project_index"),
2399 -class => "rss_logo"}, "TXT") . "\n";
2403 if (-f
$site_footer) {
2404 open (my $fd, $site_footer);
2414 my $status = shift || "403 Forbidden";
2415 my $error = shift || "Malformed query, file missing or permission denied";
2417 git_header_html
($status);
2419 <div class="page_body">
2429 ## ----------------------------------------------------------------------
2430 ## functions printing or outputting HTML: navigation
2432 sub git_print_page_nav
{
2433 my ($current, $suppress, $head, $treehead, $treebase, $extra) = @_;
2434 $extra = '' if !defined $extra; # pager or formats
2436 my @navs = qw(summary shortlog log commit commitdiff tree);
2438 @navs = grep { $_ ne $suppress } @navs;
2441 my %arg = map { $_ => {action
=>$_} } @navs;
2442 if (defined $head) {
2443 for (qw(commit commitdiff)) {
2444 $arg{$_}{'hash'} = $head;
2446 if ($current =~ m/^(tree | log | shortlog | commit | commitdiff | search)$/x) {
2447 for (qw(shortlog log)) {
2448 $arg{$_}{'hash'} = $head;
2452 $arg{'tree'}{'hash'} = $treehead if defined $treehead;
2453 $arg{'tree'}{'hash_base'} = $treebase if defined $treebase;
2455 print "<div class=\"page_nav\">\n" .
2457 map { $_ eq $current ?
2458 $_ : $cgi->a({-href
=> href
(%{$arg{$_}})}, "$_")
2460 print "<br/>\n$extra<br/>\n" .
2464 sub format_paging_nav
{
2465 my ($action, $hash, $head, $page, $nrevs) = @_;
2469 if ($hash ne $head || $page) {
2470 $paging_nav .= $cgi->a({-href
=> href
(action
=>$action)}, "HEAD");
2472 $paging_nav .= "HEAD";
2476 $paging_nav .= " ⋅ " .
2477 $cgi->a({-href
=> href
(action
=>$action, hash
=>$hash, page
=>$page-1),
2478 -accesskey
=> "p", -title
=> "Alt-p"}, "prev");
2480 $paging_nav .= " ⋅ prev";
2483 if ($nrevs >= (100 * ($page+1)-1)) {
2484 $paging_nav .= " ⋅ " .
2485 $cgi->a({-href
=> href
(action
=>$action, hash
=>$hash, page
=>$page+1),
2486 -accesskey
=> "n", -title
=> "Alt-n"}, "next");
2488 $paging_nav .= " ⋅ next";
2494 ## ......................................................................
2495 ## functions printing or outputting HTML: div
2497 sub git_print_header_div
{
2498 my ($action, $title, $hash, $hash_base) = @_;
2501 $args{'action'} = $action;
2502 $args{'hash'} = $hash if $hash;
2503 $args{'hash_base'} = $hash_base if $hash_base;
2505 print "<div class=\"header\">\n" .
2506 $cgi->a({-href
=> href
(%args), -class => "title"},
2507 $title ?
$title : $action) .
2511 #sub git_print_authorship (\%) {
2512 sub git_print_authorship
{
2515 my %ad = parse_date
($co->{'author_epoch'}, $co->{'author_tz'});
2516 print "<div class=\"author_date\">" .
2517 esc_html
($co->{'author_name'}) .
2519 if ($ad{'hour_local'} < 6) {
2520 printf(" (<span class=\"atnight\">%02d:%02d</span> %s)",
2521 $ad{'hour_local'}, $ad{'minute_local'}, $ad{'tz_local'});
2523 printf(" (%02d:%02d %s)",
2524 $ad{'hour_local'}, $ad{'minute_local'}, $ad{'tz_local'});
2529 sub git_print_page_path
{
2535 print "<div class=\"page_path\">";
2536 print $cgi->a({-href
=> href
(action
=>"tree", hash_base
=>$hb),
2537 -title
=> 'tree root'}, to_utf8
("[$project]"));
2539 if (defined $name) {
2540 my @dirname = split '/', $name;
2541 my $basename = pop @dirname;
2544 foreach my $dir (@dirname) {
2545 $fullname .= ($fullname ?
'/' : '') . $dir;
2546 print $cgi->a({-href
=> href
(action
=>"tree", file_name
=>$fullname,
2548 -title
=> $fullname}, esc_path
($dir));
2551 if (defined $type && $type eq 'blob') {
2552 print $cgi->a({-href
=> href
(action
=>"blob_plain", file_name
=>$file_name,
2554 -title
=> $name}, esc_path
($basename));
2555 } elsif (defined $type && $type eq 'tree') {
2556 print $cgi->a({-href
=> href
(action
=>"tree", file_name
=>$file_name,
2558 -title
=> $name}, esc_path
($basename));
2561 print esc_path
($basename);
2564 print "<br/></div>\n";
2567 # sub git_print_log (\@;%) {
2568 sub git_print_log
($;%) {
2572 if ($opts{'-remove_title'}) {
2573 # remove title, i.e. first line of log
2576 # remove leading empty lines
2577 while (defined $log->[0] && $log->[0] eq "") {
2584 foreach my $line (@
$log) {
2585 if ($line =~ m/^ *(signed[ \-]off[ \-]by[ :]|acked[ \-]by[ :]|cc[ :])/i) {
2588 if (! $opts{'-remove_signoff'}) {
2589 print "<span class=\"signoff\">" . esc_html
($line) . "</span><br/>\n";
2592 # remove signoff lines
2599 # print only one empty line
2600 # do not print empty line after signoff
2602 next if ($empty || $signoff);
2608 print format_log_line_html
($line) . "<br/>\n";
2611 if ($opts{'-final_empty_line'}) {
2612 # end with single empty line
2613 print "<br/>\n" unless $empty;
2617 # return link target (what link points to)
2618 sub git_get_link_target
{
2623 open my $fd, "-|", git_cmd
(), "cat-file", "blob", $hash
2627 $link_target = <$fd>;
2632 return $link_target;
2635 # given link target, and the directory (basedir) the link is in,
2636 # return target of link relative to top directory (top tree);
2637 # return undef if it is not possible (including absolute links).
2638 sub normalize_link_target
{
2639 my ($link_target, $basedir, $hash_base) = @_;
2641 # we can normalize symlink target only if $hash_base is provided
2642 return unless $hash_base;
2644 # absolute symlinks (beginning with '/') cannot be normalized
2645 return if (substr($link_target, 0, 1) eq '/');
2647 # normalize link target to path from top (root) tree (dir)
2650 $path = $basedir . '/' . $link_target;
2652 # we are in top (root) tree (dir)
2653 $path = $link_target;
2656 # remove //, /./, and /../
2658 foreach my $part (split('/', $path)) {
2659 # discard '.' and ''
2660 next if (!$part || $part eq '.');
2662 if ($part eq '..') {
2666 # link leads outside repository (outside top dir)
2670 push @path_parts, $part;
2673 $path = join('/', @path_parts);
2678 # print tree entry (row of git_tree), but without encompassing <tr> element
2679 sub git_print_tree_entry
{
2680 my ($t, $basedir, $hash_base, $have_blame) = @_;
2683 $base_key{'hash_base'} = $hash_base if defined $hash_base;
2685 # The format of a table row is: mode list link. Where mode is
2686 # the mode of the entry, list is the name of the entry, an href,
2687 # and link is the action links of the entry.
2689 print "<td class=\"mode\">" . mode_str
($t->{'mode'}) . "</td>\n";
2690 if ($t->{'type'} eq "blob") {
2691 print "<td class=\"list\">" .
2692 $cgi->a({-href
=> href
(action
=>"blob", hash
=>$t->{'hash'},
2693 file_name
=>"$basedir$t->{'name'}", %base_key),
2694 -class => "list"}, esc_path
($t->{'name'}));
2695 if (S_ISLNK
(oct $t->{'mode'})) {
2696 my $link_target = git_get_link_target
($t->{'hash'});
2698 my $norm_target = normalize_link_target
($link_target, $basedir, $hash_base);
2699 if (defined $norm_target) {
2701 $cgi->a({-href
=> href
(action
=>"object", hash_base
=>$hash_base,
2702 file_name
=>$norm_target),
2703 -title
=> $norm_target}, esc_path
($link_target));
2705 print " -> " . esc_path
($link_target);
2710 print "<td class=\"link\">";
2711 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$t->{'hash'},
2712 file_name
=>"$basedir$t->{'name'}", %base_key)},
2716 $cgi->a({-href
=> href
(action
=>"blame", hash
=>$t->{'hash'},
2717 file_name
=>"$basedir$t->{'name'}", %base_key)},
2720 if (defined $hash_base) {
2722 $cgi->a({-href
=> href
(action
=>"history", hash_base
=>$hash_base,
2723 hash
=>$t->{'hash'}, file_name
=>"$basedir$t->{'name'}")},
2727 $cgi->a({-href
=> href
(action
=>"blob_plain", hash_base
=>$hash_base,
2728 file_name
=>"$basedir$t->{'name'}")},
2732 } elsif ($t->{'type'} eq "tree") {
2733 print "<td class=\"list\">";
2734 print $cgi->a({-href
=> href
(action
=>"tree", hash
=>$t->{'hash'},
2735 file_name
=>"$basedir$t->{'name'}", %base_key)},
2736 esc_path
($t->{'name'}));
2738 print "<td class=\"link\">";
2739 print $cgi->a({-href
=> href
(action
=>"tree", hash
=>$t->{'hash'},
2740 file_name
=>"$basedir$t->{'name'}", %base_key)},
2742 if (defined $hash_base) {
2744 $cgi->a({-href
=> href
(action
=>"history", hash_base
=>$hash_base,
2745 file_name
=>"$basedir$t->{'name'}")},
2750 # unknown object: we can only present history for it
2751 # (this includes 'commit' object, i.e. submodule support)
2752 print "<td class=\"list\">" .
2753 esc_path
($t->{'name'}) .
2755 print "<td class=\"link\">";
2756 if (defined $hash_base) {
2757 print $cgi->a({-href
=> href
(action
=>"history",
2758 hash_base
=>$hash_base,
2759 file_name
=>"$basedir$t->{'name'}")},
2766 ## ......................................................................
2767 ## functions printing large fragments of HTML
2769 sub fill_from_file_info
{
2770 my ($diff, @parents) = @_;
2772 $diff->{'from_file'} = [ ];
2773 $diff->{'from_file'}[$diff->{'nparents'} - 1] = undef;
2774 for (my $i = 0; $i < $diff->{'nparents'}; $i++) {
2775 if ($diff->{'status'}[$i] eq 'R' ||
2776 $diff->{'status'}[$i] eq 'C') {
2777 $diff->{'from_file'}[$i] =
2778 git_get_path_by_hash
($parents[$i], $diff->{'from_id'}[$i]);
2785 # parameters can be strings, or references to arrays of strings
2789 if (ref($a) eq "ARRAY" && ref($b) eq "ARRAY" && @
$a == @
$b) {
2790 for (my $i = 0; $i < @
$a; ++$i) {
2791 return 0 unless ($a->[$i] eq $b->[$i]);
2794 } elsif (!ref($a) && !ref($b)) {
2802 my $diffinfo = shift;
2804 return $diffinfo->{'to_id'} eq ('0' x
40);
2807 sub git_difftree_body
{
2808 my ($difftree, $hash, @parents) = @_;
2809 my ($parent) = $parents[0];
2810 my ($have_blame) = gitweb_check_feature
('blame');
2811 print "<div class=\"list_head\">\n";
2812 if ($#{$difftree} > 10) {
2813 print(($#{$difftree} + 1) . " files changed:\n");
2817 print "<table class=\"" .
2818 (@parents > 1 ?
"combined " : "") .
2821 # header only for combined diff in 'commitdiff' view
2822 my $has_header = @
$difftree && @parents > 1 && $action eq 'commitdiff';
2825 print "<thead><tr>\n" .
2826 "<th></th><th></th>\n"; # filename, patchN link
2827 for (my $i = 0; $i < @parents; $i++) {
2828 my $par = $parents[$i];
2830 $cgi->a({-href
=> href
(action
=>"commitdiff",
2831 hash
=>$hash, hash_parent
=>$par),
2832 -title
=> 'commitdiff to parent number ' .
2833 ($i+1) . ': ' . substr($par,0,7)},
2837 print "</tr></thead>\n<tbody>\n";
2842 foreach my $line (@
{$difftree}) {
2844 if (ref($line) eq "HASH") {
2845 # pre-parsed (or generated by hand)
2848 $diff = parse_difftree_raw_line
($line);
2852 print "<tr class=\"dark\">\n";
2854 print "<tr class=\"light\">\n";
2858 if (exists $diff->{'nparents'}) { # combined diff
2860 fill_from_file_info
($diff, @parents)
2861 unless exists $diff->{'from_file'};
2863 if (!is_deleted
($diff)) {
2864 # file exists in the result (child) commit
2866 $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff->{'to_id'},
2867 file_name
=>$diff->{'to_file'},
2869 -class => "list"}, esc_path
($diff->{'to_file'})) .
2873 esc_path
($diff->{'to_file'}) .
2877 if ($action eq 'commitdiff') {
2880 print "<td class=\"link\">" .
2881 $cgi->a({-href
=> "#patch$patchno"}, "patch") .
2886 my $has_history = 0;
2887 my $not_deleted = 0;
2888 for (my $i = 0; $i < $diff->{'nparents'}; $i++) {
2889 my $hash_parent = $parents[$i];
2890 my $from_hash = $diff->{'from_id'}[$i];
2891 my $from_path = $diff->{'from_file'}[$i];
2892 my $status = $diff->{'status'}[$i];
2894 $has_history ||= ($status ne 'A');
2895 $not_deleted ||= ($status ne 'D');
2897 if ($status eq 'A') {
2898 print "<td class=\"link\" align=\"right\"> | </td>\n";
2899 } elsif ($status eq 'D') {
2900 print "<td class=\"link\">" .
2901 $cgi->a({-href
=> href
(action
=>"blob",
2904 file_name
=>$from_path)},
2908 if ($diff->{'to_id'} eq $from_hash) {
2909 print "<td class=\"link nochange\">";
2911 print "<td class=\"link\">";
2913 print $cgi->a({-href
=> href
(action
=>"blobdiff",
2914 hash
=>$diff->{'to_id'},
2915 hash_parent
=>$from_hash,
2917 hash_parent_base
=>$hash_parent,
2918 file_name
=>$diff->{'to_file'},
2919 file_parent
=>$from_path)},
2925 print "<td class=\"link\">";
2927 print $cgi->a({-href
=> href
(action
=>"blob",
2928 hash
=>$diff->{'to_id'},
2929 file_name
=>$diff->{'to_file'},
2932 print " | " if ($has_history);
2935 print $cgi->a({-href
=> href
(action
=>"history",
2936 file_name
=>$diff->{'to_file'},
2943 next; # instead of 'else' clause, to avoid extra indent
2945 # else ordinary diff
2947 my ($to_mode_oct, $to_mode_str, $to_file_type);
2948 my ($from_mode_oct, $from_mode_str, $from_file_type);
2949 if ($diff->{'to_mode'} ne ('0' x
6)) {
2950 $to_mode_oct = oct $diff->{'to_mode'};
2951 if (S_ISREG
($to_mode_oct)) { # only for regular file
2952 $to_mode_str = sprintf("%04o", $to_mode_oct & 0777); # permission bits
2954 $to_file_type = file_type
($diff->{'to_mode'});
2956 if ($diff->{'from_mode'} ne ('0' x
6)) {
2957 $from_mode_oct = oct $diff->{'from_mode'};
2958 if (S_ISREG
($to_mode_oct)) { # only for regular file
2959 $from_mode_str = sprintf("%04o", $from_mode_oct & 0777); # permission bits
2961 $from_file_type = file_type
($diff->{'from_mode'});
2964 if ($diff->{'status'} eq "A") { # created
2965 my $mode_chng = "<span class=\"file_status new\">[new $to_file_type";
2966 $mode_chng .= " with mode: $to_mode_str" if $to_mode_str;
2967 $mode_chng .= "]</span>";
2969 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff->{'to_id'},
2970 hash_base
=>$hash, file_name
=>$diff->{'file'}),
2971 -class => "list"}, esc_path
($diff->{'file'}));
2973 print "<td>$mode_chng</td>\n";
2974 print "<td class=\"link\">";
2975 if ($action eq 'commitdiff') {
2978 print $cgi->a({-href
=> "#patch$patchno"}, "patch");
2981 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff->{'to_id'},
2982 hash_base
=>$hash, file_name
=>$diff->{'file'})},
2986 } elsif ($diff->{'status'} eq "D") { # deleted
2987 my $mode_chng = "<span class=\"file_status deleted\">[deleted $from_file_type]</span>";
2989 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff->{'from_id'},
2990 hash_base
=>$parent, file_name
=>$diff->{'file'}),
2991 -class => "list"}, esc_path
($diff->{'file'}));
2993 print "<td>$mode_chng</td>\n";
2994 print "<td class=\"link\">";
2995 if ($action eq 'commitdiff') {
2998 print $cgi->a({-href
=> "#patch$patchno"}, "patch");
3001 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff->{'from_id'},
3002 hash_base
=>$parent, file_name
=>$diff->{'file'})},
3005 print $cgi->a({-href
=> href
(action
=>"blame", hash_base
=>$parent,
3006 file_name
=>$diff->{'file'})},
3009 print $cgi->a({-href
=> href
(action
=>"history", hash_base
=>$parent,
3010 file_name
=>$diff->{'file'})},
3014 } elsif ($diff->{'status'} eq "M" || $diff->{'status'} eq "T") { # modified, or type changed
3015 my $mode_chnge = "";
3016 if ($diff->{'from_mode'} != $diff->{'to_mode'}) {
3017 $mode_chnge = "<span class=\"file_status mode_chnge\">[changed";
3018 if ($from_file_type ne $to_file_type) {
3019 $mode_chnge .= " from $from_file_type to $to_file_type";
3021 if (($from_mode_oct & 0777) != ($to_mode_oct & 0777)) {
3022 if ($from_mode_str && $to_mode_str) {
3023 $mode_chnge .= " mode: $from_mode_str->$to_mode_str";
3024 } elsif ($to_mode_str) {
3025 $mode_chnge .= " mode: $to_mode_str";
3028 $mode_chnge .= "]</span>\n";
3031 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff->{'to_id'},
3032 hash_base
=>$hash, file_name
=>$diff->{'file'}),
3033 -class => "list"}, esc_path
($diff->{'file'}));
3035 print "<td>$mode_chnge</td>\n";
3036 print "<td class=\"link\">";
3037 if ($action eq 'commitdiff') {
3040 print $cgi->a({-href
=> "#patch$patchno"}, "patch") .
3042 } elsif ($diff->{'to_id'} ne $diff->{'from_id'}) {
3043 # "commit" view and modified file (not onlu mode changed)
3044 print $cgi->a({-href
=> href
(action
=>"blobdiff",
3045 hash
=>$diff->{'to_id'}, hash_parent
=>$diff->{'from_id'},
3046 hash_base
=>$hash, hash_parent_base
=>$parent,
3047 file_name
=>$diff->{'file'})},
3051 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff->{'to_id'},
3052 hash_base
=>$hash, file_name
=>$diff->{'file'})},
3055 print $cgi->a({-href
=> href
(action
=>"blame", hash_base
=>$hash,
3056 file_name
=>$diff->{'file'})},
3059 print $cgi->a({-href
=> href
(action
=>"history", hash_base
=>$hash,
3060 file_name
=>$diff->{'file'})},
3064 } elsif ($diff->{'status'} eq "R" || $diff->{'status'} eq "C") { # renamed or copied
3065 my %status_name = ('R' => 'moved', 'C' => 'copied');
3066 my $nstatus = $status_name{$diff->{'status'}};
3068 if ($diff->{'from_mode'} != $diff->{'to_mode'}) {
3069 # mode also for directories, so we cannot use $to_mode_str
3070 $mode_chng = sprintf(", mode: %04o", $to_mode_oct & 0777);
3073 $cgi->a({-href
=> href
(action
=>"blob", hash_base
=>$hash,
3074 hash
=>$diff->{'to_id'}, file_name
=>$diff->{'to_file'}),
3075 -class => "list"}, esc_path
($diff->{'to_file'})) . "</td>\n" .
3076 "<td><span class=\"file_status $nstatus\">[$nstatus from " .
3077 $cgi->a({-href
=> href
(action
=>"blob", hash_base
=>$parent,
3078 hash
=>$diff->{'from_id'}, file_name
=>$diff->{'from_file'}),
3079 -class => "list"}, esc_path
($diff->{'from_file'})) .
3080 " with " . (int $diff->{'similarity'}) . "% similarity$mode_chng]</span></td>\n" .
3081 "<td class=\"link\">";
3082 if ($action eq 'commitdiff') {
3085 print $cgi->a({-href
=> "#patch$patchno"}, "patch") .
3087 } elsif ($diff->{'to_id'} ne $diff->{'from_id'}) {
3088 # "commit" view and modified file (not only pure rename or copy)
3089 print $cgi->a({-href
=> href
(action
=>"blobdiff",
3090 hash
=>$diff->{'to_id'}, hash_parent
=>$diff->{'from_id'},
3091 hash_base
=>$hash, hash_parent_base
=>$parent,
3092 file_name
=>$diff->{'to_file'}, file_parent
=>$diff->{'from_file'})},
3096 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff->{'to_id'},
3097 hash_base
=>$parent, file_name
=>$diff->{'to_file'})},
3100 print $cgi->a({-href
=> href
(action
=>"blame", hash_base
=>$hash,
3101 file_name
=>$diff->{'to_file'})},
3104 print $cgi->a({-href
=> href
(action
=>"history", hash_base
=>$hash,
3105 file_name
=>$diff->{'to_file'})},
3109 } # we should not encounter Unmerged (U) or Unknown (X) status
3112 print "</tbody>" if $has_header;
3116 sub git_patchset_body
{
3117 my ($fd, $difftree, $hash, @hash_parents) = @_;
3118 my ($hash_parent) = $hash_parents[0];
3121 my $patch_number = 0;
3126 print "<div class=\"patchset\">\n";
3128 # skip to first patch
3129 while ($patch_line = <$fd>) {
3132 last if ($patch_line =~ m/^diff /);
3136 while ($patch_line) {
3138 my ($from_id, $to_id);
3141 #assert($patch_line =~ m/^diff /) if DEBUG;
3142 #assert($patch_line !~ m!$/$!) if DEBUG; # is chomp-ed
3144 push @diff_header, $patch_line;
3146 # extended diff header
3148 while ($patch_line = <$fd>) {
3151 last EXTENDED_HEADER
if ($patch_line =~ m/^--- |^diff /);
3153 if ($patch_line =~ m/^index ([0-9a-fA-F]{40})..([0-9a-fA-F]{40})/) {
3156 } elsif ($patch_line =~ m/^index ((?:[0-9a-fA-F]{40},)+[0-9a-fA-F]{40})..([0-9a-fA-F]{40})/) {
3157 $from_id = [ split(',', $1) ];
3161 push @diff_header, $patch_line;
3163 my $last_patch_line = $patch_line;
3165 # check if current patch belong to current raw line
3166 # and parse raw git-diff line if needed
3167 if (defined $diffinfo &&
3168 defined $from_id && defined $to_id &&
3169 from_ids_eq
($diffinfo->{'from_id'}, $from_id) &&
3170 $diffinfo->{'to_id'} eq $to_id) {
3171 # this is continuation of a split patch
3172 print "<div class=\"patch cont\">\n";
3174 # advance raw git-diff output if needed
3175 $patch_idx++ if defined $diffinfo;
3177 # compact combined diff output can have some patches skipped
3178 # find which patch (using pathname of result) we are at now
3180 if ($diff_header[0] =~ m!^diff --cc "?(.*)"?$!) {
3185 # read and prepare patch information
3186 if (ref($difftree->[$patch_idx]) eq "HASH") {
3187 # pre-parsed (or generated by hand)
3188 $diffinfo = $difftree->[$patch_idx];
3190 $diffinfo = parse_difftree_raw_line
($difftree->[$patch_idx]);
3193 # check if current raw line has no patch (it got simplified)
3194 if (defined $to_name && $to_name ne $diffinfo->{'to_file'}) {
3195 print "<div class=\"patch\" id=\"patch". ($patch_idx+1) ."\">\n" .
3196 format_diff_cc_simplified
($diffinfo, @hash_parents) .
3197 "</div>\n"; # class="patch"
3202 } until (!defined $to_name || $to_name eq $diffinfo->{'to_file'} ||
3203 $patch_idx > $#$difftree);
3205 # modifies %from, %to hashes
3206 parse_from_to_diffinfo
($diffinfo, \
%from, \
%to, @hash_parents);
3208 # this is first patch for raw difftree line with $patch_idx index
3209 # we index @$difftree array from 0, but number patches from 1
3210 print "<div class=\"patch\" id=\"patch". ($patch_idx+1) ."\">\n";
3213 # print "git diff" header
3214 $patch_line = shift @diff_header;
3215 print format_git_diff_header_line
($patch_line, $diffinfo,
3218 # print extended diff header
3219 print "<div class=\"diff extended_header\">\n" if (@diff_header > 0);
3221 foreach $patch_line (@diff_header) {
3222 print format_extended_diff_header_line
($patch_line, $diffinfo,
3225 print "</div>\n" if (@diff_header > 0); # class="diff extended_header"
3227 # from-file/to-file diff header
3228 $patch_line = $last_patch_line;
3229 if (! $patch_line) {
3230 print "</div>\n"; # class="patch"
3233 next PATCH
if ($patch_line =~ m/^diff /);
3234 #assert($patch_line =~ m/^---/) if DEBUG;
3235 #assert($patch_line eq $last_patch_line) if DEBUG;
3237 $patch_line = <$fd>;
3239 #assert($patch_line =~ m/^\+\+\+/) if DEBUG;
3241 print format_diff_from_to_header
($last_patch_line, $patch_line,
3242 $diffinfo, \
%from, \
%to,
3247 while ($patch_line = <$fd>) {
3250 next PATCH
if ($patch_line =~ m/^diff /);
3252 print format_diff_line
($patch_line, \
%from, \
%to);
3256 print "</div>\n"; # class="patch"
3259 # for compact combined (--cc) format, with chunk and patch simpliciaction
3260 # patchset might be empty, but there might be unprocessed raw lines
3261 for ($patch_idx++ if $patch_number > 0;
3262 $patch_idx < @
$difftree;
3264 # read and prepare patch information
3265 if (ref($difftree->[$patch_idx]) eq "HASH") {
3266 # pre-parsed (or generated by hand)
3267 $diffinfo = $difftree->[$patch_idx];
3269 $diffinfo = parse_difftree_raw_line
($difftree->[$patch_idx]);
3272 # generate anchor for "patch" links in difftree / whatchanged part
3273 print "<div class=\"patch\" id=\"patch". ($patch_idx+1) ."\">\n" .
3274 format_diff_cc_simplified
($diffinfo, @hash_parents) .
3275 "</div>\n"; # class="patch"
3280 if ($patch_number == 0) {
3281 if (@hash_parents > 1) {
3282 print "<div class=\"diff nodifferences\">Trivial merge</div>\n";
3284 print "<div class=\"diff nodifferences\">No differences found</div>\n";
3288 print "</div>\n"; # class="patchset"
3291 # . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
3293 sub git_project_list_body
{
3294 my ($projlist, $order, $from, $to, $extra, $no_header) = @_;
3296 my ($check_forks) = gitweb_check_feature
('forks');
3299 foreach my $pr (@
$projlist) {
3300 my (@aa) = git_get_last_activity
($pr->{'path'});
3304 ($pr->{'age'}, $pr->{'age_string'}) = @aa;
3305 if (!defined $pr->{'descr'}) {
3306 my $descr = git_get_project_description
($pr->{'path'}) || "";
3307 $pr->{'descr_long'} = to_utf8
($descr);
3308 $pr->{'descr'} = chop_str
($descr, $projects_list_description_width, 5);
3310 if (!defined $pr->{'owner'}) {
3311 $pr->{'owner'} = git_get_project_owner
("$pr->{'path'}") || "";
3314 my $pname = $pr->{'path'};
3315 if (($pname =~ s/\.git$//) &&
3316 ($pname !~ /\/$/) &&
3317 (-d
"$projectroot/$pname")) {
3318 $pr->{'forks'} = "-d $projectroot/$pname";
3324 push @projects, $pr;
3327 $order ||= $default_projects_order;
3328 $from = 0 unless defined $from;
3329 $to = $#projects if (!defined $to || $#projects < $to);
3331 print "<table class=\"project_list\">\n";
3332 unless ($no_header) {
3335 print "<th></th>\n";
3337 if ($order eq "project") {
3338 @projects = sort {$a->{'path'} cmp $b->{'path'}} @projects;
3339 print "<th>Project</th>\n";
3342 $cgi->a({-href
=> href
(project
=>undef, order
=>'project'),
3343 -class => "header"}, "Project") .
3346 if ($order eq "descr") {
3347 @projects = sort {$a->{'descr'} cmp $b->{'descr'}} @projects;
3348 print "<th>Description</th>\n";
3351 $cgi->a({-href
=> href
(project
=>undef, order
=>'descr'),
3352 -class => "header"}, "Description") .
3355 if ($order eq "owner") {
3356 @projects = sort {$a->{'owner'} cmp $b->{'owner'}} @projects;
3357 print "<th>Owner</th>\n";
3360 $cgi->a({-href
=> href
(project
=>undef, order
=>'owner'),
3361 -class => "header"}, "Owner") .
3364 if ($order eq "age") {
3365 @projects = sort {$a->{'age'} <=> $b->{'age'}} @projects;
3366 print "<th>Last Change</th>\n";
3369 $cgi->a({-href
=> href
(project
=>undef, order
=>'age'),
3370 -class => "header"}, "Last Change") .
3373 print "<th></th>\n" .
3377 for (my $i = $from; $i <= $to; $i++) {
3378 my $pr = $projects[$i];
3380 print "<tr class=\"dark\">\n";
3382 print "<tr class=\"light\">\n";
3387 if ($pr->{'forks'}) {
3388 print "<!-- $pr->{'forks'} -->\n";
3389 print $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"forks")}, "+");
3393 print "<td>" . $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"summary"),
3394 -class => "list"}, esc_html
($pr->{'path'})) . "</td>\n" .
3395 "<td>" . $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"summary"),
3396 -class => "list", -title
=> $pr->{'descr_long'}},
3397 esc_html
($pr->{'descr'})) . "</td>\n" .
3398 "<td><i>" . esc_html
(chop_str
($pr->{'owner'}, 15)) . "</i></td>\n";
3399 print "<td class=\"". age_class
($pr->{'age'}) . "\">" .
3400 (defined $pr->{'age_string'} ?
$pr->{'age_string'} : "No commits") . "</td>\n" .
3401 "<td class=\"link\">" .
3402 $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"summary")}, "summary") . " | " .
3403 $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"shortlog")}, "shortlog") . " | " .
3404 $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"log")}, "log") . " | " .
3405 $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"tree")}, "tree") .
3406 ($pr->{'forks'} ?
" | " . $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"forks")}, "forks") : '') .
3410 if (defined $extra) {
3413 print "<td></td>\n";
3415 print "<td colspan=\"5\">$extra</td>\n" .
3421 sub git_shortlog_body
{
3422 # uses global variable $project
3423 my ($commitlist, $from, $to, $refs, $extra) = @_;
3425 $from = 0 unless defined $from;
3426 $to = $#{$commitlist} if (!defined $to || $#{$commitlist} < $to);
3428 print "<table class=\"shortlog\" cellspacing=\"0\">\n";
3430 for (my $i = $from; $i <= $to; $i++) {
3431 my %co = %{$commitlist->[$i]};
3432 my $commit = $co{'id'};
3433 my $ref = format_ref_marker
($refs, $commit);
3435 print "<tr class=\"dark\">\n";
3437 print "<tr class=\"light\">\n";
3440 # git_summary() used print "<td><i>$co{'age_string'}</i></td>\n" .
3441 print "<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n" .
3442 "<td><i>" . esc_html
(chop_str
($co{'author_name'}, 10)) . "</i></td>\n" .
3444 print format_subject_html
($co{'title'}, $co{'title_short'},
3445 href
(action
=>"commit", hash
=>$commit), $ref);
3447 "<td class=\"link\">" .
3448 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$commit)}, "commit") . " | " .
3449 $cgi->a({-href
=> href
(action
=>"commitdiff", hash
=>$commit)}, "commitdiff") . " | " .
3450 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$commit, hash_base
=>$commit)}, "tree");
3451 my $snapshot_links = format_snapshot_links
($commit);
3452 if (defined $snapshot_links) {
3453 print " | " . $snapshot_links;
3458 if (defined $extra) {
3460 "<td colspan=\"4\">$extra</td>\n" .
3466 sub git_history_body
{
3467 # Warning: assumes constant type (blob or tree) during history
3468 my ($commitlist, $from, $to, $refs, $hash_base, $ftype, $extra) = @_;
3470 $from = 0 unless defined $from;
3471 $to = $#{$commitlist} unless (defined $to && $to <= $#{$commitlist});
3473 print "<table class=\"history\" cellspacing=\"0\">\n";
3475 for (my $i = $from; $i <= $to; $i++) {
3476 my %co = %{$commitlist->[$i]};
3480 my $commit = $co{'id'};
3482 my $ref = format_ref_marker
($refs, $commit);
3485 print "<tr class=\"dark\">\n";
3487 print "<tr class=\"light\">\n";
3490 print "<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n" .
3491 # shortlog uses chop_str($co{'author_name'}, 10)
3492 "<td><i>" . esc_html
(chop_str
($co{'author_name'}, 15, 3)) . "</i></td>\n" .
3494 # originally git_history used chop_str($co{'title'}, 50)
3495 print format_subject_html
($co{'title'}, $co{'title_short'},
3496 href
(action
=>"commit", hash
=>$commit), $ref);
3498 "<td class=\"link\">" .
3499 $cgi->a({-href
=> href
(action
=>$ftype, hash_base
=>$commit, file_name
=>$file_name)}, $ftype) . " | " .
3500 $cgi->a({-href
=> href
(action
=>"commitdiff", hash
=>$commit)}, "commitdiff");
3502 if ($ftype eq 'blob') {
3503 my $blob_current = git_get_hash_by_path
($hash_base, $file_name);
3504 my $blob_parent = git_get_hash_by_path
($commit, $file_name);
3505 if (defined $blob_current && defined $blob_parent &&
3506 $blob_current ne $blob_parent) {
3508 $cgi->a({-href
=> href
(action
=>"blobdiff",
3509 hash
=>$blob_current, hash_parent
=>$blob_parent,
3510 hash_base
=>$hash_base, hash_parent_base
=>$commit,
3511 file_name
=>$file_name)},
3518 if (defined $extra) {
3520 "<td colspan=\"4\">$extra</td>\n" .
3527 # uses global variable $project
3528 my ($taglist, $from, $to, $extra) = @_;
3529 $from = 0 unless defined $from;
3530 $to = $#{$taglist} if (!defined $to || $#{$taglist} < $to);
3532 print "<table class=\"tags\" cellspacing=\"0\">\n";
3534 for (my $i = $from; $i <= $to; $i++) {
3535 my $entry = $taglist->[$i];
3537 my $comment = $tag{'subject'};
3539 if (defined $comment) {
3540 $comment_short = chop_str
($comment, 30, 5);
3543 print "<tr class=\"dark\">\n";
3545 print "<tr class=\"light\">\n";
3548 if (defined $tag{'age'}) {
3549 print "<td><i>$tag{'age'}</i></td>\n";
3551 print "<td></td>\n";
3554 $cgi->a({-href
=> href
(action
=>$tag{'reftype'}, hash
=>$tag{'refid'}),
3555 -class => "list name"}, esc_html
($tag{'name'})) .
3558 if (defined $comment) {
3559 print format_subject_html
($comment, $comment_short,
3560 href
(action
=>"tag", hash
=>$tag{'id'}));
3563 "<td class=\"selflink\">";
3564 if ($tag{'type'} eq "tag") {
3565 print $cgi->a({-href
=> href
(action
=>"tag", hash
=>$tag{'id'})}, "tag");
3570 "<td class=\"link\">" . " | " .
3571 $cgi->a({-href
=> href
(action
=>$tag{'reftype'}, hash
=>$tag{'refid'})}, $tag{'reftype'});
3572 if ($tag{'reftype'} eq "commit") {
3573 print " | " . $cgi->a({-href
=> href
(action
=>"shortlog", hash
=>$tag{'name'})}, "shortlog") .
3574 " | " . $cgi->a({-href
=> href
(action
=>"log", hash
=>$tag{'name'})}, "log");
3575 } elsif ($tag{'reftype'} eq "blob") {
3576 print " | " . $cgi->a({-href
=> href
(action
=>"blob_plain", hash
=>$tag{'refid'})}, "raw");
3581 if (defined $extra) {
3583 "<td colspan=\"5\">$extra</td>\n" .
3589 sub git_heads_body
{
3590 # uses global variable $project
3591 my ($headlist, $head, $from, $to, $extra) = @_;
3592 $from = 0 unless defined $from;
3593 $to = $#{$headlist} if (!defined $to || $#{$headlist} < $to);
3595 print "<table class=\"heads\" cellspacing=\"0\">\n";
3597 for (my $i = $from; $i <= $to; $i++) {
3598 my $entry = $headlist->[$i];
3600 my $curr = $ref{'id'} eq $head;
3602 print "<tr class=\"dark\">\n";
3604 print "<tr class=\"light\">\n";
3607 print "<td><i>$ref{'age'}</i></td>\n" .
3608 ($curr ?
"<td class=\"current_head\">" : "<td>") .
3609 $cgi->a({-href
=> href
(action
=>"shortlog", hash
=>$ref{'name'}),
3610 -class => "list name"},esc_html
($ref{'name'})) .
3612 "<td class=\"link\">" .
3613 $cgi->a({-href
=> href
(action
=>"shortlog", hash
=>$ref{'name'})}, "shortlog") . " | " .
3614 $cgi->a({-href
=> href
(action
=>"log", hash
=>$ref{'name'})}, "log") . " | " .
3615 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$ref{'name'}, hash_base
=>$ref{'name'})}, "tree") .
3619 if (defined $extra) {
3621 "<td colspan=\"3\">$extra</td>\n" .
3627 sub git_search_grep_body
{
3628 my ($commitlist, $from, $to, $extra) = @_;
3629 $from = 0 unless defined $from;
3630 $to = $#{$commitlist} if (!defined $to || $#{$commitlist} < $to);
3632 print "<table class=\"grep\" cellspacing=\"0\">\n";
3634 for (my $i = $from; $i <= $to; $i++) {
3635 my %co = %{$commitlist->[$i]};
3639 my $commit = $co{'id'};
3641 print "<tr class=\"dark\">\n";
3643 print "<tr class=\"light\">\n";
3646 print "<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n" .
3647 "<td><i>" . esc_html
(chop_str
($co{'author_name'}, 15, 5)) . "</i></td>\n" .
3649 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$co{'id'}), -class => "list subject"},
3650 esc_html
(chop_str
($co{'title'}, 50)) . "<br/>");
3651 my $comment = $co{'comment'};
3652 foreach my $line (@
$comment) {
3653 if ($line =~ m/^(.*)($search_regexp)(.*)$/i) {
3654 my $lead = esc_html
($1) || "";
3655 $lead = chop_str
($lead, 30, 10);
3656 my $match = esc_html
($2) || "";
3657 my $trail = esc_html
($3) || "";
3658 $trail = chop_str
($trail, 30, 10);
3659 my $text = "$lead<span class=\"match\">$match</span>$trail";
3660 print chop_str
($text, 80, 5) . "<br/>\n";
3664 "<td class=\"link\">" .
3665 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$co{'id'})}, "commit") .
3667 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$co{'tree'}, hash_base
=>$co{'id'})}, "tree");
3671 if (defined $extra) {
3673 "<td colspan=\"3\">$extra</td>\n" .
3679 ## ======================================================================
3680 ## ======================================================================
3683 sub git_project_list
{
3684 my $order = $cgi->param('o');
3685 if (defined $order && $order !~ m/none|project|descr|owner|age/) {
3686 die_error
(undef, "Unknown order parameter");
3689 my @list = git_get_projects_list
();
3691 die_error
(undef, "No projects found");
3695 if (-f
$home_text) {
3696 print "<div class=\"index_include\">\n";
3697 open (my $fd, $home_text);
3702 git_project_list_body
(\
@list, $order);
3707 my $order = $cgi->param('o');
3708 if (defined $order && $order !~ m/none|project|descr|owner|age/) {
3709 die_error
(undef, "Unknown order parameter");
3712 my @list = git_get_projects_list
($project);
3714 die_error
(undef, "No forks found");
3718 git_print_page_nav
('','');
3719 git_print_header_div
('summary', "$project forks");
3720 git_project_list_body
(\
@list, $order);
3724 sub git_project_index
{
3725 my @projects = git_get_projects_list
($project);
3728 -type
=> 'text/plain',
3729 -charset
=> 'utf-8',
3730 -content_disposition
=> 'inline; filename="index.aux"');
3732 foreach my $pr (@projects) {
3733 if (!exists $pr->{'owner'}) {
3734 $pr->{'owner'} = git_get_project_owner
("$pr->{'path'}");
3737 my ($path, $owner) = ($pr->{'path'}, $pr->{'owner'});
3738 # quote as in CGI::Util::encode, but keep the slash, and use '+' for ' '
3739 $path =~ s/([^a-zA-Z0-9_.\-\/ ])/sprintf
("%%%02X", ord($1))/eg
;
3740 $owner =~ s/([^a-zA-Z0-9_.\-\/ ])/sprintf
("%%%02X", ord($1))/eg
;
3744 print "$path $owner\n";
3749 my $descr = git_get_project_description
($project) || "none";
3750 my %co = parse_commit
("HEAD");
3751 my %cd = %co ? parse_date
($co{'committer_epoch'}, $co{'committer_tz'}) : ();
3752 my $head = $co{'id'};
3754 my $owner = git_get_project_owner
($project);
3756 my $refs = git_get_references
();
3757 # These get_*_list functions return one more to allow us to see if
3758 # there are more ...
3759 my @taglist = git_get_tags_list
(16);
3760 my @headlist = git_get_heads_list
(16);
3762 my ($check_forks) = gitweb_check_feature
('forks');
3765 @forklist = git_get_projects_list
($project);
3769 git_print_page_nav
('summary','', $head);
3771 print "<div class=\"title\"> </div>\n";
3772 print "<table cellspacing=\"0\">\n" .
3773 "<tr><td>description</td><td>" . esc_html
($descr) . "</td></tr>\n" .
3774 "<tr><td>owner</td><td>" . esc_html
($owner) . "</td></tr>\n";
3775 if (defined $cd{'rfc2822'}) {
3776 print "<tr><td>last change</td><td>$cd{'rfc2822'}</td></tr>\n";
3779 # use per project git URL list in $projectroot/$project/cloneurl
3780 # or make project git URL from git base URL and project name
3781 my $url_tag = "URL";
3782 my @url_list = git_get_project_url_list
($project);
3783 @url_list = map { "$_/$project" } @git_base_url_list unless @url_list;
3784 foreach my $git_url (@url_list) {
3785 next unless $git_url;
3786 print "<tr><td>$url_tag</td><td>$git_url</td></tr>\n";
3791 if (-s
"$projectroot/$project/README.html") {
3792 if (open my $fd, "$projectroot/$project/README.html") {
3793 print "<div class=\"title\">readme</div>\n";
3794 print $_ while (<$fd>);
3799 # we need to request one more than 16 (0..15) to check if
3801 my @commitlist = $head ? parse_commits
($head, 17) : ();
3803 git_print_header_div
('shortlog');
3804 git_shortlog_body
(\
@commitlist, 0, 15, $refs,
3805 $#commitlist <= 15 ?
undef :
3806 $cgi->a({-href
=> href
(action
=>"shortlog")}, "..."));
3810 git_print_header_div
('tags');
3811 git_tags_body
(\
@taglist, 0, 15,
3812 $#taglist <= 15 ?
undef :
3813 $cgi->a({-href
=> href
(action
=>"tags")}, "..."));
3817 git_print_header_div
('heads');
3818 git_heads_body
(\
@headlist, $head, 0, 15,
3819 $#headlist <= 15 ?
undef :
3820 $cgi->a({-href
=> href
(action
=>"heads")}, "..."));
3824 git_print_header_div
('forks');
3825 git_project_list_body
(\
@forklist, undef, 0, 15,
3826 $#forklist <= 15 ?
undef :
3827 $cgi->a({-href
=> href
(action
=>"forks")}, "..."),
3835 my $head = git_get_head_hash
($project);
3837 git_print_page_nav
('','', $head,undef,$head);
3838 my %tag = parse_tag
($hash);
3841 die_error
(undef, "Unknown tag object");
3844 git_print_header_div
('commit', esc_html
($tag{'name'}), $hash);
3845 print "<div class=\"title_text\">\n" .
3846 "<table cellspacing=\"0\">\n" .
3848 "<td>object</td>\n" .
3849 "<td>" . $cgi->a({-class => "list", -href
=> href
(action
=>$tag{'type'}, hash
=>$tag{'object'})},
3850 $tag{'object'}) . "</td>\n" .
3851 "<td class=\"link\">" . $cgi->a({-href
=> href
(action
=>$tag{'type'}, hash
=>$tag{'object'})},
3852 $tag{'type'}) . "</td>\n" .
3854 if (defined($tag{'author'})) {
3855 my %ad = parse_date
($tag{'epoch'}, $tag{'tz'});
3856 print "<tr><td>author</td><td>" . esc_html
($tag{'author'}) . "</td></tr>\n";
3857 print "<tr><td></td><td>" . $ad{'rfc2822'} .
3858 sprintf(" (%02d:%02d %s)", $ad{'hour_local'}, $ad{'minute_local'}, $ad{'tz_local'}) .
3861 print "</table>\n\n" .
3863 print "<div class=\"page_body\">";
3864 my $comment = $tag{'comment'};
3865 foreach my $line (@
$comment) {
3867 print esc_html
($line, -nbsp
=>1) . "<br/>\n";
3877 my ($have_blame) = gitweb_check_feature
('blame');
3879 die_error
('403 Permission denied', "Permission denied");
3881 die_error
('404 Not Found', "File name not defined") if (!$file_name);
3882 $hash_base ||= git_get_head_hash
($project);
3883 die_error
(undef, "Couldn't find base commit") unless ($hash_base);
3884 my %co = parse_commit
($hash_base)
3885 or die_error
(undef, "Reading commit failed");
3886 if (!defined $hash) {
3887 $hash = git_get_hash_by_path
($hash_base, $file_name, "blob")
3888 or die_error
(undef, "Error looking up file");
3890 $ftype = git_get_type
($hash);
3891 if ($ftype !~ "blob") {
3892 die_error
('400 Bad Request', "Object is not a blob");
3894 open ($fd, "-|", git_cmd
(), "blame", '-p', '--',
3895 $file_name, $hash_base)
3896 or die_error
(undef, "Open git-blame failed");
3899 $cgi->a({-href
=> href
(action
=>"blob", hash
=>$hash, hash_base
=>$hash_base, file_name
=>$file_name)},
3902 $cgi->a({-href
=> href
(action
=>"history", hash
=>$hash, hash_base
=>$hash_base, file_name
=>$file_name)},
3905 $cgi->a({-href
=> href
(action
=>"blame", file_name
=>$file_name)},
3907 git_print_page_nav
('','', $hash_base,$co{'tree'},$hash_base, $formats_nav);
3908 git_print_header_div
('commit', esc_html
($co{'title'}), $hash_base);
3909 git_print_page_path
($file_name, $ftype, $hash_base);
3910 my @rev_color = (qw(light2 dark2));
3911 my $num_colors = scalar(@rev_color);
3912 my $current_color = 0;
3915 <div class="page_body">
3916 <table class="blame">
3917 <tr><th>Commit</th><th>Line</th><th>Data</th></tr>
3922 last unless defined $_;
3923 my ($full_rev, $orig_lineno, $lineno, $group_size) =
3924 /^([0-9a-f]{40}) (\d+) (\d+)(?: (\d+))?$/;
3925 if (!exists $metainfo{$full_rev}) {
3926 $metainfo{$full_rev} = {};
3928 my $meta = $metainfo{$full_rev};
3931 if (/^(\S+) (.*)$/) {
3937 my $rev = substr($full_rev, 0, 8);
3938 my $author = $meta->{'author'};
3939 my %date = parse_date
($meta->{'author-time'},
3940 $meta->{'author-tz'});
3941 my $date = $date{'iso-tz'};
3943 $current_color = ++$current_color % $num_colors;
3945 print "<tr class=\"$rev_color[$current_color]\">\n";
3947 print "<td class=\"sha1\"";
3948 print " title=\"". esc_html
($author) . ", $date\"";
3949 print " rowspan=\"$group_size\"" if ($group_size > 1);
3951 print $cgi->a({-href
=> href
(action
=>"commit",
3953 file_name
=>$file_name)},
3957 open (my $dd, "-|", git_cmd
(), "rev-parse", "$full_rev^")
3958 or die_error
(undef, "Open git-rev-parse failed");
3959 my $parent_commit = <$dd>;
3961 chomp($parent_commit);
3962 my $blamed = href
(action
=> 'blame',
3963 file_name
=> $meta->{'filename'},
3964 hash_base
=> $parent_commit);
3965 print "<td class=\"linenr\">";
3966 print $cgi->a({ -href
=> "$blamed#l$orig_lineno",
3968 -class => "linenr" },
3971 print "<td class=\"pre\">" . esc_html
($data) . "</td>\n";
3977 or print "Reading blob failed\n";
3984 my ($have_blame) = gitweb_check_feature
('blame');
3986 die_error
('403 Permission denied', "Permission denied");
3988 die_error
('404 Not Found', "File name not defined") if (!$file_name);
3989 $hash_base ||= git_get_head_hash
($project);
3990 die_error
(undef, "Couldn't find base commit") unless ($hash_base);
3991 my %co = parse_commit
($hash_base)
3992 or die_error
(undef, "Reading commit failed");
3993 if (!defined $hash) {
3994 $hash = git_get_hash_by_path
($hash_base, $file_name, "blob")
3995 or die_error
(undef, "Error lookup file");
3997 open ($fd, "-|", git_cmd
(), "annotate", '-l', '-t', '-r', $file_name, $hash_base)
3998 or die_error
(undef, "Open git-annotate failed");
4001 $cgi->a({-href
=> href
(action
=>"blob", hash
=>$hash, hash_base
=>$hash_base, file_name
=>$file_name)},
4004 $cgi->a({-href
=> href
(action
=>"history", hash
=>$hash, hash_base
=>$hash_base, file_name
=>$file_name)},
4007 $cgi->a({-href
=> href
(action
=>"blame", file_name
=>$file_name)},
4009 git_print_page_nav
('','', $hash_base,$co{'tree'},$hash_base, $formats_nav);
4010 git_print_header_div
('commit', esc_html
($co{'title'}), $hash_base);
4011 git_print_page_path
($file_name, 'blob', $hash_base);
4012 print "<div class=\"page_body\">\n";
4014 <table class="blame">
4023 my @line_class = (qw(light dark));
4024 my $line_class_len = scalar (@line_class);
4025 my $line_class_num = $#line_class;
4026 while (my $line = <$fd>) {
4038 $line_class_num = ($line_class_num + 1) % $line_class_len;
4040 if ($line =~ m/^([0-9a-fA-F]{40})\t\(\s*([^\t]+)\t(\d+) [+-]\d\d\d\d\t(\d+)\)(.*)$/) {
4047 print qq( <tr
><td colspan
="5" class="error">Unable to parse
: $line</td></tr
>\n);
4050 $short_rev = substr ($long_rev, 0, 8);
4051 $age = time () - $time;
4052 $age_str = age_string
($age);
4053 $age_str =~ s/ / /g;
4054 $age_class = age_class
($age);
4055 $author = esc_html
($author);
4056 $author =~ s/ / /g;
4058 $data = untabify
($data);
4059 $data = esc_html
($data);
4062 <tr class="$line_class[$line_class_num]">
4063 <td class="sha1"><a href="${\href (action=>"commit", hash=>$long_rev)}" class="text">$short_rev..</a></td>
4064 <td class="$age_class">$age_str</td>
4066 <td class="linenr"><a id="$lineno" href="#$lineno" class="linenr">$lineno</a></td>
4067 <td class="pre">$data</td>
4070 } # while (my $line = <$fd>)
4071 print "</table>\n\n";
4073 or print "Reading blob failed.\n";
4079 my $head = git_get_head_hash
($project);
4081 git_print_page_nav
('','', $head,undef,$head);
4082 git_print_header_div
('summary', $project);
4084 my @tagslist = git_get_tags_list
();
4086 git_tags_body
(\
@tagslist);
4092 my $head = git_get_head_hash
($project);
4094 git_print_page_nav
('','', $head,undef,$head);
4095 git_print_header_div
('summary', $project);
4097 my @headslist = git_get_heads_list
();
4099 git_heads_body
(\
@headslist, $head);
4104 sub git_blob_plain
{
4107 if (!defined $hash) {
4108 if (defined $file_name) {
4109 my $base = $hash_base || git_get_head_hash
($project);
4110 $hash = git_get_hash_by_path
($base, $file_name, "blob")
4111 or die_error
(undef, "Error lookup file");
4113 die_error
(undef, "No file name defined");
4115 } elsif ($hash =~ m/^[0-9a-fA-F]{40}$/) {
4116 # blobs defined by non-textual hash id's can be cached
4121 open my $fd, "-|", git_cmd
(), "cat-file", "blob", $hash
4122 or die_error
(undef, "Couldn't cat $file_name, $hash");
4124 $type ||= blob_mimetype
($fd, $file_name);
4126 # save as filename, even when no $file_name is given
4127 my $save_as = "$hash";
4128 if (defined $file_name) {
4129 $save_as = $file_name;
4130 } elsif ($type =~ m/^text\//) {
4137 -content_disposition
=> 'inline; filename="' . "$save_as" . '"');
4139 binmode STDOUT
, ':raw';
4141 binmode STDOUT
, ':utf8'; # as set at the beginning of gitweb.cgi
4149 if (!defined $hash) {
4150 if (defined $file_name) {
4151 my $base = $hash_base || git_get_head_hash
($project);
4152 $hash = git_get_hash_by_path
($base, $file_name, "blob")
4153 or die_error
(undef, "Error lookup file");
4155 die_error
(undef, "No file name defined");
4157 } elsif ($hash =~ m/^[0-9a-fA-F]{40}$/) {
4158 # blobs defined by non-textual hash id's can be cached
4162 my ($have_blame) = gitweb_check_feature
('blame');
4163 open my $fd, "-|", git_cmd
(), "cat-file", "blob", $hash
4164 or die_error
(undef, "Couldn't cat $file_name, $hash");
4165 my $mimetype = blob_mimetype
($fd, $file_name);
4166 if ($mimetype !~ m!^(?:text/|image/(?:gif|png|jpeg)$)!) {
4168 return git_blob_plain
($mimetype);
4170 # we can have blame only for text/* mimetype
4171 $have_blame &&= ($mimetype =~ m!^text/!);
4173 git_header_html
(undef, $expires);
4174 my $formats_nav = '';
4175 if (defined $hash_base && (my %co = parse_commit
($hash_base))) {
4176 if (defined $file_name) {
4179 $cgi->a({-href
=> href
(action
=>"blame", hash_base
=>$hash_base,
4180 hash
=>$hash, file_name
=>$file_name)},
4185 $cgi->a({-href
=> href
(action
=>"history", hash_base
=>$hash_base,
4186 hash
=>$hash, file_name
=>$file_name)},
4189 $cgi->a({-href
=> href
(action
=>"blob_plain",
4190 hash
=>$hash, file_name
=>$file_name)},
4193 $cgi->a({-href
=> href
(action
=>"blob",
4194 hash_base
=>"HEAD", file_name
=>$file_name)},
4198 $cgi->a({-href
=> href
(action
=>"blob_plain", hash
=>$hash)}, "raw");
4200 git_print_page_nav
('','', $hash_base,$co{'tree'},$hash_base, $formats_nav);
4201 git_print_header_div
('commit', esc_html
($co{'title'}), $hash_base);
4203 print "<div class=\"page_nav\">\n" .
4204 "<br/><br/></div>\n" .
4205 "<div class=\"title\">$hash</div>\n";
4207 git_print_page_path
($file_name, "blob", $hash_base);
4208 print "<div class=\"page_body\">\n";
4209 if ($mimetype =~ m!^text/!) {
4211 while (my $line = <$fd>) {
4214 $line = untabify
($line);
4215 printf "<div class=\"pre\"><a id=\"l%i\" href=\"#l%i\" class=\"linenr\">%4i</a> %s</div>\n",
4216 $nr, $nr, $nr, esc_html
($line, -nbsp
=>1);
4218 } elsif ($mimetype =~ m!^image/!) {
4219 print qq!<img type
="$mimetype"!;
4221 print qq! alt
="$file_name" title
="$file_name"!;
4224 href(action=>"blob_plain
", hash=>$hash,
4225 hash_base=>$hash_base, file_name=>$file_name) .
4229 or print "Reading blob failed.\n";
4235 if (!defined $hash_base) {
4236 $hash_base = "HEAD";
4238 if (!defined $hash) {
4239 if (defined $file_name) {
4240 $hash = git_get_hash_by_path
($hash_base, $file_name, "tree");
4246 open my $fd, "-|", git_cmd
(), "ls-tree", '-z', $hash
4247 or die_error
(undef, "Open git-ls-tree failed");
4248 my @entries = map { chomp; $_ } <$fd>;
4249 close $fd or die_error
(undef, "Reading tree failed");
4252 my $refs = git_get_references
();
4253 my $ref = format_ref_marker
($refs, $hash_base);
4256 my ($have_blame) = gitweb_check_feature
('blame');
4257 if (defined $hash_base && (my %co = parse_commit
($hash_base))) {
4259 if (defined $file_name) {
4261 $cgi->a({-href
=> href
(action
=>"history", hash_base
=>$hash_base,
4262 hash
=>$hash, file_name
=>$file_name)},
4264 $cgi->a({-href
=> href
(action
=>"tree",
4265 hash_base
=>"HEAD", file_name
=>$file_name)},
4268 my $snapshot_links = format_snapshot_links
($hash);
4269 if (defined $snapshot_links) {
4270 # FIXME: Should be available when we have no hash base as well.
4271 push @views_nav, $snapshot_links;
4273 git_print_page_nav
('tree','', $hash_base, undef, undef, join(' | ', @views_nav));
4274 git_print_header_div
('commit', esc_html
($co{'title'}) . $ref, $hash_base);
4277 print "<div class=\"page_nav\">\n";
4278 print "<br/><br/></div>\n";
4279 print "<div class=\"title\">$hash</div>\n";
4281 if (defined $file_name) {
4282 $basedir = $file_name;
4283 if ($basedir ne '' && substr($basedir, -1) ne '/') {
4287 git_print_page_path
($file_name, 'tree', $hash_base);
4288 print "<div class=\"page_body\">\n";
4289 print "<table cellspacing=\"0\">\n";
4291 # '..' (top directory) link if possible
4292 if (defined $hash_base &&
4293 defined $file_name && $file_name =~ m![^/]+$!) {
4295 print "<tr class=\"dark\">\n";
4297 print "<tr class=\"light\">\n";
4301 my $up = $file_name;
4302 $up =~ s!/?[^/]+$!!;
4303 undef $up unless $up;
4304 # based on git_print_tree_entry
4305 print '<td class="mode">' . mode_str
('040000') . "</td>\n";
4306 print '<td class="list">';
4307 print $cgi->a({-href
=> href
(action
=>"tree", hash_base
=>$hash_base,
4311 print "<td class=\"link\"></td>\n";
4315 foreach my $line (@entries) {
4316 my %t = parse_ls_tree_line
($line, -z
=> 1);
4319 print "<tr class=\"dark\">\n";
4321 print "<tr class=\"light\">\n";
4325 git_print_tree_entry
(\
%t, $basedir, $hash_base, $have_blame);
4329 print "</table>\n" .
4335 my @supported_fmts = gitweb_check_feature
('snapshot');
4336 @supported_fmts = filter_snapshot_fmts
(@supported_fmts);
4338 my $format = $cgi->param('sf');
4339 if (!@supported_fmts) {
4340 die_error
('403 Permission denied', "Permission denied");
4342 # default to first supported snapshot format
4343 $format ||= $supported_fmts[0];
4344 if ($format !~ m/^[a-z0-9]+$/) {
4345 die_error
(undef, "Invalid snapshot format parameter");
4346 } elsif (!exists($known_snapshot_formats{$format})) {
4347 die_error
(undef, "Unknown snapshot format");
4348 } elsif (!grep($_ eq $format, @supported_fmts)) {
4349 die_error
(undef, "Unsupported snapshot format");
4352 if (!defined $hash) {
4353 $hash = git_get_head_hash
($project);
4356 my $git_command = git_cmd_str
();
4357 my $name = $project;
4358 $name =~ s
,([^/])/*\
.git
$,$1,;
4359 $name = basename
($name);
4360 my $filename = to_utf8
($name);
4361 $name =~ s/\047/\047\\\047\047/g;
4363 $filename .= "-$hash$known_snapshot_formats{$format}{'suffix'}";
4364 $cmd = "$git_command archive " .
4365 "--format=$known_snapshot_formats{$format}{'format'} " .
4366 "--prefix=\'$name\'/ $hash";
4367 if (exists $known_snapshot_formats{$format}{'compressor'}) {
4368 $cmd .= ' | ' . join ' ', @
{$known_snapshot_formats{$format}{'compressor'}};
4372 -type
=> $known_snapshot_formats{$format}{'type'},
4373 -content_disposition
=> 'inline; filename="' . "$filename" . '"',
4374 -status
=> '200 OK');
4376 open my $fd, "-|", $cmd
4377 or die_error
(undef, "Execute git-archive failed");
4378 binmode STDOUT
, ':raw';
4380 binmode STDOUT
, ':utf8'; # as set at the beginning of gitweb.cgi
4385 my $head = git_get_head_hash
($project);
4386 if (!defined $hash) {
4389 if (!defined $page) {
4392 my $refs = git_get_references
();
4394 my @commitlist = parse_commits
($hash, 101, (100 * $page));
4396 my $paging_nav = format_paging_nav
('log', $hash, $head, $page, (100 * ($page+1)));
4399 git_print_page_nav
('log','', $hash,undef,undef, $paging_nav);
4402 my %co = parse_commit
($hash);
4404 git_print_header_div
('summary', $project);
4405 print "<div class=\"page_body\"> Last change $co{'age_string'}.<br/><br/></div>\n";
4407 my $to = ($#commitlist >= 99) ?
(99) : ($#commitlist);
4408 for (my $i = 0; $i <= $to; $i++) {
4409 my %co = %{$commitlist[$i]};
4411 my $commit = $co{'id'};
4412 my $ref = format_ref_marker
($refs, $commit);
4413 my %ad = parse_date
($co{'author_epoch'});
4414 git_print_header_div
('commit',
4415 "<span class=\"age\">$co{'age_string'}</span>" .
4416 esc_html
($co{'title'}) . $ref,
4418 print "<div class=\"title_text\">\n" .
4419 "<div class=\"log_link\">\n" .
4420 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$commit)}, "commit") .
4422 $cgi->a({-href
=> href
(action
=>"commitdiff", hash
=>$commit)}, "commitdiff") .
4424 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$commit, hash_base
=>$commit)}, "tree") .
4427 "<i>" . esc_html
($co{'author_name'}) . " [$ad{'rfc2822'}]</i><br/>\n" .
4430 print "<div class=\"log_body\">\n";
4431 git_print_log
($co{'comment'}, -final_empty_line
=> 1);
4434 if ($#commitlist >= 100) {
4435 print "<div class=\"page_nav\">\n";
4436 print $cgi->a({-href
=> href
(action
=>"log", hash
=>$hash, page
=>$page+1),
4437 -accesskey
=> "n", -title
=> "Alt-n"}, "next");
4444 $hash ||= $hash_base || "HEAD";
4445 my %co = parse_commit
($hash);
4447 die_error
(undef, "Unknown commit object");
4449 my %ad = parse_date
($co{'author_epoch'}, $co{'author_tz'});
4450 my %cd = parse_date
($co{'committer_epoch'}, $co{'committer_tz'});
4452 my $parent = $co{'parent'};
4453 my $parents = $co{'parents'}; # listref
4455 # we need to prepare $formats_nav before any parameter munging
4457 if (!defined $parent) {
4459 $formats_nav .= '(initial)';
4460 } elsif (@
$parents == 1) {
4461 # single parent commit
4464 $cgi->a({-href
=> href
(action
=>"commit",
4466 esc_html
(substr($parent, 0, 7))) .
4473 $cgi->a({-href
=> href
(action
=>"commit",
4475 esc_html
(substr($_, 0, 7)));
4480 if (!defined $parent) {
4484 open my $fd, "-|", git_cmd
(), "diff-tree", '-r', "--no-commit-id",
4486 (@
$parents <= 1 ?
$parent : '-c'),
4488 or die_error
(undef, "Open git-diff-tree failed");
4489 @difftree = map { chomp; $_ } <$fd>;
4490 close $fd or die_error
(undef, "Reading git-diff-tree failed");
4492 # non-textual hash id's can be cached
4494 if ($hash =~ m/^[0-9a-fA-F]{40}$/) {
4497 my $refs = git_get_references
();
4498 my $ref = format_ref_marker
($refs, $co{'id'});
4500 git_header_html
(undef, $expires);
4501 git_print_page_nav
('commit', '',
4502 $hash, $co{'tree'}, $hash,
4505 if (defined $co{'parent'}) {
4506 git_print_header_div
('commitdiff', esc_html
($co{'title'}) . $ref, $hash);
4508 git_print_header_div
('tree', esc_html
($co{'title'}) . $ref, $co{'tree'}, $hash);
4510 print "<div class=\"title_text\">\n" .
4511 "<table cellspacing=\"0\">\n";
4512 print "<tr><td>author</td><td>" . esc_html
($co{'author'}) . "</td></tr>\n".
4514 "<td></td><td> $ad{'rfc2822'}";
4515 if ($ad{'hour_local'} < 6) {
4516 printf(" (<span class=\"atnight\">%02d:%02d</span> %s)",
4517 $ad{'hour_local'}, $ad{'minute_local'}, $ad{'tz_local'});
4519 printf(" (%02d:%02d %s)",
4520 $ad{'hour_local'}, $ad{'minute_local'}, $ad{'tz_local'});
4524 print "<tr><td>committer</td><td>" . esc_html
($co{'committer'}) . "</td></tr>\n";
4525 print "<tr><td></td><td> $cd{'rfc2822'}" .
4526 sprintf(" (%02d:%02d %s)", $cd{'hour_local'}, $cd{'minute_local'}, $cd{'tz_local'}) .
4528 print "<tr><td>commit</td><td class=\"sha1\">$co{'id'}</td></tr>\n";
4531 "<td class=\"sha1\">" .
4532 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$co{'tree'}, hash_base
=>$hash),
4533 class => "list"}, $co{'tree'}) .
4535 "<td class=\"link\">" .
4536 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$co{'tree'}, hash_base
=>$hash)},
4538 my $snapshot_links = format_snapshot_links
($hash);
4539 if (defined $snapshot_links) {
4540 print " | " . $snapshot_links;
4545 foreach my $par (@
$parents) {
4548 "<td class=\"sha1\">" .
4549 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$par),
4550 class => "list"}, $par) .
4552 "<td class=\"link\">" .
4553 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$par)}, "commit") .
4555 $cgi->a({-href
=> href
(action
=>"commitdiff", hash
=>$hash, hash_parent
=>$par)}, "diff") .
4562 print "<div class=\"page_body\">\n";
4563 git_print_log
($co{'comment'});
4566 git_difftree_body
(\
@difftree, $hash, @
$parents);
4572 # object is defined by:
4573 # - hash or hash_base alone
4574 # - hash_base and file_name
4577 # - hash or hash_base alone
4578 if ($hash || ($hash_base && !defined $file_name)) {
4579 my $object_id = $hash || $hash_base;
4581 my $git_command = git_cmd_str
();
4582 open my $fd, "-|", "$git_command cat-file -t $object_id 2>/dev/null"
4583 or die_error
('404 Not Found', "Object does not exist");
4587 or die_error
('404 Not Found', "Object does not exist");
4589 # - hash_base and file_name
4590 } elsif ($hash_base && defined $file_name) {
4591 $file_name =~ s
,/+$,,;
4593 system(git_cmd
(), "cat-file", '-e', $hash_base) == 0
4594 or die_error
('404 Not Found', "Base object does not exist");
4596 # here errors should not hapen
4597 open my $fd, "-|", git_cmd
(), "ls-tree", $hash_base, "--", $file_name
4598 or die_error
(undef, "Open git-ls-tree failed");
4602 #'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'
4603 unless ($line && $line =~ m/^([0-9]+) (.+) ([0-9a-fA-F]{40})\t/) {
4604 die_error
('404 Not Found', "File or directory for given base does not exist");
4609 die_error
('404 Not Found', "Not enough information to find object");
4612 print $cgi->redirect(-uri
=> href
(action
=>$type, -full
=>1,
4613 hash
=>$hash, hash_base
=>$hash_base,
4614 file_name
=>$file_name),
4615 -status
=> '302 Found');
4619 my $format = shift || 'html';
4626 # preparing $fd and %diffinfo for git_patchset_body
4628 if (defined $hash_base && defined $hash_parent_base) {
4629 if (defined $file_name) {
4631 open $fd, "-|", git_cmd
(), "diff-tree", '-r', @diff_opts,
4632 $hash_parent_base, $hash_base,
4633 "--", (defined $file_parent ?
$file_parent : ()), $file_name
4634 or die_error
(undef, "Open git-diff-tree failed");
4635 @difftree = map { chomp; $_ } <$fd>;
4637 or die_error
(undef, "Reading git-diff-tree failed");
4639 or die_error
('404 Not Found', "Blob diff not found");
4641 } elsif (defined $hash &&
4642 $hash =~ /[0-9a-fA-F]{40}/) {
4643 # try to find filename from $hash
4645 # read filtered raw output
4646 open $fd, "-|", git_cmd
(), "diff-tree", '-r', @diff_opts,
4647 $hash_parent_base, $hash_base, "--"
4648 or die_error
(undef, "Open git-diff-tree failed");
4650 # ':100644 100644 03b21826... 3b93d5e7... M ls-files.c'
4652 grep { /^:[0-7]{6} [0-7]{6} [0-9a-fA-F]{40} $hash/ }
4653 map { chomp; $_ } <$fd>;
4655 or die_error
(undef, "Reading git-diff-tree failed");
4657 or die_error
('404 Not Found', "Blob diff not found");
4660 die_error
('404 Not Found', "Missing one of the blob diff parameters");
4663 if (@difftree > 1) {
4664 die_error
('404 Not Found', "Ambiguous blob diff specification");
4667 %diffinfo = parse_difftree_raw_line
($difftree[0]);
4668 $file_parent ||= $diffinfo{'from_file'} || $file_name || $diffinfo{'file'};
4669 $file_name ||= $diffinfo{'to_file'} || $diffinfo{'file'};
4671 $hash_parent ||= $diffinfo{'from_id'};
4672 $hash ||= $diffinfo{'to_id'};
4674 # non-textual hash id's can be cached
4675 if ($hash_base =~ m/^[0-9a-fA-F]{40}$/ &&
4676 $hash_parent_base =~ m/^[0-9a-fA-F]{40}$/) {
4681 open $fd, "-|", git_cmd
(), "diff-tree", '-r', @diff_opts,
4682 '-p', ($format eq 'html' ?
"--full-index" : ()),
4683 $hash_parent_base, $hash_base,
4684 "--", (defined $file_parent ?
$file_parent : ()), $file_name
4685 or die_error
(undef, "Open git-diff-tree failed");
4688 # old/legacy style URI
4689 if (!%diffinfo && # if new style URI failed
4690 defined $hash && defined $hash_parent) {
4691 # fake git-diff-tree raw output
4692 $diffinfo{'from_mode'} = $diffinfo{'to_mode'} = "blob";
4693 $diffinfo{'from_id'} = $hash_parent;
4694 $diffinfo{'to_id'} = $hash;
4695 if (defined $file_name) {
4696 if (defined $file_parent) {
4697 $diffinfo{'status'} = '2';
4698 $diffinfo{'from_file'} = $file_parent;
4699 $diffinfo{'to_file'} = $file_name;
4700 } else { # assume not renamed
4701 $diffinfo{'status'} = '1';
4702 $diffinfo{'from_file'} = $file_name;
4703 $diffinfo{'to_file'} = $file_name;
4705 } else { # no filename given
4706 $diffinfo{'status'} = '2';
4707 $diffinfo{'from_file'} = $hash_parent;
4708 $diffinfo{'to_file'} = $hash;
4711 # non-textual hash id's can be cached
4712 if ($hash =~ m/^[0-9a-fA-F]{40}$/ &&
4713 $hash_parent =~ m/^[0-9a-fA-F]{40}$/) {
4718 open $fd, "-|", git_cmd
(), "diff", @diff_opts,
4719 '-p', ($format eq 'html' ?
"--full-index" : ()),
4720 $hash_parent, $hash, "--"
4721 or die_error
(undef, "Open git-diff failed");
4723 die_error
('404 Not Found', "Missing one of the blob diff parameters")
4728 if ($format eq 'html') {
4730 $cgi->a({-href
=> href
(action
=>"blobdiff_plain",
4731 hash
=>$hash, hash_parent
=>$hash_parent,
4732 hash_base
=>$hash_base, hash_parent_base
=>$hash_parent_base,
4733 file_name
=>$file_name, file_parent
=>$file_parent)},
4735 git_header_html
(undef, $expires);
4736 if (defined $hash_base && (my %co = parse_commit
($hash_base))) {
4737 git_print_page_nav
('','', $hash_base,$co{'tree'},$hash_base, $formats_nav);
4738 git_print_header_div
('commit', esc_html
($co{'title'}), $hash_base);
4740 print "<div class=\"page_nav\"><br/>$formats_nav<br/></div>\n";
4741 print "<div class=\"title\">$hash vs $hash_parent</div>\n";
4743 if (defined $file_name) {
4744 git_print_page_path
($file_name, "blob", $hash_base);
4746 print "<div class=\"page_path\"></div>\n";
4749 } elsif ($format eq 'plain') {
4751 -type
=> 'text/plain',
4752 -charset
=> 'utf-8',
4753 -expires
=> $expires,
4754 -content_disposition
=> 'inline; filename="' . "$file_name" . '.patch"');
4756 print "X-Git-Url: " . $cgi->self_url() . "\n\n";
4759 die_error
(undef, "Unknown blobdiff format");
4763 if ($format eq 'html') {
4764 print "<div class=\"page_body\">\n";
4766 git_patchset_body
($fd, [ \
%diffinfo ], $hash_base, $hash_parent_base);
4769 print "</div>\n"; # class="page_body"
4773 while (my $line = <$fd>) {
4774 $line =~ s!a/($hash|$hash_parent)!'a/'.esc_path($diffinfo{'from_file'})!eg;
4775 $line =~ s!b/($hash|$hash_parent)!'b/'.esc_path($diffinfo{'to_file'})!eg;
4779 last if $line =~ m!^\+\+\+!;
4787 sub git_blobdiff_plain
{
4788 git_blobdiff
('plain');
4791 sub git_commitdiff
{
4792 my $format = shift || 'html';
4793 $hash ||= $hash_base || "HEAD";
4794 my %co = parse_commit
($hash);
4796 die_error
(undef, "Unknown commit object");
4799 # choose format for commitdiff for merge
4800 if (! defined $hash_parent && @
{$co{'parents'}} > 1) {
4801 $hash_parent = '--cc';
4803 # we need to prepare $formats_nav before almost any parameter munging
4805 if ($format eq 'html') {
4807 $cgi->a({-href
=> href
(action
=>"commitdiff_plain",
4808 hash
=>$hash, hash_parent
=>$hash_parent)},
4811 if (defined $hash_parent &&
4812 $hash_parent ne '-c' && $hash_parent ne '--cc') {
4813 # commitdiff with two commits given
4814 my $hash_parent_short = $hash_parent;
4815 if ($hash_parent =~ m/^[0-9a-fA-F]{40}$/) {
4816 $hash_parent_short = substr($hash_parent, 0, 7);
4820 for (my $i = 0; $i < @
{$co{'parents'}}; $i++) {
4821 if ($co{'parents'}[$i] eq $hash_parent) {
4822 $formats_nav .= ' parent ' . ($i+1);
4826 $formats_nav .= ': ' .
4827 $cgi->a({-href
=> href
(action
=>"commitdiff",
4828 hash
=>$hash_parent)},
4829 esc_html
($hash_parent_short)) .
4831 } elsif (!$co{'parent'}) {
4833 $formats_nav .= ' (initial)';
4834 } elsif (scalar @
{$co{'parents'}} == 1) {
4835 # single parent commit
4838 $cgi->a({-href
=> href
(action
=>"commitdiff",
4839 hash
=>$co{'parent'})},
4840 esc_html
(substr($co{'parent'}, 0, 7))) .
4844 if ($hash_parent eq '--cc') {
4845 $formats_nav .= ' | ' .
4846 $cgi->a({-href
=> href
(action
=>"commitdiff",
4847 hash
=>$hash, hash_parent
=>'-c')},
4849 } else { # $hash_parent eq '-c'
4850 $formats_nav .= ' | ' .
4851 $cgi->a({-href
=> href
(action
=>"commitdiff",
4852 hash
=>$hash, hash_parent
=>'--cc')},
4858 $cgi->a({-href
=> href
(action
=>"commitdiff",
4860 esc_html
(substr($_, 0, 7)));
4861 } @
{$co{'parents'}} ) .
4866 my $hash_parent_param = $hash_parent;
4867 if (!defined $hash_parent_param) {
4868 # --cc for multiple parents, --root for parentless
4869 $hash_parent_param =
4870 @
{$co{'parents'}} > 1 ?
'--cc' : $co{'parent'} || '--root';
4876 if ($format eq 'html') {
4877 open $fd, "-|", git_cmd
(), "diff-tree", '-r', @diff_opts,
4878 "--no-commit-id", "--patch-with-raw", "--full-index",
4879 $hash_parent_param, $hash, "--"
4880 or die_error
(undef, "Open git-diff-tree failed");
4882 while (my $line = <$fd>) {
4884 # empty line ends raw part of diff-tree output
4886 push @difftree, scalar parse_difftree_raw_line
($line);
4889 } elsif ($format eq 'plain') {
4890 open $fd, "-|", git_cmd
(), "diff-tree", '-r', @diff_opts,
4891 '-p', $hash_parent_param, $hash, "--"
4892 or die_error
(undef, "Open git-diff-tree failed");
4895 die_error
(undef, "Unknown commitdiff format");
4898 # non-textual hash id's can be cached
4900 if ($hash =~ m/^[0-9a-fA-F]{40}$/) {
4904 # write commit message
4905 if ($format eq 'html') {
4906 my $refs = git_get_references
();
4907 my $ref = format_ref_marker
($refs, $co{'id'});
4909 git_header_html
(undef, $expires);
4910 git_print_page_nav
('commitdiff','', $hash,$co{'tree'},$hash, $formats_nav);
4911 git_print_header_div
('commit', esc_html
($co{'title'}) . $ref, $hash);
4912 git_print_authorship
(\
%co);
4913 print "<div class=\"page_body\">\n";
4914 if (@
{$co{'comment'}} > 1) {
4915 print "<div class=\"log\">\n";
4916 git_print_log
($co{'comment'}, -final_empty_line
=> 1, -remove_title
=> 1);
4917 print "</div>\n"; # class="log"
4920 } elsif ($format eq 'plain') {
4921 my $refs = git_get_references
("tags");
4922 my $tagname = git_get_rev_name_tags
($hash);
4923 my $filename = basename
($project) . "-$hash.patch";
4926 -type
=> 'text/plain',
4927 -charset
=> 'utf-8',
4928 -expires
=> $expires,
4929 -content_disposition
=> 'inline; filename="' . "$filename" . '"');
4930 my %ad = parse_date
($co{'author_epoch'}, $co{'author_tz'});
4933 Date: $ad{'rfc2822'} ($ad{'tz_local'})
4934 Subject: $co{'title'}
4936 print "X-Git-Tag: $tagname\n" if $tagname;
4937 print "X-Git-Url: " . $cgi->self_url() . "\n\n";
4939 foreach my $line (@
{$co{'comment'}}) {
4946 if ($format eq 'html') {
4947 my $use_parents = !defined $hash_parent ||
4948 $hash_parent eq '-c' || $hash_parent eq '--cc';
4949 git_difftree_body
(\
@difftree, $hash,
4950 $use_parents ? @
{$co{'parents'}} : $hash_parent);
4953 git_patchset_body
($fd, \
@difftree, $hash,
4954 $use_parents ? @
{$co{'parents'}} : $hash_parent);
4956 print "</div>\n"; # class="page_body"
4959 } elsif ($format eq 'plain') {
4963 or print "Reading git-diff-tree failed\n";
4967 sub git_commitdiff_plain
{
4968 git_commitdiff
('plain');
4972 if (!defined $hash_base) {
4973 $hash_base = git_get_head_hash
($project);
4975 if (!defined $page) {
4979 my %co = parse_commit
($hash_base);
4981 die_error
(undef, "Unknown commit object");
4984 my $refs = git_get_references
();
4985 my $limit = sprintf("--max-count=%i", (100 * ($page+1)));
4987 if (!defined $hash && defined $file_name) {
4988 $hash = git_get_hash_by_path
($hash_base, $file_name);
4990 if (defined $hash) {
4991 $ftype = git_get_type
($hash);
4994 my @commitlist = parse_commits
($hash_base, 101, (100 * $page), "--full-history", $file_name);
4996 my $paging_nav = '';
4999 $cgi->a({-href
=> href
(action
=>"history", hash
=>$hash, hash_base
=>$hash_base,
5000 file_name
=>$file_name)},
5002 $paging_nav .= " ⋅ " .
5003 $cgi->a({-href
=> href
(action
=>"history", hash
=>$hash, hash_base
=>$hash_base,
5004 file_name
=>$file_name, page
=>$page-1),
5005 -accesskey
=> "p", -title
=> "Alt-p"}, "prev");
5007 $paging_nav .= "first";
5008 $paging_nav .= " ⋅ prev";
5010 if ($#commitlist >= 100) {
5011 $paging_nav .= " ⋅ " .
5012 $cgi->a({-href
=> href
(action
=>"history", hash
=>$hash, hash_base
=>$hash_base,
5013 file_name
=>$file_name, page
=>$page+1),
5014 -accesskey
=> "n", -title
=> "Alt-n"}, "next");
5016 $paging_nav .= " ⋅ next";
5019 if ($#commitlist >= 100) {
5021 $cgi->a({-href
=> href
(action
=>"history", hash
=>$hash, hash_base
=>$hash_base,
5022 file_name
=>$file_name, page
=>$page+1),
5023 -accesskey
=> "n", -title
=> "Alt-n"}, "next");
5027 git_print_page_nav
('history','', $hash_base,$co{'tree'},$hash_base, $paging_nav);
5028 git_print_header_div
('commit', esc_html
($co{'title'}), $hash_base);
5029 git_print_page_path
($file_name, $ftype, $hash_base);
5031 git_history_body
(\
@commitlist, 0, 99,
5032 $refs, $hash_base, $ftype, $next_link);
5038 my ($have_search) = gitweb_check_feature
('search');
5039 if (!$have_search) {
5040 die_error
('403 Permission denied', "Permission denied");
5042 if (!defined $searchtext) {
5043 die_error
(undef, "Text field empty");
5045 if (!defined $hash) {
5046 $hash = git_get_head_hash
($project);
5048 my %co = parse_commit
($hash);
5050 die_error
(undef, "Unknown commit object");
5052 if (!defined $page) {
5056 $searchtype ||= 'commit';
5057 if ($searchtype eq 'pickaxe') {
5058 # pickaxe may take all resources of your box and run for several minutes
5059 # with every query - so decide by yourself how public you make this feature
5060 my ($have_pickaxe) = gitweb_check_feature
('pickaxe');
5061 if (!$have_pickaxe) {
5062 die_error
('403 Permission denied', "Permission denied");
5065 if ($searchtype eq 'grep') {
5066 my ($have_grep) = gitweb_check_feature
('grep');
5068 die_error
('403 Permission denied', "Permission denied");
5074 if ($searchtype eq 'commit' or $searchtype eq 'author' or $searchtype eq 'committer') {
5076 if ($searchtype eq 'commit') {
5077 $greptype = "--grep=";
5078 } elsif ($searchtype eq 'author') {
5079 $greptype = "--author=";
5080 } elsif ($searchtype eq 'committer') {
5081 $greptype = "--committer=";
5083 $greptype .= $search_regexp;
5084 my @commitlist = parse_commits
($hash, 101, (100 * $page), $greptype);
5086 my $paging_nav = '';
5089 $cgi->a({-href
=> href
(action
=>"search", hash
=>$hash,
5090 searchtext
=>$searchtext, searchtype
=>$searchtype)},
5092 $paging_nav .= " ⋅ " .
5093 $cgi->a({-href
=> href
(action
=>"search", hash
=>$hash,
5094 searchtext
=>$searchtext, searchtype
=>$searchtype,
5096 -accesskey
=> "p", -title
=> "Alt-p"}, "prev");
5098 $paging_nav .= "first";
5099 $paging_nav .= " ⋅ prev";
5101 if ($#commitlist >= 100) {
5102 $paging_nav .= " ⋅ " .
5103 $cgi->a({-href
=> href
(action
=>"search", hash
=>$hash,
5104 searchtext
=>$searchtext, searchtype
=>$searchtype,
5106 -accesskey
=> "n", -title
=> "Alt-n"}, "next");
5108 $paging_nav .= " ⋅ next";
5111 if ($#commitlist >= 100) {
5113 $cgi->a({-href
=> href
(action
=>"search", hash
=>$hash,
5114 searchtext
=>$searchtext, searchtype
=>$searchtype,
5116 -accesskey
=> "n", -title
=> "Alt-n"}, "next");
5119 git_print_page_nav
('','', $hash,$co{'tree'},$hash, $paging_nav);
5120 git_print_header_div
('commit', esc_html
($co{'title'}), $hash);
5121 git_search_grep_body
(\
@commitlist, 0, 99, $next_link);
5124 if ($searchtype eq 'pickaxe') {
5125 git_print_page_nav
('','', $hash,$co{'tree'},$hash);
5126 git_print_header_div
('commit', esc_html
($co{'title'}), $hash);
5128 print "<table cellspacing=\"0\">\n";
5131 my $git_command = git_cmd_str
();
5132 my $searchqtext = $searchtext;
5133 $searchqtext =~ s/'/'\\''/;
5134 open my $fd, "-|", "$git_command rev-list $hash | " .
5135 "$git_command diff-tree -r --stdin -S\'$searchqtext\'";
5138 while (my $line = <$fd>) {
5139 if (%co && $line =~ m/^:([0-7]{6}) ([0-7]{6}) ([0-9a-fA-F]{40}) ([0-9a-fA-F]{40}) (.)\t(.*)$/) {
5142 $set{'from_id'} = $3;
5144 $set{'id'} = $set{'to_id'};
5145 if ($set{'id'} =~ m/0{40}/) {
5146 $set{'id'} = $set{'from_id'};
5148 if ($set{'id'} =~ m/0{40}/) {
5152 } elsif ($line =~ m/^([0-9a-fA-F]{40})$/){
5155 print "<tr class=\"dark\">\n";
5157 print "<tr class=\"light\">\n";
5160 print "<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n" .
5161 "<td><i>" . esc_html
(chop_str
($co{'author_name'}, 15, 5)) . "</i></td>\n" .
5163 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$co{'id'}),
5164 -class => "list subject"},
5165 esc_html
(chop_str
($co{'title'}, 50)) . "<br/>");
5166 while (my $setref = shift @files) {
5168 print $cgi->a({-href
=> href
(action
=>"blob", hash_base
=>$co{'id'},
5169 hash
=>$set{'id'}, file_name
=>$set{'file'}),
5171 "<span class=\"match\">" . esc_path
($set{'file'}) . "</span>") .
5175 "<td class=\"link\">" .
5176 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$co{'id'})}, "commit") .
5178 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$co{'tree'}, hash_base
=>$co{'id'})}, "tree");
5182 %co = parse_commit
($1);
5190 if ($searchtype eq 'grep') {
5191 git_print_page_nav
('','', $hash,$co{'tree'},$hash);
5192 git_print_header_div
('commit', esc_html
($co{'title'}), $hash);
5194 print "<table cellspacing=\"0\">\n";
5198 open my $fd, "-|", git_cmd
(), 'grep', '-n', '-i', '-E', $searchtext, $co{'tree'};
5200 while (my $line = <$fd>) {
5202 my ($file, $lno, $ltext, $binary);
5203 last if ($matches++ > 1000);
5204 if ($line =~ /^Binary file (.+) matches$/) {
5208 (undef, $file, $lno, $ltext) = split(/:/, $line, 4);
5210 if ($file ne $lastfile) {
5211 $lastfile and print "</td></tr>\n";
5213 print "<tr class=\"dark\">\n";
5215 print "<tr class=\"light\">\n";
5217 print "<td class=\"list\">".
5218 $cgi->a({-href
=> href
(action
=>"blob", hash
=>$co{'hash'},
5219 file_name
=>"$file"),
5220 -class => "list"}, esc_path
($file));
5221 print "</td><td>\n";
5225 print "<div class=\"binary\">Binary file</div>\n";
5227 $ltext = untabify
($ltext);
5228 if ($ltext =~ m/^(.*)($searchtext)(.*)$/i) {
5229 $ltext = esc_html
($1, -nbsp
=>1);
5230 $ltext .= '<span class="match">';
5231 $ltext .= esc_html
($2, -nbsp
=>1);
5232 $ltext .= '</span>';
5233 $ltext .= esc_html
($3, -nbsp
=>1);
5235 $ltext = esc_html
($ltext, -nbsp
=>1);
5237 print "<div class=\"pre\">" .
5238 $cgi->a({-href
=> href
(action
=>"blob", hash
=>$co{'hash'},
5239 file_name
=>"$file").'#l'.$lno,
5240 -class => "linenr"}, sprintf('%4i', $lno))
5241 . ' ' . $ltext . "</div>\n";
5245 print "</td></tr>\n";
5246 if ($matches > 1000) {
5247 print "<div class=\"diff nodifferences\">Too many matches, listing trimmed</div>\n";
5250 print "<div class=\"diff nodifferences\">No matches found</div>\n";
5259 sub git_search_help
{
5261 git_print_page_nav
('','', $hash,$hash,$hash);
5264 <dt><b>commit</b></dt>
5265 <dd>The commit messages and authorship information will be scanned for the given string.</dd>
5267 my ($have_grep) = gitweb_check_feature
('grep');
5270 <dt><b>grep</b></dt>
5271 <dd>All files in the currently selected tree (HEAD unless you are explicitly browsing
5272 a different one) are searched for the given
5273 <a href="http://en.wikipedia.org/wiki/Regular_expression">regular expression</a>
5274 (POSIX extended) and the matches are listed. On large
5275 trees, this search can take a while and put some strain on the server, so please use it with
5276 some consideration.</dd>
5280 <dt><b>author</b></dt>
5281 <dd>Name and e-mail of the change author and date of birth of the patch will be scanned for the given string.</dd>
5282 <dt><b>committer</b></dt>
5283 <dd>Name and e-mail of the committer and date of commit will be scanned for the given string.</dd>
5285 my ($have_pickaxe) = gitweb_check_feature
('pickaxe');
5286 if ($have_pickaxe) {
5288 <dt><b>pickaxe</b></dt>
5289 <dd>All commits that caused the string to appear or disappear from any file (changes that
5290 added, removed or "modified" the string) will be listed. This search can take a while and
5291 takes a lot of strain on the server, so please use it wisely.</dd>
5299 my $head = git_get_head_hash
($project);
5300 if (!defined $hash) {
5303 if (!defined $page) {
5306 my $refs = git_get_references
();
5308 my @commitlist = parse_commits
($hash, 101, (100 * $page));
5310 my $paging_nav = format_paging_nav
('shortlog', $hash, $head, $page, (100 * ($page+1)));
5312 if ($#commitlist >= 100) {
5314 $cgi->a({-href
=> href
(action
=>"shortlog", hash
=>$hash, page
=>$page+1),
5315 -accesskey
=> "n", -title
=> "Alt-n"}, "next");
5319 git_print_page_nav
('shortlog','', $hash,$hash,$hash, $paging_nav);
5320 git_print_header_div
('summary', $project);
5322 git_shortlog_body
(\
@commitlist, 0, 99, $refs, $next_link);
5327 ## ......................................................................
5328 ## feeds (RSS, Atom; OPML)
5331 my $format = shift || 'atom';
5332 my ($have_blame) = gitweb_check_feature
('blame');
5334 # Atom: http://www.atomenabled.org/developers/syndication/
5335 # RSS: http://www.notestips.com/80256B3A007F2692/1/NAMO5P9UPQ
5336 if ($format ne 'rss' && $format ne 'atom') {
5337 die_error
(undef, "Unknown web feed format");
5340 # log/feed of current (HEAD) branch, log of given branch, history of file/directory
5341 my $head = $hash || 'HEAD';
5342 my @commitlist = parse_commits
($head, 150, 0, undef, $file_name);
5346 my $content_type = "application/$format+xml";
5347 if (defined $cgi->http('HTTP_ACCEPT') &&
5348 $cgi->Accept('text/xml') > $cgi->Accept($content_type)) {
5349 # browser (feed reader) prefers text/xml
5350 $content_type = 'text/xml';
5352 if (defined($commitlist[0])) {
5353 %latest_commit = %{$commitlist[0]};
5354 %latest_date = parse_date
($latest_commit{'author_epoch'});
5356 -type
=> $content_type,
5357 -charset
=> 'utf-8',
5358 -last_modified
=> $latest_date{'rfc2822'});
5361 -type
=> $content_type,
5362 -charset
=> 'utf-8');
5365 # Optimization: skip generating the body if client asks only
5366 # for Last-Modified date.
5367 return if ($cgi->request_method() eq 'HEAD');
5370 my $title = "$site_name - $project/$action";
5371 my $feed_type = 'log';
5372 if (defined $hash) {
5373 $title .= " - '$hash'";
5374 $feed_type = 'branch log';
5375 if (defined $file_name) {
5376 $title .= " :: $file_name";
5377 $feed_type = 'history';
5379 } elsif (defined $file_name) {
5380 $title .= " - $file_name";
5381 $feed_type = 'history';
5383 $title .= " $feed_type";
5384 my $descr = git_get_project_description
($project);
5385 if (defined $descr) {
5386 $descr = esc_html
($descr);
5388 $descr = "$project " .
5389 ($format eq 'rss' ?
'RSS' : 'Atom') .
5392 my $owner = git_get_project_owner
($project);
5393 $owner = esc_html
($owner);
5397 if (defined $file_name) {
5398 $alt_url = href
(-full
=>1, action
=>"history", hash
=>$hash, file_name
=>$file_name);
5399 } elsif (defined $hash) {
5400 $alt_url = href
(-full
=>1, action
=>"log", hash
=>$hash);
5402 $alt_url = href
(-full
=>1, action
=>"summary");
5404 print qq!<?xml version
="1.0" encoding
="utf-8"?
>\n!;
5405 if ($format eq 'rss') {
5407 <rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/">
5410 print "<title>$title</title>\n" .
5411 "<link>$alt_url</link>\n" .
5412 "<description>$descr</description>\n" .
5413 "<language>en</language>\n";
5414 } elsif ($format eq 'atom') {
5416 <feed xmlns="http://www.w3.org/2005/Atom">
5418 print "<title>$title</title>\n" .
5419 "<subtitle>$descr</subtitle>\n" .
5420 '<link rel="alternate" type="text/html" href="' .
5421 $alt_url . '" />' . "\n" .
5422 '<link rel="self" type="' . $content_type . '" href="' .
5423 $cgi->self_url() . '" />' . "\n" .
5424 "<id>" . href
(-full
=>1) . "</id>\n" .
5425 # use project owner for feed author
5426 "<author><name>$owner</name></author>\n";
5427 if (defined $favicon) {
5428 print "<icon>" . esc_url
($favicon) . "</icon>\n";
5430 if (defined $logo_url) {
5431 # not twice as wide as tall: 72 x 27 pixels
5432 print "<logo>" . esc_url
($logo) . "</logo>\n";
5434 if (! %latest_date) {
5435 # dummy date to keep the feed valid until commits trickle in:
5436 print "<updated>1970-01-01T00:00:00Z</updated>\n";
5438 print "<updated>$latest_date{'iso-8601'}</updated>\n";
5443 for (my $i = 0; $i <= $#commitlist; $i++) {
5444 my %co = %{$commitlist[$i]};
5445 my $commit = $co{'id'};
5446 # we read 150, we always show 30 and the ones more recent than 48 hours
5447 if (($i >= 20) && ((time - $co{'author_epoch'}) > 48*60*60)) {
5450 my %cd = parse_date
($co{'author_epoch'});
5452 # get list of changed files
5453 open my $fd, "-|", git_cmd
(), "diff-tree", '-r', @diff_opts,
5454 $co{'parent'} || "--root",
5455 $co{'id'}, "--", (defined $file_name ?
$file_name : ())
5457 my @difftree = map { chomp; $_ } <$fd>;
5461 # print element (entry, item)
5462 my $co_url = href
(-full
=>1, action
=>"commit", hash
=>$commit);
5463 if ($format eq 'rss') {
5465 "<title>" . esc_html
($co{'title'}) . "</title>\n" .
5466 "<author>" . esc_html
($co{'author'}) . "</author>\n" .
5467 "<pubDate>$cd{'rfc2822'}</pubDate>\n" .
5468 "<guid isPermaLink=\"true\">$co_url</guid>\n" .
5469 "<link>$co_url</link>\n" .
5470 "<description>" . esc_html
($co{'title'}) . "</description>\n" .
5471 "<content:encoded>" .
5473 } elsif ($format eq 'atom') {
5475 "<title type=\"html\">" . esc_html
($co{'title'}) . "</title>\n" .
5476 "<updated>$cd{'iso-8601'}</updated>\n" .
5478 " <name>" . esc_html
($co{'author_name'}) . "</name>\n";
5479 if ($co{'author_email'}) {
5480 print " <email>" . esc_html
($co{'author_email'}) . "</email>\n";
5482 print "</author>\n" .
5483 # use committer for contributor
5485 " <name>" . esc_html
($co{'committer_name'}) . "</name>\n";
5486 if ($co{'committer_email'}) {
5487 print " <email>" . esc_html
($co{'committer_email'}) . "</email>\n";
5489 print "</contributor>\n" .
5490 "<published>$cd{'iso-8601'}</published>\n" .
5491 "<link rel=\"alternate\" type=\"text/html\" href=\"$co_url\" />\n" .
5492 "<id>$co_url</id>\n" .
5493 "<content type=\"xhtml\" xml:base=\"" . esc_url
($my_url) . "\">\n" .
5494 "<div xmlns=\"http://www.w3.org/1999/xhtml\">\n";
5496 my $comment = $co{'comment'};
5498 foreach my $line (@
$comment) {
5499 $line = esc_html
($line);
5502 print "</pre><ul>\n";
5503 foreach my $difftree_line (@difftree) {
5504 my %difftree = parse_difftree_raw_line
($difftree_line);
5505 next if !$difftree{'from_id'};
5507 my $file = $difftree{'file'} || $difftree{'to_file'};
5511 $cgi->a({-href
=> href
(-full
=>1, action
=>"blobdiff",
5512 hash
=>$difftree{'to_id'}, hash_parent
=>$difftree{'from_id'},
5513 hash_base
=>$co{'id'}, hash_parent_base
=>$co{'parent'},
5514 file_name
=>$file, file_parent
=>$difftree{'from_file'}),
5515 -title
=> "diff"}, 'D');
5517 print $cgi->a({-href
=> href
(-full
=>1, action
=>"blame",
5518 file_name
=>$file, hash_base
=>$commit),
5519 -title
=> "blame"}, 'B');
5521 # if this is not a feed of a file history
5522 if (!defined $file_name || $file_name ne $file) {
5523 print $cgi->a({-href
=> href
(-full
=>1, action
=>"history",
5524 file_name
=>$file, hash
=>$commit),
5525 -title
=> "history"}, 'H');
5527 $file = esc_path
($file);
5531 if ($format eq 'rss') {
5532 print "</ul>]]>\n" .
5533 "</content:encoded>\n" .
5535 } elsif ($format eq 'atom') {
5536 print "</ul>\n</div>\n" .
5543 if ($format eq 'rss') {
5544 print "</channel>\n</rss>\n";
5545 } elsif ($format eq 'atom') {
5559 my @list = git_get_projects_list
();
5561 print $cgi->header(-type
=> 'text/xml', -charset
=> 'utf-8');
5563 <?xml version="1.0" encoding="utf-8"?>
5564 <opml version="1.0">
5566 <title>$site_name OPML Export</title>
5569 <outline text="git RSS feeds">
5572 foreach my $pr (@list) {
5574 my $head = git_get_head_hash
($proj{'path'});
5575 if (!defined $head) {
5578 $git_dir = "$projectroot/$proj{'path'}";
5579 my %co = parse_commit
($head);
5584 my $path = esc_html
(chop_str
($proj{'path'}, 25, 5));
5585 my $rss = "$my_url?p=$proj{'path'};a=rss";
5586 my $html = "$my_url?p=$proj{'path'};a=summary";
5587 print "<outline type=\"rss\" text=\"$path\" title=\"$path\" xmlUrl=\"$rss\" htmlUrl=\"$html\"/>\n";