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;
65 # URI of GIT logo (72x27 size)
66 our $logo = "++GITWEB_LOGO++";
67 # URI of GIT favicon, assumed to be image/png type
68 our $favicon = "++GITWEB_FAVICON++";
70 # URI and label (title) of GIT logo link
71 #our $logo_url = "http://www.kernel.org/pub/software/scm/git/docs/";
72 #our $logo_label = "git documentation";
73 our $logo_url = "http://git.or.cz/";
74 our $logo_label = "git homepage";
76 # source of projects list
77 our $projects_list = "++GITWEB_LIST++";
79 # the width (in characters) of the projects list "Description" column
80 our $projects_list_description_width = 25;
82 # default order of projects list
83 # valid values are none, project, descr, owner, and age
84 our $default_projects_order = "project";
86 # show repository only if this file exists
87 # (only effective if this variable evaluates to true)
88 our $export_ok = "++GITWEB_EXPORT_OK++";
90 # only allow viewing of repositories also shown on the overview page
91 our $strict_export = "++GITWEB_STRICT_EXPORT++";
93 # list of git base URLs used for URL to where fetch project from,
94 # i.e. full URL is "$git_base_url/$project"
95 our @git_base_url_list = grep { $_ ne '' } ("++GITWEB_BASE_URL++");
97 # default blob_plain mimetype and default charset for text/plain blob
98 our $default_blob_plain_mimetype = 'text/plain';
99 our $default_text_plain_charset = undef;
101 # file to use for guessing MIME types before trying /etc/mime.types
102 # (relative to the current git repository)
103 our $mimetypes_file = undef;
105 # assume this charset if line contains non-UTF-8 characters;
106 # it should be valid encoding (see Encoding::Supported(3pm) for list),
107 # for which encoding all byte sequences are valid, for example
108 # 'iso-8859-1' aka 'latin1' (it is decoded without checking, so it
109 # could be even 'utf-8' for the old behavior)
110 our $fallback_encoding = 'latin1';
112 # rename detection options for git-diff and git-diff-tree
113 # - default is '-M', with the cost proportional to
114 # (number of removed files) * (number of new files).
115 # - more costly is '-C' (which implies '-M'), with the cost proportional to
116 # (number of changed files + number of removed files) * (number of new files)
117 # - even more costly is '-C', '--find-copies-harder' with cost
118 # (number of files in the original tree) * (number of new files)
119 # - one might want to include '-B' option, e.g. '-B', '-M'
120 our @diff_opts = ('-M'); # taken from git_commit
122 # information about snapshot formats that gitweb is capable of serving
123 our %known_snapshot_formats = (
125 # 'display' => display name,
126 # 'type' => mime type,
127 # 'suffix' => filename suffix,
128 # 'format' => --format for git-archive,
129 # 'compressor' => [compressor command and arguments]
130 # (array reference, optional)}
133 'display' => 'tar.gz',
134 'type' => 'application/x-gzip',
135 'suffix' => '.tar.gz',
137 'compressor' => ['gzip']},
140 'display' => 'tar.bz2',
141 'type' => 'application/x-bzip2',
142 'suffix' => '.tar.bz2',
144 'compressor' => ['bzip2']},
148 'type' => 'application/x-zip',
153 # Aliases so we understand old gitweb.snapshot values in repository
155 our %known_snapshot_format_aliases = (
159 # backward compatibility: legacy gitweb config support
160 'x-gzip' => undef, 'gz' => undef,
161 'x-bzip2' => undef, 'bz2' => undef,
162 'x-zip' => undef, '' => undef,
165 # You define site-wide feature defaults here; override them with
166 # $GITWEB_CONFIG as necessary.
169 # 'sub' => feature-sub (subroutine),
170 # 'override' => allow-override (boolean),
171 # 'default' => [ default options...] (array reference)}
173 # if feature is overridable (it means that allow-override has true value),
174 # then feature-sub will be called with default options as parameters;
175 # return value of feature-sub indicates if to enable specified feature
177 # if there is no 'sub' key (no feature-sub), then feature cannot be
180 # use gitweb_check_feature(<feature>) to check if <feature> is enabled
182 # Enable the 'blame' blob view, showing the last commit that modified
183 # each line in the file. This can be very CPU-intensive.
185 # To enable system wide have in $GITWEB_CONFIG
186 # $feature{'blame'}{'default'} = [1];
187 # To have project specific config enable override in $GITWEB_CONFIG
188 # $feature{'blame'}{'override'} = 1;
189 # and in project config gitweb.blame = 0|1;
191 'sub' => \
&feature_blame
,
195 # Enable the 'snapshot' link, providing a compressed archive of any
196 # tree. This can potentially generate high traffic if you have large
199 # Value is a list of formats defined in %known_snapshot_formats that
201 # To disable system wide have in $GITWEB_CONFIG
202 # $feature{'snapshot'}{'default'} = [];
203 # To have project specific config enable override in $GITWEB_CONFIG
204 # $feature{'snapshot'}{'override'} = 1;
205 # and in project config, a comma-separated list of formats or "none"
206 # to disable. Example: gitweb.snapshot = tbz2,zip;
208 'sub' => \
&feature_snapshot
,
210 'default' => ['tgz']},
212 # Enable text search, which will list the commits which match author,
213 # committer or commit text to a given string. Enabled by default.
214 # Project specific override is not supported.
219 # Enable grep search, which will list the files in currently selected
220 # tree containing the given string. Enabled by default. This can be
221 # potentially CPU-intensive, of course.
223 # To enable system wide have in $GITWEB_CONFIG
224 # $feature{'grep'}{'default'} = [1];
225 # To have project specific config enable override in $GITWEB_CONFIG
226 # $feature{'grep'}{'override'} = 1;
227 # and in project config gitweb.grep = 0|1;
232 # Enable the pickaxe search, which will list the commits that modified
233 # a given string in a file. This can be practical and quite faster
234 # alternative to 'blame', but still potentially CPU-intensive.
236 # To enable system wide have in $GITWEB_CONFIG
237 # $feature{'pickaxe'}{'default'} = [1];
238 # To have project specific config enable override in $GITWEB_CONFIG
239 # $feature{'pickaxe'}{'override'} = 1;
240 # and in project config gitweb.pickaxe = 0|1;
242 'sub' => \
&feature_pickaxe
,
246 # Make gitweb use an alternative format of the URLs which can be
247 # more readable and natural-looking: project name is embedded
248 # directly in the path and the query string contains other
249 # auxiliary information. All gitweb installations recognize
250 # URL in either format; this configures in which formats gitweb
253 # To enable system wide have in $GITWEB_CONFIG
254 # $feature{'pathinfo'}{'default'} = [1];
255 # Project specific override is not supported.
257 # Note that you will need to change the default location of CSS,
258 # favicon, logo and possibly other files to an absolute URL. Also,
259 # if gitweb.cgi serves as your indexfile, you will need to force
260 # $my_uri to contain the script name in your $GITWEB_CONFIG.
265 # Make gitweb consider projects in project root subdirectories
266 # to be forks of existing projects. Given project $projname.git,
267 # projects matching $projname/*.git will not be shown in the main
268 # projects list, instead a '+' mark will be added to $projname
269 # there and a 'forks' view will be enabled for the project, listing
270 # all the forks. If project list is taken from a file, forks have
271 # to be listed after the main project.
273 # To enable system wide have in $GITWEB_CONFIG
274 # $feature{'forks'}{'default'} = [1];
275 # Project specific override is not supported.
281 sub gitweb_check_feature
{
283 return unless exists $feature{$name};
284 my ($sub, $override, @defaults) = (
285 $feature{$name}{'sub'},
286 $feature{$name}{'override'},
287 @{$feature{$name}{'default'}});
288 if (!$override) { return @defaults; }
290 warn "feature $name is not overrideable";
293 return $sub->(@defaults);
297 my ($val) = git_get_project_config
('blame', '--bool');
299 if ($val eq 'true') {
301 } elsif ($val eq 'false') {
308 sub feature_snapshot
{
311 my ($val) = git_get_project_config
('snapshot');
314 @fmts = ($val eq 'none' ? () : split /\s*[,\s]\s*/, $val);
321 my ($val) = git_get_project_config
('grep', '--bool');
323 if ($val eq 'true') {
325 } elsif ($val eq 'false') {
332 sub feature_pickaxe
{
333 my ($val) = git_get_project_config
('pickaxe', '--bool');
335 if ($val eq 'true') {
337 } elsif ($val eq 'false') {
344 # checking HEAD file with -e is fragile if the repository was
345 # initialized long time ago (i.e. symlink HEAD) and was pack-ref'ed
347 sub check_head_link
{
349 my $headfile = "$dir/HEAD";
350 return ((-e
$headfile) ||
351 (-l
$headfile && readlink($headfile) =~ /^refs\/heads\
//));
354 sub check_export_ok
{
356 return (check_head_link
($dir) &&
357 (!$export_ok || -e
"$dir/$export_ok"));
360 # process alternate names for backward compatibility
361 # filter out unsupported (unknown) snapshot formats
362 sub filter_snapshot_fmts
{
366 exists $known_snapshot_format_aliases{$_} ?
367 $known_snapshot_format_aliases{$_} : $_} @fmts;
368 @fmts = grep(exists $known_snapshot_formats{$_}, @fmts);
372 our $GITWEB_CONFIG = $ENV{'GITWEB_CONFIG'} || "++GITWEB_CONFIG++";
373 do $GITWEB_CONFIG if -e
$GITWEB_CONFIG;
375 # version of the core git binary
376 our $git_version = qx($GIT --version) =~ m/git version (.*)$/ ? $1 : "unknown";
378 $projects_list ||= $projectroot;
380 # ======================================================================
381 # input validation and dispatch
382 our $action = $cgi->param('a');
383 if (defined $action) {
384 if ($action =~ m/[^0-9a-zA-Z\.\-_]/) {
385 die_error
(undef, "Invalid action parameter");
389 # parameters which are pathnames
390 our $project = $cgi->param('p');
391 if (defined $project) {
392 if (!validate_pathname
($project) ||
393 !(-d
"$projectroot/$project") ||
394 !check_head_link
("$projectroot/$project") ||
395 ($export_ok && !(-e
"$projectroot/$project/$export_ok")) ||
396 ($strict_export && !project_in_list
($project))) {
398 die_error
(undef, "No such project");
402 our $file_name = $cgi->param('f');
403 if (defined $file_name) {
404 if (!validate_pathname
($file_name)) {
405 die_error
(undef, "Invalid file parameter");
409 our $file_parent = $cgi->param('fp');
410 if (defined $file_parent) {
411 if (!validate_pathname
($file_parent)) {
412 die_error
(undef, "Invalid file parent parameter");
416 # parameters which are refnames
417 our $hash = $cgi->param('h');
419 if (!validate_refname
($hash)) {
420 die_error
(undef, "Invalid hash parameter");
424 our $hash_parent = $cgi->param('hp');
425 if (defined $hash_parent) {
426 if (!validate_refname
($hash_parent)) {
427 die_error
(undef, "Invalid hash parent parameter");
431 our $hash_base = $cgi->param('hb');
432 if (defined $hash_base) {
433 if (!validate_refname
($hash_base)) {
434 die_error
(undef, "Invalid hash base parameter");
438 my %allowed_options = (
439 "--no-merges" => [ qw(rss atom log shortlog history) ],
442 our @extra_options = $cgi->param('opt');
443 if (defined @extra_options) {
444 foreach my $opt (@extra_options) {
445 if (not exists $allowed_options{$opt}) {
446 die_error
(undef, "Invalid option parameter");
448 if (not grep(/^$action$/, @{$allowed_options{$opt}})) {
449 die_error
(undef, "Invalid option parameter for this action");
454 our $hash_parent_base = $cgi->param('hpb');
455 if (defined $hash_parent_base) {
456 if (!validate_refname
($hash_parent_base)) {
457 die_error
(undef, "Invalid hash parent base parameter");
462 our $page = $cgi->param('pg');
464 if ($page =~ m/[^0-9]/) {
465 die_error
(undef, "Invalid page parameter");
469 our $searchtype = $cgi->param('st');
470 if (defined $searchtype) {
471 if ($searchtype =~ m/[^a-z]/) {
472 die_error
(undef, "Invalid searchtype parameter");
476 our $searchtext = $cgi->param('s');
478 if (defined $searchtext) {
479 if (length($searchtext) < 2) {
480 die_error
(undef, "At least two characters are required for search parameter");
482 $search_regexp = quotemeta $searchtext;
485 # now read PATH_INFO and use it as alternative to parameters
486 sub evaluate_path_info
{
487 return if defined $project;
488 my $path_info = $ENV{"PATH_INFO"};
489 return if !$path_info;
490 $path_info =~ s
,^/+,,;
491 return if !$path_info;
492 # find which part of PATH_INFO is project
493 $project = $path_info;
495 while ($project && !check_head_link
("$projectroot/$project")) {
496 $project =~ s
,/*[^/]*$,,;
499 $project = validate_pathname
($project);
501 ($export_ok && !-e
"$projectroot/$project/$export_ok") ||
502 ($strict_export && !project_in_list
($project))) {
506 # do not change any parameters if an action is given using the query string
508 $path_info =~ s
,^$project/*,,;
509 my ($refname, $pathname) = split(/:/, $path_info, 2);
510 if (defined $pathname) {
511 # we got "project.git/branch:filename" or "project.git/branch:dir/"
512 # we could use git_get_type(branch:pathname), but it needs $git_dir
513 $pathname =~ s
,^/+,,;
514 if (!$pathname || substr($pathname, -1) eq "/") {
518 $action ||= "blob_plain";
520 $hash_base ||= validate_refname
($refname);
521 $file_name ||= validate_pathname
($pathname);
522 } elsif (defined $refname) {
523 # we got "project.git/branch"
524 $action ||= "shortlog";
525 $hash ||= validate_refname
($refname);
528 evaluate_path_info
();
530 # path to the current git repository
532 $git_dir = "$projectroot/$project" if $project;
536 "blame" => \
&git_blame2
,
537 "blobdiff" => \
&git_blobdiff
,
538 "blobdiff_plain" => \
&git_blobdiff_plain
,
539 "blob" => \
&git_blob
,
540 "blob_plain" => \
&git_blob_plain
,
541 "commitdiff" => \
&git_commitdiff
,
542 "commitdiff_plain" => \
&git_commitdiff_plain
,
543 "commit" => \
&git_commit
,
544 "forks" => \
&git_forks
,
545 "heads" => \
&git_heads
,
546 "history" => \
&git_history
,
549 "atom" => \
&git_atom
,
550 "search" => \
&git_search
,
551 "search_help" => \
&git_search_help
,
552 "shortlog" => \
&git_shortlog
,
553 "summary" => \
&git_summary
,
555 "tags" => \
&git_tags
,
556 "tree" => \
&git_tree
,
557 "snapshot" => \
&git_snapshot
,
558 "object" => \
&git_object
,
559 # those below don't need $project
560 "opml" => \
&git_opml
,
561 "project_list" => \
&git_project_list
,
562 "project_index" => \
&git_project_index
,
565 if (!defined $action) {
567 $action = git_get_type
($hash);
568 } elsif (defined $hash_base && defined $file_name) {
569 $action = git_get_type
("$hash_base:$file_name");
570 } elsif (defined $project) {
573 $action = 'project_list';
576 if (!defined($actions{$action})) {
577 die_error
(undef, "Unknown action");
579 if ($action !~ m/^(opml|project_list|project_index)$/ &&
581 die_error
(undef, "Project needed");
583 $actions{$action}->();
586 ## ======================================================================
591 # default is to use -absolute url() i.e. $my_uri
592 my $href = $params{-full
} ? $my_url : $my_uri;
594 # XXX: Warning: If you touch this, check the search form for updating,
605 hash_parent_base
=> "hpb",
610 snapshot_format
=> "sf",
611 extra_options
=> "opt",
613 my %mapping = @mapping;
615 $params{'project'} = $project unless exists $params{'project'};
617 my ($use_pathinfo) = gitweb_check_feature
('pathinfo');
619 # use PATH_INFO for project name
620 $href .= "/$params{'project'}" if defined $params{'project'};
621 delete $params{'project'};
623 # Summary just uses the project path URL
624 if (defined $params{'action'} && $params{'action'} eq 'summary') {
625 delete $params{'action'};
629 # now encode the parameters explicitly
631 for (my $i = 0; $i < @mapping; $i += 2) {
632 my ($name, $symbol) = ($mapping[$i], $mapping[$i+1]);
633 if (defined $params{$name}) {
634 if (ref($params{$name}) eq "ARRAY") {
635 foreach my $par (@{$params{$name}}) {
636 push @result, $symbol . "=" . esc_param
($par);
639 push @result, $symbol . "=" . esc_param
($params{$name});
643 $href .= "?" . join(';', @result) if scalar @result;
649 ## ======================================================================
650 ## validation, quoting/unquoting and escaping
652 sub validate_pathname
{
653 my $input = shift || return undef;
655 # no '.' or '..' as elements of path, i.e. no '.' nor '..'
656 # at the beginning, at the end, and between slashes.
657 # also this catches doubled slashes
658 if ($input =~ m!(^|/)(|\.|\.\.)(/|$)!) {
662 if ($input =~ m!\0!) {
668 sub validate_refname
{
669 my $input = shift || return undef;
671 # textual hashes are O.K.
672 if ($input =~ m/^[0-9a-fA-F]{40}$/) {
675 # it must be correct pathname
676 $input = validate_pathname
($input)
678 # restrictions on ref name according to git-check-ref-format
679 if ($input =~ m!(/\.|\.\.|[\000-\040\177 ~^:?*\[]|/$)!) {
685 # decode sequences of octets in utf8 into Perl's internal form,
686 # which is utf-8 with utf8 flag set if needed. gitweb writes out
687 # in utf-8 thanks to "binmode STDOUT, ':utf8'" at beginning
691 eval { $res = decode_utf8
($str, Encode
::FB_CROAK
); };
695 return decode
($fallback_encoding, $str, Encode
::FB_DEFAULT
);
699 # quote unsafe chars, but keep the slash, even when it's not
700 # correct, but quoted slashes look too horrible in bookmarks
703 $str =~ s/([^A-Za-z0-9\-_.~()\/:@])/sprintf
("%%%02X", ord($1))/eg
;
709 # quote unsafe chars in whole URL, so some charactrs cannot be quoted
712 $str =~ s/([^A-Za-z0-9\-_.~();\/;?:@&=])/sprintf
("%%%02X", ord($1))/eg
;
718 # replace invalid utf8 character with SUBSTITUTION sequence
723 $str = to_utf8
($str);
724 $str = $cgi->escapeHTML($str);
725 if ($opts{'-nbsp'}) {
726 $str =~ s/ / /g;
728 $str =~ s
|([[:cntrl
:]])|(($1 ne "\t") ? quot_cec
($1) : $1)|eg
;
732 # quote control characters and escape filename to HTML
737 $str = to_utf8
($str);
738 $str = $cgi->escapeHTML($str);
739 if ($opts{'-nbsp'}) {
740 $str =~ s/ / /g;
742 $str =~ s
|([[:cntrl
:]])|quot_cec
($1)|eg
;
746 # Make control characters "printable", using character escape codes (CEC)
749 my %es = ( # character escape codes, aka escape sequences
750 "\t" => '\t', # tab (HT)
751 "\n" => '\n', # line feed (LF)
752 "\r" => '\r', # carrige return (CR)
753 "\f" => '\f', # form feed (FF)
754 "\b" => '\b', # backspace (BS)
755 "\a" => '\a', # alarm (bell) (BEL)
756 "\e" => '\e', # escape (ESC)
757 "\013" => '\v', # vertical tab (VT)
758 "\000" => '\0', # nul character (NUL)
760 my $chr = ( (exists $es{$cntrl})
762 : sprintf('\%03o', ord($cntrl)) );
763 return "<span class=\"cntrl\">$chr</span>";
766 # Alternatively use unicode control pictures codepoints,
767 # Unicode "printable representation" (PR)
770 my $chr = sprintf('&#%04d;', 0x2400+ord($cntrl));
771 return "<span class=\"cntrl\">$chr</span>";
774 # git may return quoted and escaped filenames
780 my %es = ( # character escape codes, aka escape sequences
781 't' => "\t", # tab (HT, TAB)
782 'n' => "\n", # newline (NL)
783 'r' => "\r", # return (CR)
784 'f' => "\f", # form feed (FF)
785 'b' => "\b", # backspace (BS)
786 'a' => "\a", # alarm (bell) (BEL)
787 'e' => "\e", # escape (ESC)
788 'v' => "\013", # vertical tab (VT)
791 if ($seq =~ m/^[0-7]{1,3}$/) {
792 # octal char sequence
793 return chr(oct($seq));
794 } elsif (exists $es{$seq}) {
795 # C escape sequence, aka character escape code
798 # quoted ordinary character
802 if ($str =~ m/^"(.*)"$/) {
805 $str =~ s/\\([^0-7]|[0-7]{1,3})/unq($1)/eg;
810 # escape tabs (convert tabs to spaces)
814 while ((my $pos = index($line, "\t")) != -1) {
815 if (my $count = (8 - ($pos % 8))) {
816 my $spaces = ' ' x
$count;
817 $line =~ s/\t/$spaces/;
824 sub project_in_list
{
826 my @list = git_get_projects_list
();
827 return @list && scalar(grep { $_->{'path'} eq $project } @list);
830 ## ----------------------------------------------------------------------
831 ## HTML aware string manipulation
836 my $add_len = shift || 10;
838 # allow only $len chars, but don't cut a word if it would fit in $add_len
839 # if it doesn't fit, cut it if it's still longer than the dots we would add
840 $str =~ m/^(.{0,$len}[^ \/\
-_
:\
.@]{0,$add_len})(.*)/;
843 if (length($tail) > 4) {
845 $body =~ s/&[^;]*$//; # remove chopped character entities
850 ## ----------------------------------------------------------------------
851 ## functions returning short strings
853 # CSS class for given age value (in seconds)
859 } elsif ($age < 60*60*2) {
861 } elsif ($age < 60*60*24*2) {
868 # convert age in seconds to "nn units ago" string
873 if ($age > 60*60*24*365*2) {
874 $age_str = (int $age/60/60/24/365);
875 $age_str .= " years ago";
876 } elsif ($age > 60*60*24*(365/12)*2) {
877 $age_str = int $age/60/60/24/(365/12);
878 $age_str .= " months ago";
879 } elsif ($age > 60*60*24*7*2) {
880 $age_str = int $age/60/60/24/7;
881 $age_str .= " weeks ago";
882 } elsif ($age > 60*60*24*2) {
883 $age_str = int $age/60/60/24;
884 $age_str .= " days ago";
885 } elsif ($age > 60*60*2) {
886 $age_str = int $age/60/60;
887 $age_str .= " hours ago";
888 } elsif ($age > 60*2) {
889 $age_str = int $age/60;
890 $age_str .= " min ago";
893 $age_str .= " sec ago";
895 $age_str .= " right now";
901 S_IFINVALID
=> 0030000,
902 S_IFGITLINK
=> 0160000,
905 # submodule/subproject, a commit object reference
909 return (($mode & S_IFMT
) == S_IFGITLINK
)
912 # convert file mode in octal to symbolic file mode string
914 my $mode = oct shift;
916 if (S_ISGITLINK
($mode)) {
918 } elsif (S_ISDIR
($mode & S_IFMT
)) {
920 } elsif (S_ISLNK
($mode)) {
922 } elsif (S_ISREG
($mode)) {
923 # git cares only about the executable bit
924 if ($mode & S_IXUSR
) {
934 # convert file mode in octal to file type string
938 if ($mode !~ m/^[0-7]+$/) {
944 if (S_ISGITLINK
($mode)) {
946 } elsif (S_ISDIR
($mode & S_IFMT
)) {
948 } elsif (S_ISLNK
($mode)) {
950 } elsif (S_ISREG
($mode)) {
957 # convert file mode in octal to file type description string
961 if ($mode !~ m/^[0-7]+$/) {
967 if (S_ISGITLINK
($mode)) {
969 } elsif (S_ISDIR
($mode & S_IFMT
)) {
971 } elsif (S_ISLNK
($mode)) {
973 } elsif (S_ISREG
($mode)) {
974 if ($mode & S_IXUSR
) {
985 ## ----------------------------------------------------------------------
986 ## functions returning short HTML fragments, or transforming HTML fragments
987 ## which don't belong to other sections
989 # format line of commit message.
990 sub format_log_line_html
{
993 $line = esc_html
($line, -nbsp
=>1);
994 if ($line =~ m/([0-9a-fA-F]{8,40})/) {
997 $cgi->a({-href
=> href
(action
=>"object", hash
=>$hash_text),
998 -class => "text"}, $hash_text);
999 $line =~ s/$hash_text/$link/;
1004 # format marker of refs pointing to given object
1005 sub format_ref_marker
{
1006 my ($refs, $id) = @_;
1009 if (defined $refs->{$id}) {
1010 foreach my $ref (@{$refs->{$id}}) {
1011 my ($type, $name) = qw();
1012 # e.g. tags/v2.6.11 or heads/next
1013 if ($ref =~ m!^(.*?)s?/(.*)$!) {
1021 $markers .= " <span class=\"$type\" title=\"$ref\">" .
1022 esc_html
($name) . "</span>";
1027 return ' <span class="refs">'. $markers . '</span>';
1033 # format, perhaps shortened and with markers, title line
1034 sub format_subject_html
{
1035 my ($long, $short, $href, $extra) = @_;
1036 $extra = '' unless defined($extra);
1038 if (length($short) < length($long)) {
1039 return $cgi->a({-href
=> $href, -class => "list subject",
1040 -title
=> to_utf8
($long)},
1041 esc_html
($short) . $extra);
1043 return $cgi->a({-href
=> $href, -class => "list subject"},
1044 esc_html
($long) . $extra);
1048 # format git diff header line, i.e. "diff --(git|combined|cc) ..."
1049 sub format_git_diff_header_line
{
1051 my $diffinfo = shift;
1052 my ($from, $to) = @_;
1054 if ($diffinfo->{'nparents'}) {
1056 $line =~ s!^(diff (.*?) )"?.*$!$1!;
1057 if ($to->{'href'}) {
1058 $line .= $cgi->a({-href
=> $to->{'href'}, -class => "path"},
1059 esc_path
($to->{'file'}));
1060 } else { # file was deleted (no href)
1061 $line .= esc_path
($to->{'file'});
1065 $line =~ s!^(diff (.*?) )"?a/.*$!$1!;
1066 if ($from->{'href'}) {
1067 $line .= $cgi->a({-href
=> $from->{'href'}, -class => "path"},
1068 'a/' . esc_path
($from->{'file'}));
1069 } else { # file was added (no href)
1070 $line .= 'a/' . esc_path
($from->{'file'});
1073 if ($to->{'href'}) {
1074 $line .= $cgi->a({-href
=> $to->{'href'}, -class => "path"},
1075 'b/' . esc_path
($to->{'file'}));
1076 } else { # file was deleted
1077 $line .= 'b/' . esc_path
($to->{'file'});
1081 return "<div class=\"diff header\">$line</div>\n";
1084 # format extended diff header line, before patch itself
1085 sub format_extended_diff_header_line
{
1087 my $diffinfo = shift;
1088 my ($from, $to) = @_;
1091 if ($line =~ s!^((copy|rename) from ).*$!$1! && $from->{'href'}) {
1092 $line .= $cgi->a({-href
=>$from->{'href'}, -class=>"path"},
1093 esc_path
($from->{'file'}));
1095 if ($line =~ s!^((copy|rename) to ).*$!$1! && $to->{'href'}) {
1096 $line .= $cgi->a({-href
=>$to->{'href'}, -class=>"path"},
1097 esc_path
($to->{'file'}));
1099 # match single <mode>
1100 if ($line =~ m/\s(\d{6})$/) {
1101 $line .= '<span class="info"> (' .
1102 file_type_long
($1) .
1106 if ($line =~ m/^index [0-9a-fA-F]{40},[0-9a-fA-F]{40}/) {
1107 # can match only for combined diff
1109 for (my $i = 0; $i < $diffinfo->{'nparents'}; $i++) {
1110 if ($from->{'href'}[$i]) {
1111 $line .= $cgi->a({-href
=>$from->{'href'}[$i],
1113 substr($diffinfo->{'from_id'}[$i],0,7));
1118 $line .= ',' if ($i < $diffinfo->{'nparents'} - 1);
1121 if ($to->{'href'}) {
1122 $line .= $cgi->a({-href
=>$to->{'href'}, -class=>"hash"},
1123 substr($diffinfo->{'to_id'},0,7));
1128 } elsif ($line =~ m/^index [0-9a-fA-F]{40}..[0-9a-fA-F]{40}/) {
1129 # can match only for ordinary diff
1130 my ($from_link, $to_link);
1131 if ($from->{'href'}) {
1132 $from_link = $cgi->a({-href
=>$from->{'href'}, -class=>"hash"},
1133 substr($diffinfo->{'from_id'},0,7));
1135 $from_link = '0' x
7;
1137 if ($to->{'href'}) {
1138 $to_link = $cgi->a({-href
=>$to->{'href'}, -class=>"hash"},
1139 substr($diffinfo->{'to_id'},0,7));
1143 my ($from_id, $to_id) = ($diffinfo->{'from_id'}, $diffinfo->{'to_id'});
1144 $line =~ s!$from_id\.\.$to_id!$from_link..$to_link!;
1147 return $line . "<br/>\n";
1150 # format from-file/to-file diff header
1151 sub format_diff_from_to_header
{
1152 my ($from_line, $to_line, $diffinfo, $from, $to, @parents) = @_;
1157 #assert($line =~ m/^---/) if DEBUG;
1158 # no extra formatting for "^--- /dev/null"
1159 if (! $diffinfo->{'nparents'}) {
1160 # ordinary (single parent) diff
1161 if ($line =~ m!^--- "?a/!) {
1162 if ($from->{'href'}) {
1164 $cgi->a({-href
=>$from->{'href'}, -class=>"path"},
1165 esc_path
($from->{'file'}));
1168 esc_path
($from->{'file'});
1171 $result .= qq
!<div
class="diff from_file">$line</div
>\n!;
1174 # combined diff (merge commit)
1175 for (my $i = 0; $i < $diffinfo->{'nparents'}; $i++) {
1176 if ($from->{'href'}[$i]) {
1178 $cgi->a({-href
=>href
(action
=>"blobdiff",
1179 hash_parent
=>$diffinfo->{'from_id'}[$i],
1180 hash_parent_base
=>$parents[$i],
1181 file_parent
=>$from->{'file'}[$i],
1182 hash
=>$diffinfo->{'to_id'},
1184 file_name
=>$to->{'file'}),
1186 -title
=>"diff" . ($i+1)},
1189 $cgi->a({-href
=>$from->{'href'}[$i], -class=>"path"},
1190 esc_path
($from->{'file'}[$i]));
1192 $line = '--- /dev/null';
1194 $result .= qq
!<div
class="diff from_file">$line</div
>\n!;
1199 #assert($line =~ m/^\+\+\+/) if DEBUG;
1200 # no extra formatting for "^+++ /dev/null"
1201 if ($line =~ m!^\+\+\+ "?b/!) {
1202 if ($to->{'href'}) {
1204 $cgi->a({-href
=>$to->{'href'}, -class=>"path"},
1205 esc_path
($to->{'file'}));
1208 esc_path
($to->{'file'});
1211 $result .= qq
!<div
class="diff to_file">$line</div
>\n!;
1216 # create note for patch simplified by combined diff
1217 sub format_diff_cc_simplified
{
1218 my ($diffinfo, @parents) = @_;
1221 $result .= "<div class=\"diff header\">" .
1223 if (!is_deleted
($diffinfo)) {
1224 $result .= $cgi->a({-href
=> href
(action
=>"blob",
1226 hash
=>$diffinfo->{'to_id'},
1227 file_name
=>$diffinfo->{'to_file'}),
1229 esc_path
($diffinfo->{'to_file'}));
1231 $result .= esc_path
($diffinfo->{'to_file'});
1233 $result .= "</div>\n" . # class="diff header"
1234 "<div class=\"diff nodifferences\">" .
1236 "</div>\n"; # class="diff nodifferences"
1241 # format patch (diff) line (not to be used for diff headers)
1242 sub format_diff_line
{
1244 my ($from, $to) = @_;
1245 my $diff_class = "";
1249 if ($from && $to && ref($from->{'href'}) eq "ARRAY") {
1251 my $prefix = substr($line, 0, scalar @{$from->{'href'}});
1252 if ($line =~ m/^\@{3}/) {
1253 $diff_class = " chunk_header";
1254 } elsif ($line =~ m/^\\/) {
1255 $diff_class = " incomplete";
1256 } elsif ($prefix =~ tr/+/+/) {
1257 $diff_class = " add";
1258 } elsif ($prefix =~ tr/-/-/) {
1259 $diff_class = " rem";
1262 # assume ordinary diff
1263 my $char = substr($line, 0, 1);
1265 $diff_class = " add";
1266 } elsif ($char eq '-') {
1267 $diff_class = " rem";
1268 } elsif ($char eq '@') {
1269 $diff_class = " chunk_header";
1270 } elsif ($char eq "\\") {
1271 $diff_class = " incomplete";
1274 $line = untabify
($line);
1275 if ($from && $to && $line =~ m/^\@{2} /) {
1276 my ($from_text, $from_start, $from_lines, $to_text, $to_start, $to_lines, $section) =
1277 $line =~ m/^\@{2} (-(\d+)(?:,(\d+))?) (\+(\d+)(?:,(\d+))?) \@{2}(.*)$/;
1279 $from_lines = 0 unless defined $from_lines;
1280 $to_lines = 0 unless defined $to_lines;
1282 if ($from->{'href'}) {
1283 $from_text = $cgi->a({-href
=>"$from->{'href'}#l$from_start",
1284 -class=>"list"}, $from_text);
1286 if ($to->{'href'}) {
1287 $to_text = $cgi->a({-href
=>"$to->{'href'}#l$to_start",
1288 -class=>"list"}, $to_text);
1290 $line = "<span class=\"chunk_info\">@@ $from_text $to_text @@</span>" .
1291 "<span class=\"section\">" . esc_html
($section, -nbsp
=>1) . "</span>";
1292 return "<div class=\"diff$diff_class\">$line</div>\n";
1293 } elsif ($from && $to && $line =~ m/^\@{3}/) {
1294 my ($prefix, $ranges, $section) = $line =~ m/^(\@+) (.*?) \@+(.*)$/;
1295 my (@from_text, @from_start, @from_nlines, $to_text, $to_start, $to_nlines);
1297 @from_text = split(' ', $ranges);
1298 for (my $i = 0; $i < @from_text; ++$i) {
1299 ($from_start[$i], $from_nlines[$i]) =
1300 (split(',', substr($from_text[$i], 1)), 0);
1303 $to_text = pop @from_text;
1304 $to_start = pop @from_start;
1305 $to_nlines = pop @from_nlines;
1307 $line = "<span class=\"chunk_info\">$prefix ";
1308 for (my $i = 0; $i < @from_text; ++$i) {
1309 if ($from->{'href'}[$i]) {
1310 $line .= $cgi->a({-href
=>"$from->{'href'}[$i]#l$from_start[$i]",
1311 -class=>"list"}, $from_text[$i]);
1313 $line .= $from_text[$i];
1317 if ($to->{'href'}) {
1318 $line .= $cgi->a({-href
=>"$to->{'href'}#l$to_start",
1319 -class=>"list"}, $to_text);
1323 $line .= " $prefix</span>" .
1324 "<span class=\"section\">" . esc_html
($section, -nbsp
=>1) . "</span>";
1325 return "<div class=\"diff$diff_class\">$line</div>\n";
1327 return "<div class=\"diff$diff_class\">" . esc_html
($line, -nbsp
=>1) . "</div>\n";
1330 # Generates undef or something like "_snapshot_" or "snapshot (_tbz2_ _zip_)",
1331 # linked. Pass the hash of the tree/commit to snapshot.
1332 sub format_snapshot_links
{
1334 my @snapshot_fmts = gitweb_check_feature
('snapshot');
1335 @snapshot_fmts = filter_snapshot_fmts
(@snapshot_fmts);
1336 my $num_fmts = @snapshot_fmts;
1337 if ($num_fmts > 1) {
1338 # A parenthesized list of links bearing format names.
1339 # e.g. "snapshot (_tar.gz_ _zip_)"
1340 return "snapshot (" . join(' ', map
1347 }, $known_snapshot_formats{$_}{'display'})
1348 , @snapshot_fmts) . ")";
1349 } elsif ($num_fmts == 1) {
1350 # A single "snapshot" link whose tooltip bears the format name.
1352 my ($fmt) = @snapshot_fmts;
1358 snapshot_format
=>$fmt
1360 -title
=> "in format: $known_snapshot_formats{$fmt}{'display'}"
1362 } else { # $num_fmts == 0
1367 ## ----------------------------------------------------------------------
1368 ## git utility subroutines, invoking git commands
1370 # returns path to the core git executable and the --git-dir parameter as list
1372 return $GIT, '--git-dir='.$git_dir;
1375 # returns path to the core git executable and the --git-dir parameter as string
1377 return join(' ', git_cmd
());
1380 # get HEAD ref of given project as hash
1381 sub git_get_head_hash
{
1382 my $project = shift;
1383 my $o_git_dir = $git_dir;
1385 $git_dir = "$projectroot/$project";
1386 if (open my $fd, "-|", git_cmd
(), "rev-parse", "--verify", "HEAD") {
1389 if (defined $head && $head =~ /^([0-9a-fA-F]{40})$/) {
1393 if (defined $o_git_dir) {
1394 $git_dir = $o_git_dir;
1399 # get type of given object
1403 open my $fd, "-|", git_cmd
(), "cat-file", '-t', $hash or return;
1405 close $fd or return;
1410 sub git_get_project_config
{
1411 my ($key, $type) = @_;
1413 return unless ($key);
1414 $key =~ s/^gitweb\.//;
1415 return if ($key =~ m/\W/);
1417 my @x = (git_cmd
(), 'config');
1418 if (defined $type) { push @x, $type; }
1420 push @x, "gitweb.$key";
1426 # get hash of given path at given ref
1427 sub git_get_hash_by_path
{
1429 my $path = shift || return undef;
1434 open my $fd, "-|", git_cmd
(), "ls-tree", $base, "--", $path
1435 or die_error
(undef, "Open git-ls-tree failed");
1437 close $fd or return undef;
1439 if (!defined $line) {
1440 # there is no tree or hash given by $path at $base
1444 #'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'
1445 $line =~ m/^([0-9]+) (.+) ([0-9a-fA-F]{40})\t/;
1446 if (defined $type && $type ne $2) {
1447 # type doesn't match
1453 # get path of entry with given hash at given tree-ish (ref)
1454 # used to get 'from' filename for combined diff (merge commit) for renames
1455 sub git_get_path_by_hash
{
1456 my $base = shift || return;
1457 my $hash = shift || return;
1461 open my $fd, "-|", git_cmd
(), "ls-tree", '-r', '-t', '-z', $base
1463 while (my $line = <$fd>) {
1466 #'040000 tree 595596a6a9117ddba9fe379b6b012b558bac8423 gitweb'
1467 #'100644 blob e02e90f0429be0d2a69b76571101f20b8f75530f gitweb/README'
1468 if ($line =~ m/(?:[0-9]+) (?:.+) $hash\t(.+)$/) {
1477 ## ......................................................................
1478 ## git utility functions, directly accessing git repository
1480 sub git_get_project_description
{
1483 open my $fd, "$projectroot/$path/description" or return undef;
1486 if (defined $descr) {
1492 sub git_get_project_url_list
{
1495 open my $fd, "$projectroot/$path/cloneurl" or return;
1496 my @git_project_url_list = map { chomp; $_ } <$fd>;
1499 return wantarray ? @git_project_url_list : \
@git_project_url_list;
1502 sub git_get_projects_list
{
1507 $filter =~ s/\.git$//;
1509 my ($check_forks) = gitweb_check_feature
('forks');
1511 if (-d
$projects_list) {
1512 # search in directory
1513 my $dir = $projects_list . ($filter ? "/$filter" : '');
1514 # remove the trailing "/"
1516 my $pfxlen = length("$dir");
1517 my $pfxdepth = ($dir =~ tr!/!!);
1520 follow_fast
=> 1, # follow symbolic links
1521 follow_skip
=> 2, # ignore duplicates
1522 dangling_symlinks
=> 0, # ignore dangling symlinks, silently
1524 # skip project-list toplevel, if we get it.
1525 return if (m!^[/.]$!);
1526 # only directories can be git repositories
1527 return unless (-d
$_);
1528 # don't traverse too deep (Find is super slow on os x)
1529 if (($File::Find
::name
=~ tr!/!!) - $pfxdepth > $project_maxdepth) {
1530 $File::Find
::prune
= 1;
1534 my $subdir = substr($File::Find
::name
, $pfxlen + 1);
1535 # we check related file in $projectroot
1536 if ($check_forks and $subdir =~ m
#/.#) {
1537 $File::Find
::prune
= 1;
1538 } elsif (check_export_ok
("$projectroot/$filter/$subdir")) {
1539 push @list, { path
=> ($filter ? "$filter/" : '') . $subdir };
1540 $File::Find
::prune
= 1;
1545 } elsif (-f
$projects_list) {
1546 # read from file(url-encoded):
1547 # 'git%2Fgit.git Linus+Torvalds'
1548 # 'libs%2Fklibc%2Fklibc.git H.+Peter+Anvin'
1549 # 'linux%2Fhotplug%2Fudev.git Greg+Kroah-Hartman'
1551 open my ($fd), $projects_list or return;
1553 while (my $line = <$fd>) {
1555 my ($path, $owner) = split ' ', $line;
1556 $path = unescape
($path);
1557 $owner = unescape
($owner);
1558 if (!defined $path) {
1561 if ($filter ne '') {
1562 # looking for forks;
1563 my $pfx = substr($path, 0, length($filter));
1564 if ($pfx ne $filter) {
1567 my $sfx = substr($path, length($filter));
1568 if ($sfx !~ /^\/.*\
.git
$/) {
1571 } elsif ($check_forks) {
1573 foreach my $filter (keys %paths) {
1574 # looking for forks;
1575 my $pfx = substr($path, 0, length($filter));
1576 if ($pfx ne $filter) {
1579 my $sfx = substr($path, length($filter));
1580 if ($sfx !~ /^\/.*\
.git
$/) {
1583 # is a fork, don't include it in
1588 if (check_export_ok
("$projectroot/$path")) {
1591 owner
=> to_utf8
($owner),
1594 (my $forks_path = $path) =~ s/\.git$//;
1595 $paths{$forks_path}++;
1603 our $gitweb_project_owner = undef;
1604 sub git_get_project_list_from_file
{
1606 return if (defined $gitweb_project_owner);
1608 $gitweb_project_owner = {};
1609 # read from file (url-encoded):
1610 # 'git%2Fgit.git Linus+Torvalds'
1611 # 'libs%2Fklibc%2Fklibc.git H.+Peter+Anvin'
1612 # 'linux%2Fhotplug%2Fudev.git Greg+Kroah-Hartman'
1613 if (-f
$projects_list) {
1614 open (my $fd , $projects_list);
1615 while (my $line = <$fd>) {
1617 my ($pr, $ow) = split ' ', $line;
1618 $pr = unescape
($pr);
1619 $ow = unescape
($ow);
1620 $gitweb_project_owner->{$pr} = to_utf8
($ow);
1626 sub git_get_project_owner
{
1627 my $project = shift;
1630 return undef unless $project;
1632 if (!defined $gitweb_project_owner) {
1633 git_get_project_list_from_file
();
1636 if (exists $gitweb_project_owner->{$project}) {
1637 $owner = $gitweb_project_owner->{$project};
1639 if (!defined $owner) {
1640 $owner = get_file_owner
("$projectroot/$project");
1646 sub git_get_last_activity
{
1650 $git_dir = "$projectroot/$path";
1651 open($fd, "-|", git_cmd
(), 'for-each-ref',
1652 '--format=%(committer)',
1653 '--sort=-committerdate',
1655 'refs/heads') or return;
1656 my $most_recent = <$fd>;
1657 close $fd or return;
1658 if (defined $most_recent &&
1659 $most_recent =~ / (\d+) [-+][01]\d\d\d$/) {
1661 my $age = time - $timestamp;
1662 return ($age, age_string
($age));
1664 return (undef, undef);
1667 sub git_get_references
{
1668 my $type = shift || "";
1670 # 5dc01c595e6c6ec9ccda4f6f69c131c0dd945f8c refs/tags/v2.6.11
1671 # c39ae07f393806ccf406ef966e9a15afc43cc36a refs/tags/v2.6.11^{}
1672 open my $fd, "-|", git_cmd
(), "show-ref", "--dereference",
1673 ($type ? ("--", "refs/$type") : ()) # use -- <pattern> if $type
1676 while (my $line = <$fd>) {
1678 if ($line =~ m!^([0-9a-fA-F]{40})\srefs/($type/?[^^]+)!) {
1679 if (defined $refs{$1}) {
1680 push @{$refs{$1}}, $2;
1686 close $fd or return;
1690 sub git_get_rev_name_tags
{
1691 my $hash = shift || return undef;
1693 open my $fd, "-|", git_cmd
(), "name-rev", "--tags", $hash
1695 my $name_rev = <$fd>;
1698 if ($name_rev =~ m
|^$hash tags
/(.*)$|) {
1701 # catches also '$hash undefined' output
1706 ## ----------------------------------------------------------------------
1707 ## parse to hash functions
1711 my $tz = shift || "-0000";
1714 my @months = ("Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec");
1715 my @days = ("Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat");
1716 my ($sec, $min, $hour, $mday, $mon, $year, $wday, $yday) = gmtime($epoch);
1717 $date{'hour'} = $hour;
1718 $date{'minute'} = $min;
1719 $date{'mday'} = $mday;
1720 $date{'day'} = $days[$wday];
1721 $date{'month'} = $months[$mon];
1722 $date{'rfc2822'} = sprintf "%s, %d %s %4d %02d:%02d:%02d +0000",
1723 $days[$wday], $mday, $months[$mon], 1900+$year, $hour ,$min, $sec;
1724 $date{'mday-time'} = sprintf "%d %s %02d:%02d",
1725 $mday, $months[$mon], $hour ,$min;
1726 $date{'iso-8601'} = sprintf "%04d-%02d-%02dT%02d:%02d:%02dZ",
1727 1900+$year, $mon, $mday, $hour ,$min, $sec;
1729 $tz =~ m/^([+\-][0-9][0-9])([0-9][0-9])$/;
1730 my $local = $epoch + ((int $1 + ($2/60)) * 3600);
1731 ($sec, $min, $hour, $mday, $mon, $year, $wday, $yday) = gmtime($local);
1732 $date{'hour_local'} = $hour;
1733 $date{'minute_local'} = $min;
1734 $date{'tz_local'} = $tz;
1735 $date{'iso-tz'} = sprintf("%04d-%02d-%02d %02d:%02d:%02d %s",
1736 1900+$year, $mon+1, $mday,
1737 $hour, $min, $sec, $tz);
1746 open my $fd, "-|", git_cmd
(), "cat-file", "tag", $tag_id or return;
1747 $tag{'id'} = $tag_id;
1748 while (my $line = <$fd>) {
1750 if ($line =~ m/^object ([0-9a-fA-F]{40})$/) {
1751 $tag{'object'} = $1;
1752 } elsif ($line =~ m/^type (.+)$/) {
1754 } elsif ($line =~ m/^tag (.+)$/) {
1756 } elsif ($line =~ m/^tagger (.*) ([0-9]+) (.*)$/) {
1757 $tag{'author'} = $1;
1760 } elsif ($line =~ m/--BEGIN/) {
1761 push @comment, $line;
1763 } elsif ($line eq "") {
1767 push @comment, <$fd>;
1768 $tag{'comment'} = \
@comment;
1769 close $fd or return;
1770 if (!defined $tag{'name'}) {
1776 sub parse_commit_text
{
1777 my ($commit_text, $withparents) = @_;
1778 my @commit_lines = split '\n', $commit_text;
1781 pop @commit_lines; # Remove '\0'
1783 if (! @commit_lines) {
1787 my $header = shift @commit_lines;
1788 if ($header !~ m/^[0-9a-fA-F]{40}/) {
1791 ($co{'id'}, my @parents) = split ' ', $header;
1792 while (my $line = shift @commit_lines) {
1793 last if $line eq "\n";
1794 if ($line =~ m/^tree ([0-9a-fA-F]{40})$/) {
1796 } elsif ((!defined $withparents) && ($line =~ m/^parent ([0-9a-fA-F]{40})$/)) {
1798 } elsif ($line =~ m/^author (.*) ([0-9]+) (.*)$/) {
1800 $co{'author_epoch'} = $2;
1801 $co{'author_tz'} = $3;
1802 if ($co{'author'} =~ m/^([^<]+) <([^>]*)>/) {
1803 $co{'author_name'} = $1;
1804 $co{'author_email'} = $2;
1806 $co{'author_name'} = $co{'author'};
1808 } elsif ($line =~ m/^committer (.*) ([0-9]+) (.*)$/) {
1809 $co{'committer'} = $1;
1810 $co{'committer_epoch'} = $2;
1811 $co{'committer_tz'} = $3;
1812 $co{'committer_name'} = $co{'committer'};
1813 if ($co{'committer'} =~ m/^([^<]+) <([^>]*)>/) {
1814 $co{'committer_name'} = $1;
1815 $co{'committer_email'} = $2;
1817 $co{'committer_name'} = $co{'committer'};
1821 if (!defined $co{'tree'}) {
1824 $co{'parents'} = \
@parents;
1825 $co{'parent'} = $parents[0];
1827 foreach my $title (@commit_lines) {
1830 $co{'title'} = chop_str
($title, 80, 5);
1831 # remove leading stuff of merges to make the interesting part visible
1832 if (length($title) > 50) {
1833 $title =~ s/^Automatic //;
1834 $title =~ s/^merge (of|with) /Merge ... /i;
1835 if (length($title) > 50) {
1836 $title =~ s/(http|rsync):\/\///;
1838 if (length($title) > 50) {
1839 $title =~ s/(master|www|rsync)\.//;
1841 if (length($title) > 50) {
1842 $title =~ s/kernel.org:?//;
1844 if (length($title) > 50) {
1845 $title =~ s/\/pub\/scm//;
1848 $co{'title_short'} = chop_str
($title, 50, 5);
1852 if ($co{'title'} eq "") {
1853 $co{'title'} = $co{'title_short'} = '(no commit message)';
1855 # remove added spaces
1856 foreach my $line (@commit_lines) {
1859 $co{'comment'} = \
@commit_lines;
1861 my $age = time - $co{'committer_epoch'};
1863 $co{'age_string'} = age_string
($age);
1864 my ($sec, $min, $hour, $mday, $mon, $year, $wday, $yday) = gmtime($co{'committer_epoch'});
1865 if ($age > 60*60*24*7*2) {
1866 $co{'age_string_date'} = sprintf "%4i-%02u-%02i", 1900 + $year, $mon+1, $mday;
1867 $co{'age_string_age'} = $co{'age_string'};
1869 $co{'age_string_date'} = $co{'age_string'};
1870 $co{'age_string_age'} = sprintf "%4i-%02u-%02i", 1900 + $year, $mon+1, $mday;
1876 my ($commit_id) = @_;
1881 open my $fd, "-|", git_cmd
(), "rev-list",
1887 or die_error
(undef, "Open git-rev-list failed");
1888 %co = parse_commit_text
(<$fd>, 1);
1895 my ($commit_id, $maxcount, $skip, $arg, $filename) = @_;
1903 open my $fd, "-|", git_cmd
(), "rev-list",
1905 ($arg ? ($arg) : ()),
1906 ("--max-count=" . $maxcount),
1907 ("--skip=" . $skip),
1911 ($filename ? ($filename) : ())
1912 or die_error
(undef, "Open git-rev-list failed");
1913 while (my $line = <$fd>) {
1914 my %co = parse_commit_text
($line);
1919 return wantarray ? @cos : \
@cos;
1922 # parse ref from ref_file, given by ref_id, with given type
1924 my $ref_file = shift;
1926 my $type = shift || git_get_type
($ref_id);
1929 $ref_item{'type'} = $type;
1930 $ref_item{'id'} = $ref_id;
1931 $ref_item{'epoch'} = 0;
1932 $ref_item{'age'} = "unknown";
1933 if ($type eq "tag") {
1934 my %tag = parse_tag
($ref_id);
1935 $ref_item{'comment'} = $tag{'comment'};
1936 if ($tag{'type'} eq "commit") {
1937 my %co = parse_commit
($tag{'object'});
1938 $ref_item{'epoch'} = $co{'committer_epoch'};
1939 $ref_item{'age'} = $co{'age_string'};
1940 } elsif (defined($tag{'epoch'})) {
1941 my $age = time - $tag{'epoch'};
1942 $ref_item{'epoch'} = $tag{'epoch'};
1943 $ref_item{'age'} = age_string
($age);
1945 $ref_item{'reftype'} = $tag{'type'};
1946 $ref_item{'name'} = $tag{'name'};
1947 $ref_item{'refid'} = $tag{'object'};
1948 } elsif ($type eq "commit"){
1949 my %co = parse_commit
($ref_id);
1950 $ref_item{'reftype'} = "commit";
1951 $ref_item{'name'} = $ref_file;
1952 $ref_item{'title'} = $co{'title'};
1953 $ref_item{'refid'} = $ref_id;
1954 $ref_item{'epoch'} = $co{'committer_epoch'};
1955 $ref_item{'age'} = $co{'age_string'};
1957 $ref_item{'reftype'} = $type;
1958 $ref_item{'name'} = $ref_file;
1959 $ref_item{'refid'} = $ref_id;
1965 # parse line of git-diff-tree "raw" output
1966 sub parse_difftree_raw_line
{
1970 # ':100644 100644 03b218260e99b78c6df0ed378e59ed9205ccc96d 3b93d5e7cc7f7dd4ebed13a5cc1a4ad976fc94d8 M ls-files.c'
1971 # ':100644 100644 7f9281985086971d3877aca27704f2aaf9c448ce bc190ebc71bbd923f2b728e505408f5e54bd073a M rev-tree.c'
1972 if ($line =~ m/^:([0-7]{6}) ([0-7]{6}) ([0-9a-fA-F]{40}) ([0-9a-fA-F]{40}) (.)([0-9]{0,3})\t(.*)$/) {
1973 $res{'from_mode'} = $1;
1974 $res{'to_mode'} = $2;
1975 $res{'from_id'} = $3;
1977 $res{'status'} = $5;
1978 $res{'similarity'} = $6;
1979 if ($res{'status'} eq 'R' || $res{'status'} eq 'C') { # renamed or copied
1980 ($res{'from_file'}, $res{'to_file'}) = map { unquote
($_) } split("\t", $7);
1982 $res{'file'} = unquote
($7);
1985 # '::100755 100755 100755 60e79ca1b01bc8b057abe17ddab484699a7f5fdb 94067cc5f73388f33722d52ae02f44692bc07490 94067cc5f73388f33722d52ae02f44692bc07490 MR git-gui/git-gui.sh'
1986 # combined diff (for merge commit)
1987 elsif ($line =~ s/^(::+)((?:[0-7]{6} )+)((?:[0-9a-fA-F]{40} )+)([a-zA-Z]+)\t(.*)$//) {
1988 $res{'nparents'} = length($1);
1989 $res{'from_mode'} = [ split(' ', $2) ];
1990 $res{'to_mode'} = pop @{$res{'from_mode'}};
1991 $res{'from_id'} = [ split(' ', $3) ];
1992 $res{'to_id'} = pop @{$res{'from_id'}};
1993 $res{'status'} = [ split('', $4) ];
1994 $res{'to_file'} = unquote
($5);
1996 # 'c512b523472485aef4fff9e57b229d9d243c967f'
1997 elsif ($line =~ m/^([0-9a-fA-F]{40})$/) {
1998 $res{'commit'} = $1;
2001 return wantarray ? %res : \
%res;
2004 # parse line of git-ls-tree output
2005 sub parse_ls_tree_line
($;%) {
2010 #'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'
2011 $line =~ m/^([0-9]+) (.+) ([0-9a-fA-F]{40})\t(.+)$/s;
2019 $res{'name'} = unquote
($4);
2022 return wantarray ? %res : \
%res;
2025 # generates _two_ hashes, references to which are passed as 2 and 3 argument
2026 sub parse_from_to_diffinfo
{
2027 my ($diffinfo, $from, $to, @parents) = @_;
2029 if ($diffinfo->{'nparents'}) {
2031 $from->{'file'} = [];
2032 $from->{'href'} = [];
2033 fill_from_file_info
($diffinfo, @parents)
2034 unless exists $diffinfo->{'from_file'};
2035 for (my $i = 0; $i < $diffinfo->{'nparents'}; $i++) {
2036 $from->{'file'}[$i] = $diffinfo->{'from_file'}[$i] || $diffinfo->{'to_file'};
2037 if ($diffinfo->{'status'}[$i] ne "A") { # not new (added) file
2038 $from->{'href'}[$i] = href
(action
=>"blob",
2039 hash_base
=>$parents[$i],
2040 hash
=>$diffinfo->{'from_id'}[$i],
2041 file_name
=>$from->{'file'}[$i]);
2043 $from->{'href'}[$i] = undef;
2047 $from->{'file'} = $diffinfo->{'from_file'} || $diffinfo->{'file'};
2048 if ($diffinfo->{'status'} ne "A") { # not new (added) file
2049 $from->{'href'} = href
(action
=>"blob", hash_base
=>$hash_parent,
2050 hash
=>$diffinfo->{'from_id'},
2051 file_name
=>$from->{'file'});
2053 delete $from->{'href'};
2057 $to->{'file'} = $diffinfo->{'to_file'} || $diffinfo->{'file'};
2058 if (!is_deleted
($diffinfo)) { # file exists in result
2059 $to->{'href'} = href
(action
=>"blob", hash_base
=>$hash,
2060 hash
=>$diffinfo->{'to_id'},
2061 file_name
=>$to->{'file'});
2063 delete $to->{'href'};
2067 ## ......................................................................
2068 ## parse to array of hashes functions
2070 sub git_get_heads_list
{
2074 open my $fd, '-|', git_cmd
(), 'for-each-ref',
2075 ($limit ? '--count='.($limit+1) : ()), '--sort=-committerdate',
2076 '--format=%(objectname) %(refname) %(subject)%00%(committer)',
2079 while (my $line = <$fd>) {
2083 my ($refinfo, $committerinfo) = split(/\0/, $line);
2084 my ($hash, $name, $title) = split(' ', $refinfo, 3);
2085 my ($committer, $epoch, $tz) =
2086 ($committerinfo =~ /^(.*) ([0-9]+) (.*)$/);
2087 $name =~ s!^refs/heads/!!;
2089 $ref_item{'name'} = $name;
2090 $ref_item{'id'} = $hash;
2091 $ref_item{'title'} = $title || '(no commit message)';
2092 $ref_item{'epoch'} = $epoch;
2094 $ref_item{'age'} = age_string
(time - $ref_item{'epoch'});
2096 $ref_item{'age'} = "unknown";
2099 push @headslist, \
%ref_item;
2103 return wantarray ? @headslist : \
@headslist;
2106 sub git_get_tags_list
{
2110 open my $fd, '-|', git_cmd
(), 'for-each-ref',
2111 ($limit ? '--count='.($limit+1) : ()), '--sort=-creatordate',
2112 '--format=%(objectname) %(objecttype) %(refname) '.
2113 '%(*objectname) %(*objecttype) %(subject)%00%(creator)',
2116 while (my $line = <$fd>) {
2120 my ($refinfo, $creatorinfo) = split(/\0/, $line);
2121 my ($id, $type, $name, $refid, $reftype, $title) = split(' ', $refinfo, 6);
2122 my ($creator, $epoch, $tz) =
2123 ($creatorinfo =~ /^(.*) ([0-9]+) (.*)$/);
2124 $name =~ s!^refs/tags/!!;
2126 $ref_item{'type'} = $type;
2127 $ref_item{'id'} = $id;
2128 $ref_item{'name'} = $name;
2129 if ($type eq "tag") {
2130 $ref_item{'subject'} = $title;
2131 $ref_item{'reftype'} = $reftype;
2132 $ref_item{'refid'} = $refid;
2134 $ref_item{'reftype'} = $type;
2135 $ref_item{'refid'} = $id;
2138 if ($type eq "tag" || $type eq "commit") {
2139 $ref_item{'epoch'} = $epoch;
2141 $ref_item{'age'} = age_string
(time - $ref_item{'epoch'});
2143 $ref_item{'age'} = "unknown";
2147 push @tagslist, \
%ref_item;
2151 return wantarray ? @tagslist : \
@tagslist;
2154 ## ----------------------------------------------------------------------
2155 ## filesystem-related functions
2157 sub get_file_owner
{
2160 my ($dev, $ino, $mode, $nlink, $st_uid, $st_gid, $rdev, $size) = stat($path);
2161 my ($name, $passwd, $uid, $gid, $quota, $comment, $gcos, $dir, $shell) = getpwuid($st_uid);
2162 if (!defined $gcos) {
2166 $owner =~ s/[,;].*$//;
2167 return to_utf8
($owner);
2170 ## ......................................................................
2171 ## mimetype related functions
2173 sub mimetype_guess_file
{
2174 my $filename = shift;
2175 my $mimemap = shift;
2176 -r
$mimemap or return undef;
2179 open(MIME
, $mimemap) or return undef;
2181 next if m/^#/; # skip comments
2182 my ($mime, $exts) = split(/\t+/);
2183 if (defined $exts) {
2184 my @exts = split(/\s+/, $exts);
2185 foreach my $ext (@exts) {
2186 $mimemap{$ext} = $mime;
2192 $filename =~ /\.([^.]*)$/;
2193 return $mimemap{$1};
2196 sub mimetype_guess
{
2197 my $filename = shift;
2199 $filename =~ /\./ or return undef;
2201 if ($mimetypes_file) {
2202 my $file = $mimetypes_file;
2203 if ($file !~ m!^/!) { # if it is relative path
2204 # it is relative to project
2205 $file = "$projectroot/$project/$file";
2207 $mime = mimetype_guess_file
($filename, $file);
2209 $mime ||= mimetype_guess_file
($filename, '/etc/mime.types');
2215 my $filename = shift;
2218 my $mime = mimetype_guess
($filename);
2219 $mime and return $mime;
2223 return $default_blob_plain_mimetype unless $fd;
2226 return 'text/plain' .
2227 ($default_text_plain_charset ? '; charset='.$default_text_plain_charset : '');
2228 } elsif (! $filename) {
2229 return 'application/octet-stream';
2230 } elsif ($filename =~ m/\.png$/i) {
2232 } elsif ($filename =~ m/\.gif$/i) {
2234 } elsif ($filename =~ m/\.jpe?g$/i) {
2235 return 'image/jpeg';
2237 return 'application/octet-stream';
2241 ## ======================================================================
2242 ## functions printing HTML: header, footer, error page
2244 sub git_header_html
{
2245 my $status = shift || "200 OK";
2246 my $expires = shift;
2248 my $title = "$site_name";
2249 if (defined $project) {
2250 $title .= " - " . to_utf8
($project);
2251 if (defined $action) {
2252 $title .= "/$action";
2253 if (defined $file_name) {
2254 $title .= " - " . esc_path
($file_name);
2255 if ($action eq "tree" && $file_name !~ m
|/$|) {
2262 # require explicit support from the UA if we are to send the page as
2263 # 'application/xhtml+xml', otherwise send it as plain old 'text/html'.
2264 # we have to do this because MSIE sometimes globs '*/*', pretending to
2265 # support xhtml+xml but choking when it gets what it asked for.
2266 if (defined $cgi->http('HTTP_ACCEPT') &&
2267 $cgi->http('HTTP_ACCEPT') =~ m/(,|;|\s|^)application\/xhtml\
+xml
(,|;|\s
|$)/ &&
2268 $cgi->Accept('application/xhtml+xml') != 0) {
2269 $content_type = 'application/xhtml+xml';
2271 $content_type = 'text/html';
2273 print $cgi->header(-type
=>$content_type, -charset
=> 'utf-8',
2274 -status
=> $status, -expires
=> $expires);
2275 my $mod_perl_version = $ENV{'MOD_PERL'} ? " $ENV{'MOD_PERL'}" : '';
2277 <?xml version="1.0" encoding="utf-8"?>
2278 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2279 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" lang="en-US">
2280 <!-- git web interface version $version, (C) 2005-2006, Kay Sievers <kay.sievers\@vrfy.org>, Christian Gierke -->
2281 <!-- git core binaries version $git_version -->
2283 <meta http-equiv="content-type" content="$content_type; charset=utf-8"/>
2284 <meta name="generator" content="gitweb/$version git/$git_version$mod_perl_version"/>
2285 <meta name="robots" content="index, nofollow"/>
2286 <title>$title</title>
2288 # print out each stylesheet that exist
2289 if (defined $stylesheet) {
2290 #provides backwards capability for those people who define style sheet in a config file
2291 print '<link rel="stylesheet" type="text/css" href="'.$stylesheet.'"/>'."\n";
2293 foreach my $stylesheet (@stylesheets) {
2294 next unless $stylesheet;
2295 print '<link rel="stylesheet" type="text/css" href="'.$stylesheet.'"/>'."\n";
2298 if (defined $project) {
2299 printf('<link rel="alternate" title="%s log RSS feed" '.
2300 'href="%s" type="application/rss+xml" />'."\n",
2301 esc_param
($project), href
(action
=>"rss"));
2302 printf('<link rel="alternate" title="%s log RSS feed (no merges)" '.
2303 'href="%s" type="application/rss+xml" />'."\n",
2304 esc_param
($project), href
(action
=>"rss",
2305 extra_options
=>"--no-merges"));
2306 printf('<link rel="alternate" title="%s log Atom feed" '.
2307 'href="%s" type="application/atom+xml" />'."\n",
2308 esc_param
($project), href
(action
=>"atom"));
2309 printf('<link rel="alternate" title="%s log Atom feed (no merges)" '.
2310 'href="%s" type="application/atom+xml" />'."\n",
2311 esc_param
($project), href
(action
=>"atom",
2312 extra_options
=>"--no-merges"));
2314 printf('<link rel="alternate" title="%s projects list" '.
2315 'href="%s" type="text/plain; charset=utf-8"/>'."\n",
2316 $site_name, href
(project
=>undef, action
=>"project_index"));
2317 printf('<link rel="alternate" title="%s projects feeds" '.
2318 'href="%s" type="text/x-opml"/>'."\n",
2319 $site_name, href
(project
=>undef, action
=>"opml"));
2321 if (defined $favicon) {
2322 print qq(<link rel="shortcut icon" href="$favicon" type="image/png"/>\n);
2328 if (-f
$site_header) {
2329 open (my $fd, $site_header);
2334 print "<div class=\"page_header\">\n" .
2335 $cgi->a({-href
=> esc_url
($logo_url),
2336 -title
=> $logo_label},
2337 qq(<img src="$logo" width="72" height="27" alt="git" class="logo"/>));
2338 print $cgi->a({-href
=> esc_url
($home_link)}, $home_link_str) . " / ";
2339 if (defined $project) {
2340 print $cgi->a({-href
=> href
(action
=>"summary")}, esc_html
($project));
2341 if (defined $action) {
2348 my ($have_search) = gitweb_check_feature
('search');
2349 if ((defined $project) && ($have_search)) {
2350 if (!defined $searchtext) {
2354 if (defined $hash_base) {
2355 $search_hash = $hash_base;
2356 } elsif (defined $hash) {
2357 $search_hash = $hash;
2359 $search_hash = "HEAD";
2361 my $action = $my_uri;
2362 my ($use_pathinfo) = gitweb_check_feature
('pathinfo');
2363 if ($use_pathinfo) {
2364 $action .= "/$project";
2366 $cgi->param("p", $project);
2368 $cgi->param("a", "search");
2369 $cgi->param("h", $search_hash);
2370 print $cgi->startform(-method => "get", -action
=> $action) .
2371 "<div class=\"search\">\n" .
2372 (!$use_pathinfo && $cgi->hidden(-name
=> "p") . "\n") .
2373 $cgi->hidden(-name
=> "a") . "\n" .
2374 $cgi->hidden(-name
=> "h") . "\n" .
2375 $cgi->popup_menu(-name
=> 'st', -default => 'commit',
2376 -values => ['commit', 'grep', 'author', 'committer', 'pickaxe']) .
2377 $cgi->sup($cgi->a({-href
=> href
(action
=>"search_help")}, "?")) .
2379 $cgi->textfield(-name
=> "s", -value
=> $searchtext) . "\n" .
2381 $cgi->end_form() . "\n";
2385 sub git_footer_html
{
2386 print "<div class=\"page_footer\">\n";
2387 if (defined $project) {
2388 my $descr = git_get_project_description
($project);
2389 if (defined $descr) {
2390 print "<div class=\"page_footer_text\">" . esc_html
($descr) . "</div>\n";
2392 print $cgi->a({-href
=> href
(action
=>"rss"),
2393 -class => "rss_logo"}, "RSS") . " ";
2394 print $cgi->a({-href
=> href
(action
=>"atom"),
2395 -class => "rss_logo"}, "Atom") . "\n";
2397 print $cgi->a({-href
=> href
(project
=>undef, action
=>"opml"),
2398 -class => "rss_logo"}, "OPML") . " ";
2399 print $cgi->a({-href
=> href
(project
=>undef, action
=>"project_index"),
2400 -class => "rss_logo"}, "TXT") . "\n";
2404 if (-f
$site_footer) {
2405 open (my $fd, $site_footer);
2415 my $status = shift || "403 Forbidden";
2416 my $error = shift || "Malformed query, file missing or permission denied";
2418 git_header_html
($status);
2420 <div class="page_body">
2430 ## ----------------------------------------------------------------------
2431 ## functions printing or outputting HTML: navigation
2433 sub git_print_page_nav
{
2434 my ($current, $suppress, $head, $treehead, $treebase, $extra) = @_;
2435 $extra = '' if !defined $extra; # pager or formats
2437 my @navs = qw(summary shortlog log commit commitdiff tree);
2439 @navs = grep { $_ ne $suppress } @navs;
2442 my %arg = map { $_ => {action
=>$_} } @navs;
2443 if (defined $head) {
2444 for (qw(commit commitdiff)) {
2445 $arg{$_}{'hash'} = $head;
2447 if ($current =~ m/^(tree | log | shortlog | commit | commitdiff | search)$/x) {
2448 for (qw(shortlog log)) {
2449 $arg{$_}{'hash'} = $head;
2453 $arg{'tree'}{'hash'} = $treehead if defined $treehead;
2454 $arg{'tree'}{'hash_base'} = $treebase if defined $treebase;
2456 print "<div class=\"page_nav\">\n" .
2458 map { $_ eq $current ?
2459 $_ : $cgi->a({-href
=> href
(%{$arg{$_}})}, "$_")
2461 print "<br/>\n$extra<br/>\n" .
2465 sub format_paging_nav
{
2466 my ($action, $hash, $head, $page, $nrevs) = @_;
2470 if ($hash ne $head || $page) {
2471 $paging_nav .= $cgi->a({-href
=> href
(action
=>$action)}, "HEAD");
2473 $paging_nav .= "HEAD";
2477 $paging_nav .= " ⋅ " .
2478 $cgi->a({-href
=> href
(action
=>$action, hash
=>$hash, page
=>$page-1),
2479 -accesskey
=> "p", -title
=> "Alt-p"}, "prev");
2481 $paging_nav .= " ⋅ prev";
2484 if ($nrevs >= (100 * ($page+1)-1)) {
2485 $paging_nav .= " ⋅ " .
2486 $cgi->a({-href
=> href
(action
=>$action, hash
=>$hash, page
=>$page+1),
2487 -accesskey
=> "n", -title
=> "Alt-n"}, "next");
2489 $paging_nav .= " ⋅ next";
2495 ## ......................................................................
2496 ## functions printing or outputting HTML: div
2498 sub git_print_header_div
{
2499 my ($action, $title, $hash, $hash_base) = @_;
2502 $args{'action'} = $action;
2503 $args{'hash'} = $hash if $hash;
2504 $args{'hash_base'} = $hash_base if $hash_base;
2506 print "<div class=\"header\">\n" .
2507 $cgi->a({-href
=> href
(%args), -class => "title"},
2508 $title ? $title : $action) .
2512 #sub git_print_authorship (\%) {
2513 sub git_print_authorship
{
2516 my %ad = parse_date
($co->{'author_epoch'}, $co->{'author_tz'});
2517 print "<div class=\"author_date\">" .
2518 esc_html
($co->{'author_name'}) .
2520 if ($ad{'hour_local'} < 6) {
2521 printf(" (<span class=\"atnight\">%02d:%02d</span> %s)",
2522 $ad{'hour_local'}, $ad{'minute_local'}, $ad{'tz_local'});
2524 printf(" (%02d:%02d %s)",
2525 $ad{'hour_local'}, $ad{'minute_local'}, $ad{'tz_local'});
2530 sub git_print_page_path
{
2536 print "<div class=\"page_path\">";
2537 print $cgi->a({-href
=> href
(action
=>"tree", hash_base
=>$hb),
2538 -title
=> 'tree root'}, to_utf8
("[$project]"));
2540 if (defined $name) {
2541 my @dirname = split '/', $name;
2542 my $basename = pop @dirname;
2545 foreach my $dir (@dirname) {
2546 $fullname .= ($fullname ? '/' : '') . $dir;
2547 print $cgi->a({-href
=> href
(action
=>"tree", file_name
=>$fullname,
2549 -title
=> $fullname}, esc_path
($dir));
2552 if (defined $type && $type eq 'blob') {
2553 print $cgi->a({-href
=> href
(action
=>"blob_plain", file_name
=>$file_name,
2555 -title
=> $name}, esc_path
($basename));
2556 } elsif (defined $type && $type eq 'tree') {
2557 print $cgi->a({-href
=> href
(action
=>"tree", file_name
=>$file_name,
2559 -title
=> $name}, esc_path
($basename));
2562 print esc_path
($basename);
2565 print "<br/></div>\n";
2568 # sub git_print_log (\@;%) {
2569 sub git_print_log
($;%) {
2573 if ($opts{'-remove_title'}) {
2574 # remove title, i.e. first line of log
2577 # remove leading empty lines
2578 while (defined $log->[0] && $log->[0] eq "") {
2585 foreach my $line (@$log) {
2586 if ($line =~ m/^ *(signed[ \-]off[ \-]by[ :]|acked[ \-]by[ :]|cc[ :])/i) {
2589 if (! $opts{'-remove_signoff'}) {
2590 print "<span class=\"signoff\">" . esc_html
($line) . "</span><br/>\n";
2593 # remove signoff lines
2600 # print only one empty line
2601 # do not print empty line after signoff
2603 next if ($empty || $signoff);
2609 print format_log_line_html
($line) . "<br/>\n";
2612 if ($opts{'-final_empty_line'}) {
2613 # end with single empty line
2614 print "<br/>\n" unless $empty;
2618 # return link target (what link points to)
2619 sub git_get_link_target
{
2624 open my $fd, "-|", git_cmd
(), "cat-file", "blob", $hash
2628 $link_target = <$fd>;
2633 return $link_target;
2636 # given link target, and the directory (basedir) the link is in,
2637 # return target of link relative to top directory (top tree);
2638 # return undef if it is not possible (including absolute links).
2639 sub normalize_link_target
{
2640 my ($link_target, $basedir, $hash_base) = @_;
2642 # we can normalize symlink target only if $hash_base is provided
2643 return unless $hash_base;
2645 # absolute symlinks (beginning with '/') cannot be normalized
2646 return if (substr($link_target, 0, 1) eq '/');
2648 # normalize link target to path from top (root) tree (dir)
2651 $path = $basedir . '/' . $link_target;
2653 # we are in top (root) tree (dir)
2654 $path = $link_target;
2657 # remove //, /./, and /../
2659 foreach my $part (split('/', $path)) {
2660 # discard '.' and ''
2661 next if (!$part || $part eq '.');
2663 if ($part eq '..') {
2667 # link leads outside repository (outside top dir)
2671 push @path_parts, $part;
2674 $path = join('/', @path_parts);
2679 # print tree entry (row of git_tree), but without encompassing <tr> element
2680 sub git_print_tree_entry
{
2681 my ($t, $basedir, $hash_base, $have_blame) = @_;
2684 $base_key{'hash_base'} = $hash_base if defined $hash_base;
2686 # The format of a table row is: mode list link. Where mode is
2687 # the mode of the entry, list is the name of the entry, an href,
2688 # and link is the action links of the entry.
2690 print "<td class=\"mode\">" . mode_str
($t->{'mode'}) . "</td>\n";
2691 if ($t->{'type'} eq "blob") {
2692 print "<td class=\"list\">" .
2693 $cgi->a({-href
=> href
(action
=>"blob", hash
=>$t->{'hash'},
2694 file_name
=>"$basedir$t->{'name'}", %base_key),
2695 -class => "list"}, esc_path
($t->{'name'}));
2696 if (S_ISLNK
(oct $t->{'mode'})) {
2697 my $link_target = git_get_link_target
($t->{'hash'});
2699 my $norm_target = normalize_link_target
($link_target, $basedir, $hash_base);
2700 if (defined $norm_target) {
2702 $cgi->a({-href
=> href
(action
=>"object", hash_base
=>$hash_base,
2703 file_name
=>$norm_target),
2704 -title
=> $norm_target}, esc_path
($link_target));
2706 print " -> " . esc_path
($link_target);
2711 print "<td class=\"link\">";
2712 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$t->{'hash'},
2713 file_name
=>"$basedir$t->{'name'}", %base_key)},
2717 $cgi->a({-href
=> href
(action
=>"blame", hash
=>$t->{'hash'},
2718 file_name
=>"$basedir$t->{'name'}", %base_key)},
2721 if (defined $hash_base) {
2723 $cgi->a({-href
=> href
(action
=>"history", hash_base
=>$hash_base,
2724 hash
=>$t->{'hash'}, file_name
=>"$basedir$t->{'name'}")},
2728 $cgi->a({-href
=> href
(action
=>"blob_plain", hash_base
=>$hash_base,
2729 file_name
=>"$basedir$t->{'name'}")},
2733 } elsif ($t->{'type'} eq "tree") {
2734 print "<td class=\"list\">";
2735 print $cgi->a({-href
=> href
(action
=>"tree", hash
=>$t->{'hash'},
2736 file_name
=>"$basedir$t->{'name'}", %base_key)},
2737 esc_path
($t->{'name'}));
2739 print "<td class=\"link\">";
2740 print $cgi->a({-href
=> href
(action
=>"tree", hash
=>$t->{'hash'},
2741 file_name
=>"$basedir$t->{'name'}", %base_key)},
2743 if (defined $hash_base) {
2745 $cgi->a({-href
=> href
(action
=>"history", hash_base
=>$hash_base,
2746 file_name
=>"$basedir$t->{'name'}")},
2751 # unknown object: we can only present history for it
2752 # (this includes 'commit' object, i.e. submodule support)
2753 print "<td class=\"list\">" .
2754 esc_path
($t->{'name'}) .
2756 print "<td class=\"link\">";
2757 if (defined $hash_base) {
2758 print $cgi->a({-href
=> href
(action
=>"history",
2759 hash_base
=>$hash_base,
2760 file_name
=>"$basedir$t->{'name'}")},
2767 ## ......................................................................
2768 ## functions printing large fragments of HTML
2770 sub fill_from_file_info
{
2771 my ($diff, @parents) = @_;
2773 $diff->{'from_file'} = [ ];
2774 $diff->{'from_file'}[$diff->{'nparents'} - 1] = undef;
2775 for (my $i = 0; $i < $diff->{'nparents'}; $i++) {
2776 if ($diff->{'status'}[$i] eq 'R' ||
2777 $diff->{'status'}[$i] eq 'C') {
2778 $diff->{'from_file'}[$i] =
2779 git_get_path_by_hash
($parents[$i], $diff->{'from_id'}[$i]);
2786 # parameters can be strings, or references to arrays of strings
2790 if (ref($a) eq "ARRAY" && ref($b) eq "ARRAY" && @$a == @$b) {
2791 for (my $i = 0; $i < @$a; ++$i) {
2792 return 0 unless ($a->[$i] eq $b->[$i]);
2795 } elsif (!ref($a) && !ref($b)) {
2803 my $diffinfo = shift;
2805 return $diffinfo->{'to_id'} eq ('0' x
40);
2808 sub git_difftree_body
{
2809 my ($difftree, $hash, @parents) = @_;
2810 my ($parent) = $parents[0];
2811 my ($have_blame) = gitweb_check_feature
('blame');
2812 print "<div class=\"list_head\">\n";
2813 if ($#{$difftree} > 10) {
2814 print(($#{$difftree} + 1) . " files changed:\n");
2818 print "<table class=\"" .
2819 (@parents > 1 ? "combined " : "") .
2822 # header only for combined diff in 'commitdiff' view
2823 my $has_header = @$difftree && @parents > 1 && $action eq 'commitdiff';
2826 print "<thead><tr>\n" .
2827 "<th></th><th></th>\n"; # filename, patchN link
2828 for (my $i = 0; $i < @parents; $i++) {
2829 my $par = $parents[$i];
2831 $cgi->a({-href
=> href
(action
=>"commitdiff",
2832 hash
=>$hash, hash_parent
=>$par),
2833 -title
=> 'commitdiff to parent number ' .
2834 ($i+1) . ': ' . substr($par,0,7)},
2838 print "</tr></thead>\n<tbody>\n";
2843 foreach my $line (@{$difftree}) {
2845 if (ref($line) eq "HASH") {
2846 # pre-parsed (or generated by hand)
2849 $diff = parse_difftree_raw_line
($line);
2853 print "<tr class=\"dark\">\n";
2855 print "<tr class=\"light\">\n";
2859 if (exists $diff->{'nparents'}) { # combined diff
2861 fill_from_file_info
($diff, @parents)
2862 unless exists $diff->{'from_file'};
2864 if (!is_deleted
($diff)) {
2865 # file exists in the result (child) commit
2867 $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff->{'to_id'},
2868 file_name
=>$diff->{'to_file'},
2870 -class => "list"}, esc_path
($diff->{'to_file'})) .
2874 esc_path
($diff->{'to_file'}) .
2878 if ($action eq 'commitdiff') {
2881 print "<td class=\"link\">" .
2882 $cgi->a({-href
=> "#patch$patchno"}, "patch") .
2887 my $has_history = 0;
2888 my $not_deleted = 0;
2889 for (my $i = 0; $i < $diff->{'nparents'}; $i++) {
2890 my $hash_parent = $parents[$i];
2891 my $from_hash = $diff->{'from_id'}[$i];
2892 my $from_path = $diff->{'from_file'}[$i];
2893 my $status = $diff->{'status'}[$i];
2895 $has_history ||= ($status ne 'A');
2896 $not_deleted ||= ($status ne 'D');
2898 if ($status eq 'A') {
2899 print "<td class=\"link\" align=\"right\"> | </td>\n";
2900 } elsif ($status eq 'D') {
2901 print "<td class=\"link\">" .
2902 $cgi->a({-href
=> href
(action
=>"blob",
2905 file_name
=>$from_path)},
2909 if ($diff->{'to_id'} eq $from_hash) {
2910 print "<td class=\"link nochange\">";
2912 print "<td class=\"link\">";
2914 print $cgi->a({-href
=> href
(action
=>"blobdiff",
2915 hash
=>$diff->{'to_id'},
2916 hash_parent
=>$from_hash,
2918 hash_parent_base
=>$hash_parent,
2919 file_name
=>$diff->{'to_file'},
2920 file_parent
=>$from_path)},
2926 print "<td class=\"link\">";
2928 print $cgi->a({-href
=> href
(action
=>"blob",
2929 hash
=>$diff->{'to_id'},
2930 file_name
=>$diff->{'to_file'},
2933 print " | " if ($has_history);
2936 print $cgi->a({-href
=> href
(action
=>"history",
2937 file_name
=>$diff->{'to_file'},
2944 next; # instead of 'else' clause, to avoid extra indent
2946 # else ordinary diff
2948 my ($to_mode_oct, $to_mode_str, $to_file_type);
2949 my ($from_mode_oct, $from_mode_str, $from_file_type);
2950 if ($diff->{'to_mode'} ne ('0' x
6)) {
2951 $to_mode_oct = oct $diff->{'to_mode'};
2952 if (S_ISREG
($to_mode_oct)) { # only for regular file
2953 $to_mode_str = sprintf("%04o", $to_mode_oct & 0777); # permission bits
2955 $to_file_type = file_type
($diff->{'to_mode'});
2957 if ($diff->{'from_mode'} ne ('0' x
6)) {
2958 $from_mode_oct = oct $diff->{'from_mode'};
2959 if (S_ISREG
($to_mode_oct)) { # only for regular file
2960 $from_mode_str = sprintf("%04o", $from_mode_oct & 0777); # permission bits
2962 $from_file_type = file_type
($diff->{'from_mode'});
2965 if ($diff->{'status'} eq "A") { # created
2966 my $mode_chng = "<span class=\"file_status new\">[new $to_file_type";
2967 $mode_chng .= " with mode: $to_mode_str" if $to_mode_str;
2968 $mode_chng .= "]</span>";
2970 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff->{'to_id'},
2971 hash_base
=>$hash, file_name
=>$diff->{'file'}),
2972 -class => "list"}, esc_path
($diff->{'file'}));
2974 print "<td>$mode_chng</td>\n";
2975 print "<td class=\"link\">";
2976 if ($action eq 'commitdiff') {
2979 print $cgi->a({-href
=> "#patch$patchno"}, "patch");
2982 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff->{'to_id'},
2983 hash_base
=>$hash, file_name
=>$diff->{'file'})},
2987 } elsif ($diff->{'status'} eq "D") { # deleted
2988 my $mode_chng = "<span class=\"file_status deleted\">[deleted $from_file_type]</span>";
2990 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff->{'from_id'},
2991 hash_base
=>$parent, file_name
=>$diff->{'file'}),
2992 -class => "list"}, esc_path
($diff->{'file'}));
2994 print "<td>$mode_chng</td>\n";
2995 print "<td class=\"link\">";
2996 if ($action eq 'commitdiff') {
2999 print $cgi->a({-href
=> "#patch$patchno"}, "patch");
3002 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff->{'from_id'},
3003 hash_base
=>$parent, file_name
=>$diff->{'file'})},
3006 print $cgi->a({-href
=> href
(action
=>"blame", hash_base
=>$parent,
3007 file_name
=>$diff->{'file'})},
3010 print $cgi->a({-href
=> href
(action
=>"history", hash_base
=>$parent,
3011 file_name
=>$diff->{'file'})},
3015 } elsif ($diff->{'status'} eq "M" || $diff->{'status'} eq "T") { # modified, or type changed
3016 my $mode_chnge = "";
3017 if ($diff->{'from_mode'} != $diff->{'to_mode'}) {
3018 $mode_chnge = "<span class=\"file_status mode_chnge\">[changed";
3019 if ($from_file_type ne $to_file_type) {
3020 $mode_chnge .= " from $from_file_type to $to_file_type";
3022 if (($from_mode_oct & 0777) != ($to_mode_oct & 0777)) {
3023 if ($from_mode_str && $to_mode_str) {
3024 $mode_chnge .= " mode: $from_mode_str->$to_mode_str";
3025 } elsif ($to_mode_str) {
3026 $mode_chnge .= " mode: $to_mode_str";
3029 $mode_chnge .= "]</span>\n";
3032 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff->{'to_id'},
3033 hash_base
=>$hash, file_name
=>$diff->{'file'}),
3034 -class => "list"}, esc_path
($diff->{'file'}));
3036 print "<td>$mode_chnge</td>\n";
3037 print "<td class=\"link\">";
3038 if ($action eq 'commitdiff') {
3041 print $cgi->a({-href
=> "#patch$patchno"}, "patch") .
3043 } elsif ($diff->{'to_id'} ne $diff->{'from_id'}) {
3044 # "commit" view and modified file (not onlu mode changed)
3045 print $cgi->a({-href
=> href
(action
=>"blobdiff",
3046 hash
=>$diff->{'to_id'}, hash_parent
=>$diff->{'from_id'},
3047 hash_base
=>$hash, hash_parent_base
=>$parent,
3048 file_name
=>$diff->{'file'})},
3052 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff->{'to_id'},
3053 hash_base
=>$hash, file_name
=>$diff->{'file'})},
3056 print $cgi->a({-href
=> href
(action
=>"blame", hash_base
=>$hash,
3057 file_name
=>$diff->{'file'})},
3060 print $cgi->a({-href
=> href
(action
=>"history", hash_base
=>$hash,
3061 file_name
=>$diff->{'file'})},
3065 } elsif ($diff->{'status'} eq "R" || $diff->{'status'} eq "C") { # renamed or copied
3066 my %status_name = ('R' => 'moved', 'C' => 'copied');
3067 my $nstatus = $status_name{$diff->{'status'}};
3069 if ($diff->{'from_mode'} != $diff->{'to_mode'}) {
3070 # mode also for directories, so we cannot use $to_mode_str
3071 $mode_chng = sprintf(", mode: %04o", $to_mode_oct & 0777);
3074 $cgi->a({-href
=> href
(action
=>"blob", hash_base
=>$hash,
3075 hash
=>$diff->{'to_id'}, file_name
=>$diff->{'to_file'}),
3076 -class => "list"}, esc_path
($diff->{'to_file'})) . "</td>\n" .
3077 "<td><span class=\"file_status $nstatus\">[$nstatus from " .
3078 $cgi->a({-href
=> href
(action
=>"blob", hash_base
=>$parent,
3079 hash
=>$diff->{'from_id'}, file_name
=>$diff->{'from_file'}),
3080 -class => "list"}, esc_path
($diff->{'from_file'})) .
3081 " with " . (int $diff->{'similarity'}) . "% similarity$mode_chng]</span></td>\n" .
3082 "<td class=\"link\">";
3083 if ($action eq 'commitdiff') {
3086 print $cgi->a({-href
=> "#patch$patchno"}, "patch") .
3088 } elsif ($diff->{'to_id'} ne $diff->{'from_id'}) {
3089 # "commit" view and modified file (not only pure rename or copy)
3090 print $cgi->a({-href
=> href
(action
=>"blobdiff",
3091 hash
=>$diff->{'to_id'}, hash_parent
=>$diff->{'from_id'},
3092 hash_base
=>$hash, hash_parent_base
=>$parent,
3093 file_name
=>$diff->{'to_file'}, file_parent
=>$diff->{'from_file'})},
3097 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff->{'to_id'},
3098 hash_base
=>$parent, file_name
=>$diff->{'to_file'})},
3101 print $cgi->a({-href
=> href
(action
=>"blame", hash_base
=>$hash,
3102 file_name
=>$diff->{'to_file'})},
3105 print $cgi->a({-href
=> href
(action
=>"history", hash_base
=>$hash,
3106 file_name
=>$diff->{'to_file'})},
3110 } # we should not encounter Unmerged (U) or Unknown (X) status
3113 print "</tbody>" if $has_header;
3117 sub git_patchset_body
{
3118 my ($fd, $difftree, $hash, @hash_parents) = @_;
3119 my ($hash_parent) = $hash_parents[0];
3122 my $patch_number = 0;
3127 print "<div class=\"patchset\">\n";
3129 # skip to first patch
3130 while ($patch_line = <$fd>) {
3133 last if ($patch_line =~ m/^diff /);
3137 while ($patch_line) {
3139 my ($from_id, $to_id);
3142 #assert($patch_line =~ m/^diff /) if DEBUG;
3143 #assert($patch_line !~ m!$/$!) if DEBUG; # is chomp-ed
3145 push @diff_header, $patch_line;
3147 # extended diff header
3149 while ($patch_line = <$fd>) {
3152 last EXTENDED_HEADER
if ($patch_line =~ m/^--- |^diff /);
3154 if ($patch_line =~ m/^index ([0-9a-fA-F]{40})..([0-9a-fA-F]{40})/) {
3157 } elsif ($patch_line =~ m/^index ((?:[0-9a-fA-F]{40},)+[0-9a-fA-F]{40})..([0-9a-fA-F]{40})/) {
3158 $from_id = [ split(',', $1) ];
3162 push @diff_header, $patch_line;
3164 my $last_patch_line = $patch_line;
3166 # check if current patch belong to current raw line
3167 # and parse raw git-diff line if needed
3168 if (defined $diffinfo &&
3169 defined $from_id && defined $to_id &&
3170 from_ids_eq
($diffinfo->{'from_id'}, $from_id) &&
3171 $diffinfo->{'to_id'} eq $to_id) {
3172 # this is continuation of a split patch
3173 print "<div class=\"patch cont\">\n";
3175 # advance raw git-diff output if needed
3176 $patch_idx++ if defined $diffinfo;
3178 # compact combined diff output can have some patches skipped
3179 # find which patch (using pathname of result) we are at now
3181 if ($diff_header[0] =~ m!^diff --cc "?(.*)"?$!) {
3186 # read and prepare patch information
3187 if (ref($difftree->[$patch_idx]) eq "HASH") {
3188 # pre-parsed (or generated by hand)
3189 $diffinfo = $difftree->[$patch_idx];
3191 $diffinfo = parse_difftree_raw_line
($difftree->[$patch_idx]);
3194 # check if current raw line has no patch (it got simplified)
3195 if (defined $to_name && $to_name ne $diffinfo->{'to_file'}) {
3196 print "<div class=\"patch\" id=\"patch". ($patch_idx+1) ."\">\n" .
3197 format_diff_cc_simplified
($diffinfo, @hash_parents) .
3198 "</div>\n"; # class="patch"
3203 } until (!defined $to_name || $to_name eq $diffinfo->{'to_file'} ||
3204 $patch_idx > $#$difftree);
3206 # modifies %from, %to hashes
3207 parse_from_to_diffinfo
($diffinfo, \
%from, \
%to, @hash_parents);
3209 # this is first patch for raw difftree line with $patch_idx index
3210 # we index @$difftree array from 0, but number patches from 1
3211 print "<div class=\"patch\" id=\"patch". ($patch_idx+1) ."\">\n";
3214 # print "git diff" header
3215 $patch_line = shift @diff_header;
3216 print format_git_diff_header_line
($patch_line, $diffinfo,
3219 # print extended diff header
3220 print "<div class=\"diff extended_header\">\n" if (@diff_header > 0);
3222 foreach $patch_line (@diff_header) {
3223 print format_extended_diff_header_line
($patch_line, $diffinfo,
3226 print "</div>\n" if (@diff_header > 0); # class="diff extended_header"
3228 # from-file/to-file diff header
3229 $patch_line = $last_patch_line;
3230 if (! $patch_line) {
3231 print "</div>\n"; # class="patch"
3234 next PATCH
if ($patch_line =~ m/^diff /);
3235 #assert($patch_line =~ m/^---/) if DEBUG;
3236 #assert($patch_line eq $last_patch_line) if DEBUG;
3238 $patch_line = <$fd>;
3240 #assert($patch_line =~ m/^\+\+\+/) if DEBUG;
3242 print format_diff_from_to_header
($last_patch_line, $patch_line,
3243 $diffinfo, \
%from, \
%to,
3248 while ($patch_line = <$fd>) {
3251 next PATCH
if ($patch_line =~ m/^diff /);
3253 print format_diff_line
($patch_line, \
%from, \
%to);
3257 print "</div>\n"; # class="patch"
3260 # for compact combined (--cc) format, with chunk and patch simpliciaction
3261 # patchset might be empty, but there might be unprocessed raw lines
3262 for ($patch_idx++ if $patch_number > 0;
3263 $patch_idx < @$difftree;
3265 # read and prepare patch information
3266 if (ref($difftree->[$patch_idx]) eq "HASH") {
3267 # pre-parsed (or generated by hand)
3268 $diffinfo = $difftree->[$patch_idx];
3270 $diffinfo = parse_difftree_raw_line
($difftree->[$patch_idx]);
3273 # generate anchor for "patch" links in difftree / whatchanged part
3274 print "<div class=\"patch\" id=\"patch". ($patch_idx+1) ."\">\n" .
3275 format_diff_cc_simplified
($diffinfo, @hash_parents) .
3276 "</div>\n"; # class="patch"
3281 if ($patch_number == 0) {
3282 if (@hash_parents > 1) {
3283 print "<div class=\"diff nodifferences\">Trivial merge</div>\n";
3285 print "<div class=\"diff nodifferences\">No differences found</div>\n";
3289 print "</div>\n"; # class="patchset"
3292 # . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
3294 sub git_project_list_body
{
3295 my ($projlist, $order, $from, $to, $extra, $no_header) = @_;
3297 my ($check_forks) = gitweb_check_feature
('forks');
3300 foreach my $pr (@$projlist) {
3301 my (@aa) = git_get_last_activity
($pr->{'path'});
3305 ($pr->{'age'}, $pr->{'age_string'}) = @aa;
3306 if (!defined $pr->{'descr'}) {
3307 my $descr = git_get_project_description
($pr->{'path'}) || "";
3308 $pr->{'descr_long'} = to_utf8
($descr);
3309 $pr->{'descr'} = chop_str
($descr, $projects_list_description_width, 5);
3311 if (!defined $pr->{'owner'}) {
3312 $pr->{'owner'} = git_get_project_owner
("$pr->{'path'}") || "";
3315 my $pname = $pr->{'path'};
3316 if (($pname =~ s/\.git$//) &&
3317 ($pname !~ /\/$/) &&
3318 (-d
"$projectroot/$pname")) {
3319 $pr->{'forks'} = "-d $projectroot/$pname";
3325 push @projects, $pr;
3328 $order ||= $default_projects_order;
3329 $from = 0 unless defined $from;
3330 $to = $#projects if (!defined $to || $#projects < $to);
3332 print "<table class=\"project_list\">\n";
3333 unless ($no_header) {
3336 print "<th></th>\n";
3338 if ($order eq "project") {
3339 @projects = sort {$a->{'path'} cmp $b->{'path'}} @projects;
3340 print "<th>Project</th>\n";
3343 $cgi->a({-href
=> href
(project
=>undef, order
=>'project'),
3344 -class => "header"}, "Project") .
3347 if ($order eq "descr") {
3348 @projects = sort {$a->{'descr'} cmp $b->{'descr'}} @projects;
3349 print "<th>Description</th>\n";
3352 $cgi->a({-href
=> href
(project
=>undef, order
=>'descr'),
3353 -class => "header"}, "Description") .
3356 if ($order eq "owner") {
3357 @projects = sort {$a->{'owner'} cmp $b->{'owner'}} @projects;
3358 print "<th>Owner</th>\n";
3361 $cgi->a({-href
=> href
(project
=>undef, order
=>'owner'),
3362 -class => "header"}, "Owner") .
3365 if ($order eq "age") {
3366 @projects = sort {$a->{'age'} <=> $b->{'age'}} @projects;
3367 print "<th>Last Change</th>\n";
3370 $cgi->a({-href
=> href
(project
=>undef, order
=>'age'),
3371 -class => "header"}, "Last Change") .
3374 print "<th></th>\n" .
3378 for (my $i = $from; $i <= $to; $i++) {
3379 my $pr = $projects[$i];
3381 print "<tr class=\"dark\">\n";
3383 print "<tr class=\"light\">\n";
3388 if ($pr->{'forks'}) {
3389 print "<!-- $pr->{'forks'} -->\n";
3390 print $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"forks")}, "+");
3394 print "<td>" . $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"summary"),
3395 -class => "list"}, esc_html
($pr->{'path'})) . "</td>\n" .
3396 "<td>" . $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"summary"),
3397 -class => "list", -title
=> $pr->{'descr_long'}},
3398 esc_html
($pr->{'descr'})) . "</td>\n" .
3399 "<td><i>" . esc_html
(chop_str
($pr->{'owner'}, 15)) . "</i></td>\n";
3400 print "<td class=\"". age_class
($pr->{'age'}) . "\">" .
3401 (defined $pr->{'age_string'} ? $pr->{'age_string'} : "No commits") . "</td>\n" .
3402 "<td class=\"link\">" .
3403 $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"summary")}, "summary") . " | " .
3404 $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"shortlog")}, "shortlog") . " | " .
3405 $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"log")}, "log") . " | " .
3406 $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"tree")}, "tree") .
3407 ($pr->{'forks'} ? " | " . $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"forks")}, "forks") : '') .
3411 if (defined $extra) {
3414 print "<td></td>\n";
3416 print "<td colspan=\"5\">$extra</td>\n" .
3422 sub git_shortlog_body
{
3423 # uses global variable $project
3424 my ($commitlist, $from, $to, $refs, $extra) = @_;
3426 $from = 0 unless defined $from;
3427 $to = $#{$commitlist} if (!defined $to || $#{$commitlist} < $to);
3429 print "<table class=\"shortlog\" cellspacing=\"0\">\n";
3431 for (my $i = $from; $i <= $to; $i++) {
3432 my %co = %{$commitlist->[$i]};
3433 my $commit = $co{'id'};
3434 my $ref = format_ref_marker
($refs, $commit);
3436 print "<tr class=\"dark\">\n";
3438 print "<tr class=\"light\">\n";
3441 # git_summary() used print "<td><i>$co{'age_string'}</i></td>\n" .
3442 print "<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n" .
3443 "<td><i>" . esc_html
(chop_str
($co{'author_name'}, 10)) . "</i></td>\n" .
3445 print format_subject_html
($co{'title'}, $co{'title_short'},
3446 href
(action
=>"commit", hash
=>$commit), $ref);
3448 "<td class=\"link\">" .
3449 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$commit)}, "commit") . " | " .
3450 $cgi->a({-href
=> href
(action
=>"commitdiff", hash
=>$commit)}, "commitdiff") . " | " .
3451 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$commit, hash_base
=>$commit)}, "tree");
3452 my $snapshot_links = format_snapshot_links
($commit);
3453 if (defined $snapshot_links) {
3454 print " | " . $snapshot_links;
3459 if (defined $extra) {
3461 "<td colspan=\"4\">$extra</td>\n" .
3467 sub git_history_body
{
3468 # Warning: assumes constant type (blob or tree) during history
3469 my ($commitlist, $from, $to, $refs, $hash_base, $ftype, $extra) = @_;
3471 $from = 0 unless defined $from;
3472 $to = $#{$commitlist} unless (defined $to && $to <= $#{$commitlist});
3474 print "<table class=\"history\" cellspacing=\"0\">\n";
3476 for (my $i = $from; $i <= $to; $i++) {
3477 my %co = %{$commitlist->[$i]};
3481 my $commit = $co{'id'};
3483 my $ref = format_ref_marker
($refs, $commit);
3486 print "<tr class=\"dark\">\n";
3488 print "<tr class=\"light\">\n";
3491 print "<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n" .
3492 # shortlog uses chop_str($co{'author_name'}, 10)
3493 "<td><i>" . esc_html
(chop_str
($co{'author_name'}, 15, 3)) . "</i></td>\n" .
3495 # originally git_history used chop_str($co{'title'}, 50)
3496 print format_subject_html
($co{'title'}, $co{'title_short'},
3497 href
(action
=>"commit", hash
=>$commit), $ref);
3499 "<td class=\"link\">" .
3500 $cgi->a({-href
=> href
(action
=>$ftype, hash_base
=>$commit, file_name
=>$file_name)}, $ftype) . " | " .
3501 $cgi->a({-href
=> href
(action
=>"commitdiff", hash
=>$commit)}, "commitdiff");
3503 if ($ftype eq 'blob') {
3504 my $blob_current = git_get_hash_by_path
($hash_base, $file_name);
3505 my $blob_parent = git_get_hash_by_path
($commit, $file_name);
3506 if (defined $blob_current && defined $blob_parent &&
3507 $blob_current ne $blob_parent) {
3509 $cgi->a({-href
=> href
(action
=>"blobdiff",
3510 hash
=>$blob_current, hash_parent
=>$blob_parent,
3511 hash_base
=>$hash_base, hash_parent_base
=>$commit,
3512 file_name
=>$file_name)},
3519 if (defined $extra) {
3521 "<td colspan=\"4\">$extra</td>\n" .
3528 # uses global variable $project
3529 my ($taglist, $from, $to, $extra) = @_;
3530 $from = 0 unless defined $from;
3531 $to = $#{$taglist} if (!defined $to || $#{$taglist} < $to);
3533 print "<table class=\"tags\" cellspacing=\"0\">\n";
3535 for (my $i = $from; $i <= $to; $i++) {
3536 my $entry = $taglist->[$i];
3538 my $comment = $tag{'subject'};
3540 if (defined $comment) {
3541 $comment_short = chop_str
($comment, 30, 5);
3544 print "<tr class=\"dark\">\n";
3546 print "<tr class=\"light\">\n";
3549 if (defined $tag{'age'}) {
3550 print "<td><i>$tag{'age'}</i></td>\n";
3552 print "<td></td>\n";
3555 $cgi->a({-href
=> href
(action
=>$tag{'reftype'}, hash
=>$tag{'refid'}),
3556 -class => "list name"}, esc_html
($tag{'name'})) .
3559 if (defined $comment) {
3560 print format_subject_html
($comment, $comment_short,
3561 href
(action
=>"tag", hash
=>$tag{'id'}));
3564 "<td class=\"selflink\">";
3565 if ($tag{'type'} eq "tag") {
3566 print $cgi->a({-href
=> href
(action
=>"tag", hash
=>$tag{'id'})}, "tag");
3571 "<td class=\"link\">" . " | " .
3572 $cgi->a({-href
=> href
(action
=>$tag{'reftype'}, hash
=>$tag{'refid'})}, $tag{'reftype'});
3573 if ($tag{'reftype'} eq "commit") {
3574 print " | " . $cgi->a({-href
=> href
(action
=>"shortlog", hash
=>$tag{'name'})}, "shortlog") .
3575 " | " . $cgi->a({-href
=> href
(action
=>"log", hash
=>$tag{'name'})}, "log");
3576 } elsif ($tag{'reftype'} eq "blob") {
3577 print " | " . $cgi->a({-href
=> href
(action
=>"blob_plain", hash
=>$tag{'refid'})}, "raw");
3582 if (defined $extra) {
3584 "<td colspan=\"5\">$extra</td>\n" .
3590 sub git_heads_body
{
3591 # uses global variable $project
3592 my ($headlist, $head, $from, $to, $extra) = @_;
3593 $from = 0 unless defined $from;
3594 $to = $#{$headlist} if (!defined $to || $#{$headlist} < $to);
3596 print "<table class=\"heads\" cellspacing=\"0\">\n";
3598 for (my $i = $from; $i <= $to; $i++) {
3599 my $entry = $headlist->[$i];
3601 my $curr = $ref{'id'} eq $head;
3603 print "<tr class=\"dark\">\n";
3605 print "<tr class=\"light\">\n";
3608 print "<td><i>$ref{'age'}</i></td>\n" .
3609 ($curr ? "<td class=\"current_head\">" : "<td>") .
3610 $cgi->a({-href
=> href
(action
=>"shortlog", hash
=>$ref{'name'}),
3611 -class => "list name"},esc_html
($ref{'name'})) .
3613 "<td class=\"link\">" .
3614 $cgi->a({-href
=> href
(action
=>"shortlog", hash
=>$ref{'name'})}, "shortlog") . " | " .
3615 $cgi->a({-href
=> href
(action
=>"log", hash
=>$ref{'name'})}, "log") . " | " .
3616 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$ref{'name'}, hash_base
=>$ref{'name'})}, "tree") .
3620 if (defined $extra) {
3622 "<td colspan=\"3\">$extra</td>\n" .
3628 sub git_search_grep_body
{
3629 my ($commitlist, $from, $to, $extra) = @_;
3630 $from = 0 unless defined $from;
3631 $to = $#{$commitlist} if (!defined $to || $#{$commitlist} < $to);
3633 print "<table class=\"grep\" cellspacing=\"0\">\n";
3635 for (my $i = $from; $i <= $to; $i++) {
3636 my %co = %{$commitlist->[$i]};
3640 my $commit = $co{'id'};
3642 print "<tr class=\"dark\">\n";
3644 print "<tr class=\"light\">\n";
3647 print "<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n" .
3648 "<td><i>" . esc_html
(chop_str
($co{'author_name'}, 15, 5)) . "</i></td>\n" .
3650 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$co{'id'}), -class => "list subject"},
3651 esc_html
(chop_str
($co{'title'}, 50)) . "<br/>");
3652 my $comment = $co{'comment'};
3653 foreach my $line (@$comment) {
3654 if ($line =~ m/^(.*)($search_regexp)(.*)$/i) {
3655 my $lead = esc_html
($1) || "";
3656 $lead = chop_str
($lead, 30, 10);
3657 my $match = esc_html
($2) || "";
3658 my $trail = esc_html
($3) || "";
3659 $trail = chop_str
($trail, 30, 10);
3660 my $text = "$lead<span class=\"match\">$match</span>$trail";
3661 print chop_str
($text, 80, 5) . "<br/>\n";
3665 "<td class=\"link\">" .
3666 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$co{'id'})}, "commit") .
3668 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$co{'tree'}, hash_base
=>$co{'id'})}, "tree");
3672 if (defined $extra) {
3674 "<td colspan=\"3\">$extra</td>\n" .
3680 ## ======================================================================
3681 ## ======================================================================
3684 sub git_project_list
{
3685 my $order = $cgi->param('o');
3686 if (defined $order && $order !~ m/none|project|descr|owner|age/) {
3687 die_error
(undef, "Unknown order parameter");
3690 my @list = git_get_projects_list
();
3692 die_error
(undef, "No projects found");
3696 if (-f
$home_text) {
3697 print "<div class=\"index_include\">\n";
3698 open (my $fd, $home_text);
3703 git_project_list_body
(\
@list, $order);
3708 my $order = $cgi->param('o');
3709 if (defined $order && $order !~ m/none|project|descr|owner|age/) {
3710 die_error
(undef, "Unknown order parameter");
3713 my @list = git_get_projects_list
($project);
3715 die_error
(undef, "No forks found");
3719 git_print_page_nav
('','');
3720 git_print_header_div
('summary', "$project forks");
3721 git_project_list_body
(\
@list, $order);
3725 sub git_project_index
{
3726 my @projects = git_get_projects_list
($project);
3729 -type
=> 'text/plain',
3730 -charset
=> 'utf-8',
3731 -content_disposition
=> 'inline; filename="index.aux"');
3733 foreach my $pr (@projects) {
3734 if (!exists $pr->{'owner'}) {
3735 $pr->{'owner'} = git_get_project_owner
("$pr->{'path'}");
3738 my ($path, $owner) = ($pr->{'path'}, $pr->{'owner'});
3739 # quote as in CGI::Util::encode, but keep the slash, and use '+' for ' '
3740 $path =~ s/([^a-zA-Z0-9_.\-\/ ])/sprintf
("%%%02X", ord($1))/eg
;
3741 $owner =~ s/([^a-zA-Z0-9_.\-\/ ])/sprintf
("%%%02X", ord($1))/eg
;
3745 print "$path $owner\n";
3750 my $descr = git_get_project_description
($project) || "none";
3751 my %co = parse_commit
("HEAD");
3752 my %cd = %co ? parse_date
($co{'committer_epoch'}, $co{'committer_tz'}) : ();
3753 my $head = $co{'id'};
3755 my $owner = git_get_project_owner
($project);
3757 my $refs = git_get_references
();
3758 # These get_*_list functions return one more to allow us to see if
3759 # there are more ...
3760 my @taglist = git_get_tags_list
(16);
3761 my @headlist = git_get_heads_list
(16);
3763 my ($check_forks) = gitweb_check_feature
('forks');
3766 @forklist = git_get_projects_list
($project);
3770 git_print_page_nav
('summary','', $head);
3772 print "<div class=\"title\"> </div>\n";
3773 print "<table cellspacing=\"0\">\n" .
3774 "<tr><td>description</td><td>" . esc_html
($descr) . "</td></tr>\n" .
3775 "<tr><td>owner</td><td>" . esc_html
($owner) . "</td></tr>\n";
3776 if (defined $cd{'rfc2822'}) {
3777 print "<tr><td>last change</td><td>$cd{'rfc2822'}</td></tr>\n";
3780 # use per project git URL list in $projectroot/$project/cloneurl
3781 # or make project git URL from git base URL and project name
3782 my $url_tag = "URL";
3783 my @url_list = git_get_project_url_list
($project);
3784 @url_list = map { "$_/$project" } @git_base_url_list unless @url_list;
3785 foreach my $git_url (@url_list) {
3786 next unless $git_url;
3787 print "<tr><td>$url_tag</td><td>$git_url</td></tr>\n";
3792 if (-s
"$projectroot/$project/README.html") {
3793 if (open my $fd, "$projectroot/$project/README.html") {
3794 print "<div class=\"title\">readme</div>\n";
3795 print $_ while (<$fd>);
3800 # we need to request one more than 16 (0..15) to check if
3802 my @commitlist = $head ? parse_commits
($head, 17) : ();
3804 git_print_header_div
('shortlog');
3805 git_shortlog_body
(\
@commitlist, 0, 15, $refs,
3806 $#commitlist <= 15 ? undef :
3807 $cgi->a({-href
=> href
(action
=>"shortlog")}, "..."));
3811 git_print_header_div
('tags');
3812 git_tags_body
(\
@taglist, 0, 15,
3813 $#taglist <= 15 ? undef :
3814 $cgi->a({-href
=> href
(action
=>"tags")}, "..."));
3818 git_print_header_div
('heads');
3819 git_heads_body
(\
@headlist, $head, 0, 15,
3820 $#headlist <= 15 ? undef :
3821 $cgi->a({-href
=> href
(action
=>"heads")}, "..."));
3825 git_print_header_div
('forks');
3826 git_project_list_body
(\
@forklist, undef, 0, 15,
3827 $#forklist <= 15 ? undef :
3828 $cgi->a({-href
=> href
(action
=>"forks")}, "..."),
3836 my $head = git_get_head_hash
($project);
3838 git_print_page_nav
('','', $head,undef,$head);
3839 my %tag = parse_tag
($hash);
3842 die_error
(undef, "Unknown tag object");
3845 git_print_header_div
('commit', esc_html
($tag{'name'}), $hash);
3846 print "<div class=\"title_text\">\n" .
3847 "<table cellspacing=\"0\">\n" .
3849 "<td>object</td>\n" .
3850 "<td>" . $cgi->a({-class => "list", -href
=> href
(action
=>$tag{'type'}, hash
=>$tag{'object'})},
3851 $tag{'object'}) . "</td>\n" .
3852 "<td class=\"link\">" . $cgi->a({-href
=> href
(action
=>$tag{'type'}, hash
=>$tag{'object'})},
3853 $tag{'type'}) . "</td>\n" .
3855 if (defined($tag{'author'})) {
3856 my %ad = parse_date
($tag{'epoch'}, $tag{'tz'});
3857 print "<tr><td>author</td><td>" . esc_html
($tag{'author'}) . "</td></tr>\n";
3858 print "<tr><td></td><td>" . $ad{'rfc2822'} .
3859 sprintf(" (%02d:%02d %s)", $ad{'hour_local'}, $ad{'minute_local'}, $ad{'tz_local'}) .
3862 print "</table>\n\n" .
3864 print "<div class=\"page_body\">";
3865 my $comment = $tag{'comment'};
3866 foreach my $line (@$comment) {
3868 print esc_html
($line, -nbsp
=>1) . "<br/>\n";
3878 my ($have_blame) = gitweb_check_feature
('blame');
3880 die_error
('403 Permission denied', "Permission denied");
3882 die_error
('404 Not Found', "File name not defined") if (!$file_name);
3883 $hash_base ||= git_get_head_hash
($project);
3884 die_error
(undef, "Couldn't find base commit") unless ($hash_base);
3885 my %co = parse_commit
($hash_base)
3886 or die_error
(undef, "Reading commit failed");
3887 if (!defined $hash) {
3888 $hash = git_get_hash_by_path
($hash_base, $file_name, "blob")
3889 or die_error
(undef, "Error looking up file");
3891 $ftype = git_get_type
($hash);
3892 if ($ftype !~ "blob") {
3893 die_error
('400 Bad Request', "Object is not a blob");
3895 open ($fd, "-|", git_cmd
(), "blame", '-p', '--',
3896 $file_name, $hash_base)
3897 or die_error
(undef, "Open git-blame failed");
3900 $cgi->a({-href
=> href
(action
=>"blob", hash
=>$hash, hash_base
=>$hash_base, file_name
=>$file_name)},
3903 $cgi->a({-href
=> href
(action
=>"history", hash
=>$hash, hash_base
=>$hash_base, file_name
=>$file_name)},
3906 $cgi->a({-href
=> href
(action
=>"blame", file_name
=>$file_name)},
3908 git_print_page_nav
('','', $hash_base,$co{'tree'},$hash_base, $formats_nav);
3909 git_print_header_div
('commit', esc_html
($co{'title'}), $hash_base);
3910 git_print_page_path
($file_name, $ftype, $hash_base);
3911 my @rev_color = (qw(light2 dark2));
3912 my $num_colors = scalar(@rev_color);
3913 my $current_color = 0;
3916 <div class="page_body">
3917 <table class="blame">
3918 <tr><th>Commit</th><th>Line</th><th>Data</th></tr>
3923 last unless defined $_;
3924 my ($full_rev, $orig_lineno, $lineno, $group_size) =
3925 /^([0-9a-f]{40}) (\d+) (\d+)(?: (\d+))?$/;
3926 if (!exists $metainfo{$full_rev}) {
3927 $metainfo{$full_rev} = {};
3929 my $meta = $metainfo{$full_rev};
3932 if (/^(\S+) (.*)$/) {
3938 my $rev = substr($full_rev, 0, 8);
3939 my $author = $meta->{'author'};
3940 my %date = parse_date
($meta->{'author-time'},
3941 $meta->{'author-tz'});
3942 my $date = $date{'iso-tz'};
3944 $current_color = ++$current_color % $num_colors;
3946 print "<tr class=\"$rev_color[$current_color]\">\n";
3948 print "<td class=\"sha1\"";
3949 print " title=\"". esc_html
($author) . ", $date\"";
3950 print " rowspan=\"$group_size\"" if ($group_size > 1);
3952 print $cgi->a({-href
=> href
(action
=>"commit",
3954 file_name
=>$file_name)},
3958 open (my $dd, "-|", git_cmd
(), "rev-parse", "$full_rev^")
3959 or die_error
(undef, "Open git-rev-parse failed");
3960 my $parent_commit = <$dd>;
3962 chomp($parent_commit);
3963 my $blamed = href
(action
=> 'blame',
3964 file_name
=> $meta->{'filename'},
3965 hash_base
=> $parent_commit);
3966 print "<td class=\"linenr\">";
3967 print $cgi->a({ -href
=> "$blamed#l$orig_lineno",
3969 -class => "linenr" },
3972 print "<td class=\"pre\">" . esc_html
($data) . "</td>\n";
3978 or print "Reading blob failed\n";
3985 my ($have_blame) = gitweb_check_feature
('blame');
3987 die_error
('403 Permission denied', "Permission denied");
3989 die_error
('404 Not Found', "File name not defined") if (!$file_name);
3990 $hash_base ||= git_get_head_hash
($project);
3991 die_error
(undef, "Couldn't find base commit") unless ($hash_base);
3992 my %co = parse_commit
($hash_base)
3993 or die_error
(undef, "Reading commit failed");
3994 if (!defined $hash) {
3995 $hash = git_get_hash_by_path
($hash_base, $file_name, "blob")
3996 or die_error
(undef, "Error lookup file");
3998 open ($fd, "-|", git_cmd
(), "annotate", '-l', '-t', '-r', $file_name, $hash_base)
3999 or die_error
(undef, "Open git-annotate failed");
4002 $cgi->a({-href
=> href
(action
=>"blob", hash
=>$hash, hash_base
=>$hash_base, file_name
=>$file_name)},
4005 $cgi->a({-href
=> href
(action
=>"history", hash
=>$hash, hash_base
=>$hash_base, file_name
=>$file_name)},
4008 $cgi->a({-href
=> href
(action
=>"blame", file_name
=>$file_name)},
4010 git_print_page_nav
('','', $hash_base,$co{'tree'},$hash_base, $formats_nav);
4011 git_print_header_div
('commit', esc_html
($co{'title'}), $hash_base);
4012 git_print_page_path
($file_name, 'blob', $hash_base);
4013 print "<div class=\"page_body\">\n";
4015 <table class="blame">
4024 my @line_class = (qw(light dark));
4025 my $line_class_len = scalar (@line_class);
4026 my $line_class_num = $#line_class;
4027 while (my $line = <$fd>) {
4039 $line_class_num = ($line_class_num + 1) % $line_class_len;
4041 if ($line =~ m/^([0-9a-fA-F]{40})\t\(\s*([^\t]+)\t(\d+) [+-]\d\d\d\d\t(\d+)\)(.*)$/) {
4048 print qq( <tr><td colspan="5" class="error">Unable to parse: $line</td></tr>\n);
4051 $short_rev = substr ($long_rev, 0, 8);
4052 $age = time () - $time;
4053 $age_str = age_string
($age);
4054 $age_str =~ s/ / /g;
4055 $age_class = age_class
($age);
4056 $author = esc_html
($author);
4057 $author =~ s/ / /g;
4059 $data = untabify
($data);
4060 $data = esc_html
($data);
4063 <tr class="$line_class[$line_class_num]">
4064 <td class="sha1"><a href="${\href (action=>"commit", hash=>$long_rev)}" class="text">$short_rev..</a></td>
4065 <td class="$age_class">$age_str</td>
4067 <td class="linenr"><a id="$lineno" href="#$lineno" class="linenr">$lineno</a></td>
4068 <td class="pre">$data</td>
4071 } # while (my $line = <$fd>)
4072 print "</table>\n\n";
4074 or print "Reading blob failed.\n";
4080 my $head = git_get_head_hash
($project);
4082 git_print_page_nav
('','', $head,undef,$head);
4083 git_print_header_div
('summary', $project);
4085 my @tagslist = git_get_tags_list
();
4087 git_tags_body
(\
@tagslist);
4093 my $head = git_get_head_hash
($project);
4095 git_print_page_nav
('','', $head,undef,$head);
4096 git_print_header_div
('summary', $project);
4098 my @headslist = git_get_heads_list
();
4100 git_heads_body
(\
@headslist, $head);
4105 sub git_blob_plain
{
4108 if (!defined $hash) {
4109 if (defined $file_name) {
4110 my $base = $hash_base || git_get_head_hash
($project);
4111 $hash = git_get_hash_by_path
($base, $file_name, "blob")
4112 or die_error
(undef, "Error lookup file");
4114 die_error
(undef, "No file name defined");
4116 } elsif ($hash =~ m/^[0-9a-fA-F]{40}$/) {
4117 # blobs defined by non-textual hash id's can be cached
4122 open my $fd, "-|", git_cmd
(), "cat-file", "blob", $hash
4123 or die_error
(undef, "Couldn't cat $file_name, $hash");
4125 $type ||= blob_mimetype
($fd, $file_name);
4127 # save as filename, even when no $file_name is given
4128 my $save_as = "$hash";
4129 if (defined $file_name) {
4130 $save_as = $file_name;
4131 } elsif ($type =~ m/^text\//) {
4138 -content_disposition
=> 'inline; filename="' . "$save_as" . '"');
4140 binmode STDOUT
, ':raw';
4142 binmode STDOUT
, ':utf8'; # as set at the beginning of gitweb.cgi
4150 if (!defined $hash) {
4151 if (defined $file_name) {
4152 my $base = $hash_base || git_get_head_hash
($project);
4153 $hash = git_get_hash_by_path
($base, $file_name, "blob")
4154 or die_error
(undef, "Error lookup file");
4156 die_error
(undef, "No file name defined");
4158 } elsif ($hash =~ m/^[0-9a-fA-F]{40}$/) {
4159 # blobs defined by non-textual hash id's can be cached
4163 my ($have_blame) = gitweb_check_feature
('blame');
4164 open my $fd, "-|", git_cmd
(), "cat-file", "blob", $hash
4165 or die_error
(undef, "Couldn't cat $file_name, $hash");
4166 my $mimetype = blob_mimetype
($fd, $file_name);
4167 if ($mimetype !~ m!^(?:text/|image/(?:gif|png|jpeg)$)!) {
4169 return git_blob_plain
($mimetype);
4171 # we can have blame only for text/* mimetype
4172 $have_blame &&= ($mimetype =~ m!^text/!);
4174 git_header_html
(undef, $expires);
4175 my $formats_nav = '';
4176 if (defined $hash_base && (my %co = parse_commit
($hash_base))) {
4177 if (defined $file_name) {
4180 $cgi->a({-href
=> href
(action
=>"blame", hash_base
=>$hash_base,
4181 hash
=>$hash, file_name
=>$file_name)},
4186 $cgi->a({-href
=> href
(action
=>"history", hash_base
=>$hash_base,
4187 hash
=>$hash, file_name
=>$file_name)},
4190 $cgi->a({-href
=> href
(action
=>"blob_plain",
4191 hash
=>$hash, file_name
=>$file_name)},
4194 $cgi->a({-href
=> href
(action
=>"blob",
4195 hash_base
=>"HEAD", file_name
=>$file_name)},
4199 $cgi->a({-href
=> href
(action
=>"blob_plain", hash
=>$hash)}, "raw");
4201 git_print_page_nav
('','', $hash_base,$co{'tree'},$hash_base, $formats_nav);
4202 git_print_header_div
('commit', esc_html
($co{'title'}), $hash_base);
4204 print "<div class=\"page_nav\">\n" .
4205 "<br/><br/></div>\n" .
4206 "<div class=\"title\">$hash</div>\n";
4208 git_print_page_path
($file_name, "blob", $hash_base);
4209 print "<div class=\"page_body\">\n";
4210 if ($mimetype =~ m!^text/!) {
4212 while (my $line = <$fd>) {
4215 $line = untabify
($line);
4216 printf "<div class=\"pre\"><a id=\"l%i\" href=\"#l%i\" class=\"linenr\">%4i</a> %s</div>\n",
4217 $nr, $nr, $nr, esc_html
($line, -nbsp
=>1);
4219 } elsif ($mimetype =~ m!^image/!) {
4220 print qq
!<img type
="$mimetype"!;
4222 print qq
! alt
="$file_name" title
="$file_name"!;
4225 href(action=>"blob_plain
", hash=>$hash,
4226 hash_base=>$hash_base, file_name=>$file_name) .
4230 or print "Reading blob failed.\n";
4236 if (!defined $hash_base) {
4237 $hash_base = "HEAD";
4239 if (!defined $hash) {
4240 if (defined $file_name) {
4241 $hash = git_get_hash_by_path
($hash_base, $file_name, "tree");
4247 open my $fd, "-|", git_cmd
(), "ls-tree", '-z', $hash
4248 or die_error
(undef, "Open git-ls-tree failed");
4249 my @entries = map { chomp; $_ } <$fd>;
4250 close $fd or die_error
(undef, "Reading tree failed");
4253 my $refs = git_get_references
();
4254 my $ref = format_ref_marker
($refs, $hash_base);
4257 my ($have_blame) = gitweb_check_feature
('blame');
4258 if (defined $hash_base && (my %co = parse_commit
($hash_base))) {
4260 if (defined $file_name) {
4262 $cgi->a({-href
=> href
(action
=>"history", hash_base
=>$hash_base,
4263 hash
=>$hash, file_name
=>$file_name)},
4265 $cgi->a({-href
=> href
(action
=>"tree",
4266 hash_base
=>"HEAD", file_name
=>$file_name)},
4269 my $snapshot_links = format_snapshot_links
($hash);
4270 if (defined $snapshot_links) {
4271 # FIXME: Should be available when we have no hash base as well.
4272 push @views_nav, $snapshot_links;
4274 git_print_page_nav
('tree','', $hash_base, undef, undef, join(' | ', @views_nav));
4275 git_print_header_div
('commit', esc_html
($co{'title'}) . $ref, $hash_base);
4278 print "<div class=\"page_nav\">\n";
4279 print "<br/><br/></div>\n";
4280 print "<div class=\"title\">$hash</div>\n";
4282 if (defined $file_name) {
4283 $basedir = $file_name;
4284 if ($basedir ne '' && substr($basedir, -1) ne '/') {
4288 git_print_page_path
($file_name, 'tree', $hash_base);
4289 print "<div class=\"page_body\">\n";
4290 print "<table cellspacing=\"0\">\n";
4292 # '..' (top directory) link if possible
4293 if (defined $hash_base &&
4294 defined $file_name && $file_name =~ m![^/]+$!) {
4296 print "<tr class=\"dark\">\n";
4298 print "<tr class=\"light\">\n";
4302 my $up = $file_name;
4303 $up =~ s!/?[^/]+$!!;
4304 undef $up unless $up;
4305 # based on git_print_tree_entry
4306 print '<td class="mode">' . mode_str
('040000') . "</td>\n";
4307 print '<td class="list">';
4308 print $cgi->a({-href
=> href
(action
=>"tree", hash_base
=>$hash_base,
4312 print "<td class=\"link\"></td>\n";
4316 foreach my $line (@entries) {
4317 my %t = parse_ls_tree_line
($line, -z
=> 1);
4320 print "<tr class=\"dark\">\n";
4322 print "<tr class=\"light\">\n";
4326 git_print_tree_entry
(\
%t, $basedir, $hash_base, $have_blame);
4330 print "</table>\n" .
4336 my @supported_fmts = gitweb_check_feature
('snapshot');
4337 @supported_fmts = filter_snapshot_fmts
(@supported_fmts);
4339 my $format = $cgi->param('sf');
4340 if (!@supported_fmts) {
4341 die_error
('403 Permission denied', "Permission denied");
4343 # default to first supported snapshot format
4344 $format ||= $supported_fmts[0];
4345 if ($format !~ m/^[a-z0-9]+$/) {
4346 die_error
(undef, "Invalid snapshot format parameter");
4347 } elsif (!exists($known_snapshot_formats{$format})) {
4348 die_error
(undef, "Unknown snapshot format");
4349 } elsif (!grep($_ eq $format, @supported_fmts)) {
4350 die_error
(undef, "Unsupported snapshot format");
4353 if (!defined $hash) {
4354 $hash = git_get_head_hash
($project);
4357 my $git_command = git_cmd_str
();
4358 my $name = $project;
4359 $name =~ s
,([^/])/*\
.git
$,$1,;
4360 $name = basename
($name);
4361 my $filename = to_utf8
($name);
4362 $name =~ s/\047/\047\\\047\047/g;
4364 $filename .= "-$hash$known_snapshot_formats{$format}{'suffix'}";
4365 $cmd = "$git_command archive " .
4366 "--format=$known_snapshot_formats{$format}{'format'} " .
4367 "--prefix=\'$name\'/ $hash";
4368 if (exists $known_snapshot_formats{$format}{'compressor'}) {
4369 $cmd .= ' | ' . join ' ', @{$known_snapshot_formats{$format}{'compressor'}};
4373 -type
=> $known_snapshot_formats{$format}{'type'},
4374 -content_disposition
=> 'inline; filename="' . "$filename" . '"',
4375 -status
=> '200 OK');
4377 open my $fd, "-|", $cmd
4378 or die_error
(undef, "Execute git-archive failed");
4379 binmode STDOUT
, ':raw';
4381 binmode STDOUT
, ':utf8'; # as set at the beginning of gitweb.cgi
4386 my $head = git_get_head_hash
($project);
4387 if (!defined $hash) {
4390 if (!defined $page) {
4393 my $refs = git_get_references
();
4395 my @commitlist = parse_commits
($hash, 101, (100 * $page));
4397 my $paging_nav = format_paging_nav
('log', $hash, $head, $page, (100 * ($page+1)));
4400 git_print_page_nav
('log','', $hash,undef,undef, $paging_nav);
4403 my %co = parse_commit
($hash);
4405 git_print_header_div
('summary', $project);
4406 print "<div class=\"page_body\"> Last change $co{'age_string'}.<br/><br/></div>\n";
4408 my $to = ($#commitlist >= 99) ? (99) : ($#commitlist);
4409 for (my $i = 0; $i <= $to; $i++) {
4410 my %co = %{$commitlist[$i]};
4412 my $commit = $co{'id'};
4413 my $ref = format_ref_marker
($refs, $commit);
4414 my %ad = parse_date
($co{'author_epoch'});
4415 git_print_header_div
('commit',
4416 "<span class=\"age\">$co{'age_string'}</span>" .
4417 esc_html
($co{'title'}) . $ref,
4419 print "<div class=\"title_text\">\n" .
4420 "<div class=\"log_link\">\n" .
4421 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$commit)}, "commit") .
4423 $cgi->a({-href
=> href
(action
=>"commitdiff", hash
=>$commit)}, "commitdiff") .
4425 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$commit, hash_base
=>$commit)}, "tree") .
4428 "<i>" . esc_html
($co{'author_name'}) . " [$ad{'rfc2822'}]</i><br/>\n" .
4431 print "<div class=\"log_body\">\n";
4432 git_print_log
($co{'comment'}, -final_empty_line
=> 1);
4435 if ($#commitlist >= 100) {
4436 print "<div class=\"page_nav\">\n";
4437 print $cgi->a({-href
=> href
(action
=>"log", hash
=>$hash, page
=>$page+1),
4438 -accesskey
=> "n", -title
=> "Alt-n"}, "next");
4445 $hash ||= $hash_base || "HEAD";
4446 my %co = parse_commit
($hash);
4448 die_error
(undef, "Unknown commit object");
4450 my %ad = parse_date
($co{'author_epoch'}, $co{'author_tz'});
4451 my %cd = parse_date
($co{'committer_epoch'}, $co{'committer_tz'});
4453 my $parent = $co{'parent'};
4454 my $parents = $co{'parents'}; # listref
4456 # we need to prepare $formats_nav before any parameter munging
4458 if (!defined $parent) {
4460 $formats_nav .= '(initial)';
4461 } elsif (@$parents == 1) {
4462 # single parent commit
4465 $cgi->a({-href
=> href
(action
=>"commit",
4467 esc_html
(substr($parent, 0, 7))) .
4474 $cgi->a({-href
=> href
(action
=>"commit",
4476 esc_html
(substr($_, 0, 7)));
4481 if (!defined $parent) {
4485 open my $fd, "-|", git_cmd
(), "diff-tree", '-r', "--no-commit-id",
4487 (@$parents <= 1 ? $parent : '-c'),
4489 or die_error
(undef, "Open git-diff-tree failed");
4490 @difftree = map { chomp; $_ } <$fd>;
4491 close $fd or die_error
(undef, "Reading git-diff-tree failed");
4493 # non-textual hash id's can be cached
4495 if ($hash =~ m/^[0-9a-fA-F]{40}$/) {
4498 my $refs = git_get_references
();
4499 my $ref = format_ref_marker
($refs, $co{'id'});
4501 git_header_html
(undef, $expires);
4502 git_print_page_nav
('commit', '',
4503 $hash, $co{'tree'}, $hash,
4506 if (defined $co{'parent'}) {
4507 git_print_header_div
('commitdiff', esc_html
($co{'title'}) . $ref, $hash);
4509 git_print_header_div
('tree', esc_html
($co{'title'}) . $ref, $co{'tree'}, $hash);
4511 print "<div class=\"title_text\">\n" .
4512 "<table cellspacing=\"0\">\n";
4513 print "<tr><td>author</td><td>" . esc_html
($co{'author'}) . "</td></tr>\n".
4515 "<td></td><td> $ad{'rfc2822'}";
4516 if ($ad{'hour_local'} < 6) {
4517 printf(" (<span class=\"atnight\">%02d:%02d</span> %s)",
4518 $ad{'hour_local'}, $ad{'minute_local'}, $ad{'tz_local'});
4520 printf(" (%02d:%02d %s)",
4521 $ad{'hour_local'}, $ad{'minute_local'}, $ad{'tz_local'});
4525 print "<tr><td>committer</td><td>" . esc_html
($co{'committer'}) . "</td></tr>\n";
4526 print "<tr><td></td><td> $cd{'rfc2822'}" .
4527 sprintf(" (%02d:%02d %s)", $cd{'hour_local'}, $cd{'minute_local'}, $cd{'tz_local'}) .
4529 print "<tr><td>commit</td><td class=\"sha1\">$co{'id'}</td></tr>\n";
4532 "<td class=\"sha1\">" .
4533 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$co{'tree'}, hash_base
=>$hash),
4534 class => "list"}, $co{'tree'}) .
4536 "<td class=\"link\">" .
4537 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$co{'tree'}, hash_base
=>$hash)},
4539 my $snapshot_links = format_snapshot_links
($hash);
4540 if (defined $snapshot_links) {
4541 print " | " . $snapshot_links;
4546 foreach my $par (@$parents) {
4549 "<td class=\"sha1\">" .
4550 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$par),
4551 class => "list"}, $par) .
4553 "<td class=\"link\">" .
4554 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$par)}, "commit") .
4556 $cgi->a({-href
=> href
(action
=>"commitdiff", hash
=>$hash, hash_parent
=>$par)}, "diff") .
4563 print "<div class=\"page_body\">\n";
4564 git_print_log
($co{'comment'});
4567 git_difftree_body
(\
@difftree, $hash, @$parents);
4573 # object is defined by:
4574 # - hash or hash_base alone
4575 # - hash_base and file_name
4578 # - hash or hash_base alone
4579 if ($hash || ($hash_base && !defined $file_name)) {
4580 my $object_id = $hash || $hash_base;
4582 my $git_command = git_cmd_str
();
4583 open my $fd, "-|", "$git_command cat-file -t $object_id 2>/dev/null"
4584 or die_error
('404 Not Found', "Object does not exist");
4588 or die_error
('404 Not Found', "Object does not exist");
4590 # - hash_base and file_name
4591 } elsif ($hash_base && defined $file_name) {
4592 $file_name =~ s
,/+$,,;
4594 system(git_cmd
(), "cat-file", '-e', $hash_base) == 0
4595 or die_error
('404 Not Found', "Base object does not exist");
4597 # here errors should not hapen
4598 open my $fd, "-|", git_cmd
(), "ls-tree", $hash_base, "--", $file_name
4599 or die_error
(undef, "Open git-ls-tree failed");
4603 #'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'
4604 unless ($line && $line =~ m/^([0-9]+) (.+) ([0-9a-fA-F]{40})\t/) {
4605 die_error
('404 Not Found', "File or directory for given base does not exist");
4610 die_error
('404 Not Found', "Not enough information to find object");
4613 print $cgi->redirect(-uri
=> href
(action
=>$type, -full
=>1,
4614 hash
=>$hash, hash_base
=>$hash_base,
4615 file_name
=>$file_name),
4616 -status
=> '302 Found');
4620 my $format = shift || 'html';
4627 # preparing $fd and %diffinfo for git_patchset_body
4629 if (defined $hash_base && defined $hash_parent_base) {
4630 if (defined $file_name) {
4632 open $fd, "-|", git_cmd
(), "diff-tree", '-r', @diff_opts,
4633 $hash_parent_base, $hash_base,
4634 "--", (defined $file_parent ? $file_parent : ()), $file_name
4635 or die_error
(undef, "Open git-diff-tree failed");
4636 @difftree = map { chomp; $_ } <$fd>;
4638 or die_error
(undef, "Reading git-diff-tree failed");
4640 or die_error
('404 Not Found', "Blob diff not found");
4642 } elsif (defined $hash &&
4643 $hash =~ /[0-9a-fA-F]{40}/) {
4644 # try to find filename from $hash
4646 # read filtered raw output
4647 open $fd, "-|", git_cmd
(), "diff-tree", '-r', @diff_opts,
4648 $hash_parent_base, $hash_base, "--"
4649 or die_error
(undef, "Open git-diff-tree failed");
4651 # ':100644 100644 03b21826... 3b93d5e7... M ls-files.c'
4653 grep { /^:[0-7]{6} [0-7]{6} [0-9a-fA-F]{40} $hash/ }
4654 map { chomp; $_ } <$fd>;
4656 or die_error
(undef, "Reading git-diff-tree failed");
4658 or die_error
('404 Not Found', "Blob diff not found");
4661 die_error
('404 Not Found', "Missing one of the blob diff parameters");
4664 if (@difftree > 1) {
4665 die_error
('404 Not Found', "Ambiguous blob diff specification");
4668 %diffinfo = parse_difftree_raw_line
($difftree[0]);
4669 $file_parent ||= $diffinfo{'from_file'} || $file_name || $diffinfo{'file'};
4670 $file_name ||= $diffinfo{'to_file'} || $diffinfo{'file'};
4672 $hash_parent ||= $diffinfo{'from_id'};
4673 $hash ||= $diffinfo{'to_id'};
4675 # non-textual hash id's can be cached
4676 if ($hash_base =~ m/^[0-9a-fA-F]{40}$/ &&
4677 $hash_parent_base =~ m/^[0-9a-fA-F]{40}$/) {
4682 open $fd, "-|", git_cmd
(), "diff-tree", '-r', @diff_opts,
4683 '-p', ($format eq 'html' ? "--full-index" : ()),
4684 $hash_parent_base, $hash_base,
4685 "--", (defined $file_parent ? $file_parent : ()), $file_name
4686 or die_error
(undef, "Open git-diff-tree failed");
4689 # old/legacy style URI
4690 if (!%diffinfo && # if new style URI failed
4691 defined $hash && defined $hash_parent) {
4692 # fake git-diff-tree raw output
4693 $diffinfo{'from_mode'} = $diffinfo{'to_mode'} = "blob";
4694 $diffinfo{'from_id'} = $hash_parent;
4695 $diffinfo{'to_id'} = $hash;
4696 if (defined $file_name) {
4697 if (defined $file_parent) {
4698 $diffinfo{'status'} = '2';
4699 $diffinfo{'from_file'} = $file_parent;
4700 $diffinfo{'to_file'} = $file_name;
4701 } else { # assume not renamed
4702 $diffinfo{'status'} = '1';
4703 $diffinfo{'from_file'} = $file_name;
4704 $diffinfo{'to_file'} = $file_name;
4706 } else { # no filename given
4707 $diffinfo{'status'} = '2';
4708 $diffinfo{'from_file'} = $hash_parent;
4709 $diffinfo{'to_file'} = $hash;
4712 # non-textual hash id's can be cached
4713 if ($hash =~ m/^[0-9a-fA-F]{40}$/ &&
4714 $hash_parent =~ m/^[0-9a-fA-F]{40}$/) {
4719 open $fd, "-|", git_cmd
(), "diff", @diff_opts,
4720 '-p', ($format eq 'html' ? "--full-index" : ()),
4721 $hash_parent, $hash, "--"
4722 or die_error
(undef, "Open git-diff failed");
4724 die_error
('404 Not Found', "Missing one of the blob diff parameters")
4729 if ($format eq 'html') {
4731 $cgi->a({-href
=> href
(action
=>"blobdiff_plain",
4732 hash
=>$hash, hash_parent
=>$hash_parent,
4733 hash_base
=>$hash_base, hash_parent_base
=>$hash_parent_base,
4734 file_name
=>$file_name, file_parent
=>$file_parent)},
4736 git_header_html
(undef, $expires);
4737 if (defined $hash_base && (my %co = parse_commit
($hash_base))) {
4738 git_print_page_nav
('','', $hash_base,$co{'tree'},$hash_base, $formats_nav);
4739 git_print_header_div
('commit', esc_html
($co{'title'}), $hash_base);
4741 print "<div class=\"page_nav\"><br/>$formats_nav<br/></div>\n";
4742 print "<div class=\"title\">$hash vs $hash_parent</div>\n";
4744 if (defined $file_name) {
4745 git_print_page_path
($file_name, "blob", $hash_base);
4747 print "<div class=\"page_path\"></div>\n";
4750 } elsif ($format eq 'plain') {
4752 -type
=> 'text/plain',
4753 -charset
=> 'utf-8',
4754 -expires
=> $expires,
4755 -content_disposition
=> 'inline; filename="' . "$file_name" . '.patch"');
4757 print "X-Git-Url: " . $cgi->self_url() . "\n\n";
4760 die_error
(undef, "Unknown blobdiff format");
4764 if ($format eq 'html') {
4765 print "<div class=\"page_body\">\n";
4767 git_patchset_body
($fd, [ \
%diffinfo ], $hash_base, $hash_parent_base);
4770 print "</div>\n"; # class="page_body"
4774 while (my $line = <$fd>) {
4775 $line =~ s!a/($hash|$hash_parent)!'a/'.esc_path($diffinfo{'from_file'})!eg;
4776 $line =~ s!b/($hash|$hash_parent)!'b/'.esc_path($diffinfo{'to_file'})!eg;
4780 last if $line =~ m!^\+\+\+!;
4788 sub git_blobdiff_plain
{
4789 git_blobdiff
('plain');
4792 sub git_commitdiff
{
4793 my $format = shift || 'html';
4794 $hash ||= $hash_base || "HEAD";
4795 my %co = parse_commit
($hash);
4797 die_error
(undef, "Unknown commit object");
4800 # choose format for commitdiff for merge
4801 if (! defined $hash_parent && @{$co{'parents'}} > 1) {
4802 $hash_parent = '--cc';
4804 # we need to prepare $formats_nav before almost any parameter munging
4806 if ($format eq 'html') {
4808 $cgi->a({-href
=> href
(action
=>"commitdiff_plain",
4809 hash
=>$hash, hash_parent
=>$hash_parent)},
4812 if (defined $hash_parent &&
4813 $hash_parent ne '-c' && $hash_parent ne '--cc') {
4814 # commitdiff with two commits given
4815 my $hash_parent_short = $hash_parent;
4816 if ($hash_parent =~ m/^[0-9a-fA-F]{40}$/) {
4817 $hash_parent_short = substr($hash_parent, 0, 7);
4821 for (my $i = 0; $i < @{$co{'parents'}}; $i++) {
4822 if ($co{'parents'}[$i] eq $hash_parent) {
4823 $formats_nav .= ' parent ' . ($i+1);
4827 $formats_nav .= ': ' .
4828 $cgi->a({-href
=> href
(action
=>"commitdiff",
4829 hash
=>$hash_parent)},
4830 esc_html
($hash_parent_short)) .
4832 } elsif (!$co{'parent'}) {
4834 $formats_nav .= ' (initial)';
4835 } elsif (scalar @{$co{'parents'}} == 1) {
4836 # single parent commit
4839 $cgi->a({-href
=> href
(action
=>"commitdiff",
4840 hash
=>$co{'parent'})},
4841 esc_html
(substr($co{'parent'}, 0, 7))) .
4845 if ($hash_parent eq '--cc') {
4846 $formats_nav .= ' | ' .
4847 $cgi->a({-href
=> href
(action
=>"commitdiff",
4848 hash
=>$hash, hash_parent
=>'-c')},
4850 } else { # $hash_parent eq '-c'
4851 $formats_nav .= ' | ' .
4852 $cgi->a({-href
=> href
(action
=>"commitdiff",
4853 hash
=>$hash, hash_parent
=>'--cc')},
4859 $cgi->a({-href
=> href
(action
=>"commitdiff",
4861 esc_html
(substr($_, 0, 7)));
4862 } @{$co{'parents'}} ) .
4867 my $hash_parent_param = $hash_parent;
4868 if (!defined $hash_parent_param) {
4869 # --cc for multiple parents, --root for parentless
4870 $hash_parent_param =
4871 @{$co{'parents'}} > 1 ? '--cc' : $co{'parent'} || '--root';
4877 if ($format eq 'html') {
4878 open $fd, "-|", git_cmd
(), "diff-tree", '-r', @diff_opts,
4879 "--no-commit-id", "--patch-with-raw", "--full-index",
4880 $hash_parent_param, $hash, "--"
4881 or die_error
(undef, "Open git-diff-tree failed");
4883 while (my $line = <$fd>) {
4885 # empty line ends raw part of diff-tree output
4887 push @difftree, scalar parse_difftree_raw_line
($line);
4890 } elsif ($format eq 'plain') {
4891 open $fd, "-|", git_cmd
(), "diff-tree", '-r', @diff_opts,
4892 '-p', $hash_parent_param, $hash, "--"
4893 or die_error
(undef, "Open git-diff-tree failed");
4896 die_error
(undef, "Unknown commitdiff format");
4899 # non-textual hash id's can be cached
4901 if ($hash =~ m/^[0-9a-fA-F]{40}$/) {
4905 # write commit message
4906 if ($format eq 'html') {
4907 my $refs = git_get_references
();
4908 my $ref = format_ref_marker
($refs, $co{'id'});
4910 git_header_html
(undef, $expires);
4911 git_print_page_nav
('commitdiff','', $hash,$co{'tree'},$hash, $formats_nav);
4912 git_print_header_div
('commit', esc_html
($co{'title'}) . $ref, $hash);
4913 git_print_authorship
(\
%co);
4914 print "<div class=\"page_body\">\n";
4915 if (@{$co{'comment'}} > 1) {
4916 print "<div class=\"log\">\n";
4917 git_print_log
($co{'comment'}, -final_empty_line
=> 1, -remove_title
=> 1);
4918 print "</div>\n"; # class="log"
4921 } elsif ($format eq 'plain') {
4922 my $refs = git_get_references
("tags");
4923 my $tagname = git_get_rev_name_tags
($hash);
4924 my $filename = basename
($project) . "-$hash.patch";
4927 -type
=> 'text/plain',
4928 -charset
=> 'utf-8',
4929 -expires
=> $expires,
4930 -content_disposition
=> 'inline; filename="' . "$filename" . '"');
4931 my %ad = parse_date
($co{'author_epoch'}, $co{'author_tz'});
4934 Date: $ad{'rfc2822'} ($ad{'tz_local'})
4935 Subject: $co{'title'}
4937 print "X-Git-Tag: $tagname\n" if $tagname;
4938 print "X-Git-Url: " . $cgi->self_url() . "\n\n";
4940 foreach my $line (@{$co{'comment'}}) {
4947 if ($format eq 'html') {
4948 my $use_parents = !defined $hash_parent ||
4949 $hash_parent eq '-c' || $hash_parent eq '--cc';
4950 git_difftree_body
(\
@difftree, $hash,
4951 $use_parents ? @{$co{'parents'}} : $hash_parent);
4954 git_patchset_body
($fd, \
@difftree, $hash,
4955 $use_parents ? @{$co{'parents'}} : $hash_parent);
4957 print "</div>\n"; # class="page_body"
4960 } elsif ($format eq 'plain') {
4964 or print "Reading git-diff-tree failed\n";
4968 sub git_commitdiff_plain
{
4969 git_commitdiff
('plain');
4973 if (!defined $hash_base) {
4974 $hash_base = git_get_head_hash
($project);
4976 if (!defined $page) {
4980 my %co = parse_commit
($hash_base);
4982 die_error
(undef, "Unknown commit object");
4985 my $refs = git_get_references
();
4986 my $limit = sprintf("--max-count=%i", (100 * ($page+1)));
4988 if (!defined $hash && defined $file_name) {
4989 $hash = git_get_hash_by_path
($hash_base, $file_name);
4991 if (defined $hash) {
4992 $ftype = git_get_type
($hash);
4995 my @commitlist = parse_commits
($hash_base, 101, (100 * $page), "--full-history", $file_name);
4997 my $paging_nav = '';
5000 $cgi->a({-href
=> href
(action
=>"history", hash
=>$hash, hash_base
=>$hash_base,
5001 file_name
=>$file_name)},
5003 $paging_nav .= " ⋅ " .
5004 $cgi->a({-href
=> href
(action
=>"history", hash
=>$hash, hash_base
=>$hash_base,
5005 file_name
=>$file_name, page
=>$page-1),
5006 -accesskey
=> "p", -title
=> "Alt-p"}, "prev");
5008 $paging_nav .= "first";
5009 $paging_nav .= " ⋅ prev";
5011 if ($#commitlist >= 100) {
5012 $paging_nav .= " ⋅ " .
5013 $cgi->a({-href
=> href
(action
=>"history", hash
=>$hash, hash_base
=>$hash_base,
5014 file_name
=>$file_name, page
=>$page+1),
5015 -accesskey
=> "n", -title
=> "Alt-n"}, "next");
5017 $paging_nav .= " ⋅ next";
5020 if ($#commitlist >= 100) {
5022 $cgi->a({-href
=> href
(action
=>"history", hash
=>$hash, hash_base
=>$hash_base,
5023 file_name
=>$file_name, page
=>$page+1),
5024 -accesskey
=> "n", -title
=> "Alt-n"}, "next");
5028 git_print_page_nav
('history','', $hash_base,$co{'tree'},$hash_base, $paging_nav);
5029 git_print_header_div
('commit', esc_html
($co{'title'}), $hash_base);
5030 git_print_page_path
($file_name, $ftype, $hash_base);
5032 git_history_body
(\
@commitlist, 0, 99,
5033 $refs, $hash_base, $ftype, $next_link);
5039 my ($have_search) = gitweb_check_feature
('search');
5040 if (!$have_search) {
5041 die_error
('403 Permission denied', "Permission denied");
5043 if (!defined $searchtext) {
5044 die_error
(undef, "Text field empty");
5046 if (!defined $hash) {
5047 $hash = git_get_head_hash
($project);
5049 my %co = parse_commit
($hash);
5051 die_error
(undef, "Unknown commit object");
5053 if (!defined $page) {
5057 $searchtype ||= 'commit';
5058 if ($searchtype eq 'pickaxe') {
5059 # pickaxe may take all resources of your box and run for several minutes
5060 # with every query - so decide by yourself how public you make this feature
5061 my ($have_pickaxe) = gitweb_check_feature
('pickaxe');
5062 if (!$have_pickaxe) {
5063 die_error
('403 Permission denied', "Permission denied");
5066 if ($searchtype eq 'grep') {
5067 my ($have_grep) = gitweb_check_feature
('grep');
5069 die_error
('403 Permission denied', "Permission denied");
5075 if ($searchtype eq 'commit' or $searchtype eq 'author' or $searchtype eq 'committer') {
5077 if ($searchtype eq 'commit') {
5078 $greptype = "--grep=";
5079 } elsif ($searchtype eq 'author') {
5080 $greptype = "--author=";
5081 } elsif ($searchtype eq 'committer') {
5082 $greptype = "--committer=";
5084 $greptype .= $search_regexp;
5085 my @commitlist = parse_commits
($hash, 101, (100 * $page), $greptype);
5087 my $paging_nav = '';
5090 $cgi->a({-href
=> href
(action
=>"search", hash
=>$hash,
5091 searchtext
=>$searchtext, searchtype
=>$searchtype)},
5093 $paging_nav .= " ⋅ " .
5094 $cgi->a({-href
=> href
(action
=>"search", hash
=>$hash,
5095 searchtext
=>$searchtext, searchtype
=>$searchtype,
5097 -accesskey
=> "p", -title
=> "Alt-p"}, "prev");
5099 $paging_nav .= "first";
5100 $paging_nav .= " ⋅ prev";
5102 if ($#commitlist >= 100) {
5103 $paging_nav .= " ⋅ " .
5104 $cgi->a({-href
=> href
(action
=>"search", hash
=>$hash,
5105 searchtext
=>$searchtext, searchtype
=>$searchtype,
5107 -accesskey
=> "n", -title
=> "Alt-n"}, "next");
5109 $paging_nav .= " ⋅ next";
5112 if ($#commitlist >= 100) {
5114 $cgi->a({-href
=> href
(action
=>"search", hash
=>$hash,
5115 searchtext
=>$searchtext, searchtype
=>$searchtype,
5117 -accesskey
=> "n", -title
=> "Alt-n"}, "next");
5120 git_print_page_nav
('','', $hash,$co{'tree'},$hash, $paging_nav);
5121 git_print_header_div
('commit', esc_html
($co{'title'}), $hash);
5122 git_search_grep_body
(\
@commitlist, 0, 99, $next_link);
5125 if ($searchtype eq 'pickaxe') {
5126 git_print_page_nav
('','', $hash,$co{'tree'},$hash);
5127 git_print_header_div
('commit', esc_html
($co{'title'}), $hash);
5129 print "<table cellspacing=\"0\">\n";
5132 my $git_command = git_cmd_str
();
5133 my $searchqtext = $searchtext;
5134 $searchqtext =~ s/'/'\\''/;
5135 open my $fd, "-|", "$git_command rev-list $hash | " .
5136 "$git_command diff-tree -r --stdin -S\'$searchqtext\'";
5139 while (my $line = <$fd>) {
5140 if (%co && $line =~ m/^:([0-7]{6}) ([0-7]{6}) ([0-9a-fA-F]{40}) ([0-9a-fA-F]{40}) (.)\t(.*)$/) {
5143 $set{'from_id'} = $3;
5145 $set{'id'} = $set{'to_id'};
5146 if ($set{'id'} =~ m/0{40}/) {
5147 $set{'id'} = $set{'from_id'};
5149 if ($set{'id'} =~ m/0{40}/) {
5153 } elsif ($line =~ m/^([0-9a-fA-F]{40})$/){
5156 print "<tr class=\"dark\">\n";
5158 print "<tr class=\"light\">\n";
5161 print "<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n" .
5162 "<td><i>" . esc_html
(chop_str
($co{'author_name'}, 15, 5)) . "</i></td>\n" .
5164 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$co{'id'}),
5165 -class => "list subject"},
5166 esc_html
(chop_str
($co{'title'}, 50)) . "<br/>");
5167 while (my $setref = shift @files) {
5169 print $cgi->a({-href
=> href
(action
=>"blob", hash_base
=>$co{'id'},
5170 hash
=>$set{'id'}, file_name
=>$set{'file'}),
5172 "<span class=\"match\">" . esc_path
($set{'file'}) . "</span>") .
5176 "<td class=\"link\">" .
5177 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$co{'id'})}, "commit") .
5179 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$co{'tree'}, hash_base
=>$co{'id'})}, "tree");
5183 %co = parse_commit
($1);
5191 if ($searchtype eq 'grep') {
5192 git_print_page_nav
('','', $hash,$co{'tree'},$hash);
5193 git_print_header_div
('commit', esc_html
($co{'title'}), $hash);
5195 print "<table cellspacing=\"0\">\n";
5199 open my $fd, "-|", git_cmd
(), 'grep', '-n', '-i', '-E', $searchtext, $co{'tree'};
5201 while (my $line = <$fd>) {
5203 my ($file, $lno, $ltext, $binary);
5204 last if ($matches++ > 1000);
5205 if ($line =~ /^Binary file (.+) matches$/) {
5209 (undef, $file, $lno, $ltext) = split(/:/, $line, 4);
5211 if ($file ne $lastfile) {
5212 $lastfile and print "</td></tr>\n";
5214 print "<tr class=\"dark\">\n";
5216 print "<tr class=\"light\">\n";
5218 print "<td class=\"list\">".
5219 $cgi->a({-href
=> href
(action
=>"blob", hash
=>$co{'hash'},
5220 file_name
=>"$file"),
5221 -class => "list"}, esc_path
($file));
5222 print "</td><td>\n";
5226 print "<div class=\"binary\">Binary file</div>\n";
5228 $ltext = untabify
($ltext);
5229 if ($ltext =~ m/^(.*)($searchtext)(.*)$/i) {
5230 $ltext = esc_html
($1, -nbsp
=>1);
5231 $ltext .= '<span class="match">';
5232 $ltext .= esc_html
($2, -nbsp
=>1);
5233 $ltext .= '</span>';
5234 $ltext .= esc_html
($3, -nbsp
=>1);
5236 $ltext = esc_html
($ltext, -nbsp
=>1);
5238 print "<div class=\"pre\">" .
5239 $cgi->a({-href
=> href
(action
=>"blob", hash
=>$co{'hash'},
5240 file_name
=>"$file").'#l'.$lno,
5241 -class => "linenr"}, sprintf('%4i', $lno))
5242 . ' ' . $ltext . "</div>\n";
5246 print "</td></tr>\n";
5247 if ($matches > 1000) {
5248 print "<div class=\"diff nodifferences\">Too many matches, listing trimmed</div>\n";
5251 print "<div class=\"diff nodifferences\">No matches found</div>\n";
5260 sub git_search_help
{
5262 git_print_page_nav
('','', $hash,$hash,$hash);
5265 <dt><b>commit</b></dt>
5266 <dd>The commit messages and authorship information will be scanned for the given string.</dd>
5268 my ($have_grep) = gitweb_check_feature
('grep');
5271 <dt><b>grep</b></dt>
5272 <dd>All files in the currently selected tree (HEAD unless you are explicitly browsing
5273 a different one) are searched for the given
5274 <a href="http://en.wikipedia.org/wiki/Regular_expression">regular expression</a>
5275 (POSIX extended) and the matches are listed. On large
5276 trees, this search can take a while and put some strain on the server, so please use it with
5277 some consideration.</dd>
5281 <dt><b>author</b></dt>
5282 <dd>Name and e-mail of the change author and date of birth of the patch will be scanned for the given string.</dd>
5283 <dt><b>committer</b></dt>
5284 <dd>Name and e-mail of the committer and date of commit will be scanned for the given string.</dd>
5286 my ($have_pickaxe) = gitweb_check_feature
('pickaxe');
5287 if ($have_pickaxe) {
5289 <dt><b>pickaxe</b></dt>
5290 <dd>All commits that caused the string to appear or disappear from any file (changes that
5291 added, removed or "modified" the string) will be listed. This search can take a while and
5292 takes a lot of strain on the server, so please use it wisely.</dd>
5300 my $head = git_get_head_hash
($project);
5301 if (!defined $hash) {
5304 if (!defined $page) {
5307 my $refs = git_get_references
();
5309 my @commitlist = parse_commits
($hash, 101, (100 * $page));
5311 my $paging_nav = format_paging_nav
('shortlog', $hash, $head, $page, (100 * ($page+1)));
5313 if ($#commitlist >= 100) {
5315 $cgi->a({-href
=> href
(action
=>"shortlog", hash
=>$hash, page
=>$page+1),
5316 -accesskey
=> "n", -title
=> "Alt-n"}, "next");
5320 git_print_page_nav
('shortlog','', $hash,$hash,$hash, $paging_nav);
5321 git_print_header_div
('summary', $project);
5323 git_shortlog_body
(\
@commitlist, 0, 99, $refs, $next_link);
5328 ## ......................................................................
5329 ## feeds (RSS, Atom; OPML)
5332 my $format = shift || 'atom';
5333 my ($have_blame) = gitweb_check_feature
('blame');
5335 # Atom: http://www.atomenabled.org/developers/syndication/
5336 # RSS: http://www.notestips.com/80256B3A007F2692/1/NAMO5P9UPQ
5337 if ($format ne 'rss' && $format ne 'atom') {
5338 die_error
(undef, "Unknown web feed format");
5341 # log/feed of current (HEAD) branch, log of given branch, history of file/directory
5342 my $head = $hash || 'HEAD';
5343 my @commitlist = parse_commits
($head, 150, 0, undef, $file_name);
5347 my $content_type = "application/$format+xml";
5348 if (defined $cgi->http('HTTP_ACCEPT') &&
5349 $cgi->Accept('text/xml') > $cgi->Accept($content_type)) {
5350 # browser (feed reader) prefers text/xml
5351 $content_type = 'text/xml';
5353 if (defined($commitlist[0])) {
5354 %latest_commit = %{$commitlist[0]};
5355 %latest_date = parse_date
($latest_commit{'author_epoch'});
5357 -type
=> $content_type,
5358 -charset
=> 'utf-8',
5359 -last_modified
=> $latest_date{'rfc2822'});
5362 -type
=> $content_type,
5363 -charset
=> 'utf-8');
5366 # Optimization: skip generating the body if client asks only
5367 # for Last-Modified date.
5368 return if ($cgi->request_method() eq 'HEAD');
5371 my $title = "$site_name - $project/$action";
5372 my $feed_type = 'log';
5373 if (defined $hash) {
5374 $title .= " - '$hash'";
5375 $feed_type = 'branch log';
5376 if (defined $file_name) {
5377 $title .= " :: $file_name";
5378 $feed_type = 'history';
5380 } elsif (defined $file_name) {
5381 $title .= " - $file_name";
5382 $feed_type = 'history';
5384 $title .= " $feed_type";
5385 my $descr = git_get_project_description
($project);
5386 if (defined $descr) {
5387 $descr = esc_html
($descr);
5389 $descr = "$project " .
5390 ($format eq 'rss' ? 'RSS' : 'Atom') .
5393 my $owner = git_get_project_owner
($project);
5394 $owner = esc_html
($owner);
5398 if (defined $file_name) {
5399 $alt_url = href
(-full
=>1, action
=>"history", hash
=>$hash, file_name
=>$file_name);
5400 } elsif (defined $hash) {
5401 $alt_url = href
(-full
=>1, action
=>"log", hash
=>$hash);
5403 $alt_url = href
(-full
=>1, action
=>"summary");
5405 print qq
!<?xml version
="1.0" encoding
="utf-8"?>\n!;
5406 if ($format eq 'rss') {
5408 <rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/">
5411 print "<title>$title</title>\n" .
5412 "<link>$alt_url</link>\n" .
5413 "<description>$descr</description>\n" .
5414 "<language>en</language>\n";
5415 } elsif ($format eq 'atom') {
5417 <feed xmlns="http://www.w3.org/2005/Atom">
5419 print "<title>$title</title>\n" .
5420 "<subtitle>$descr</subtitle>\n" .
5421 '<link rel="alternate" type="text/html" href="' .
5422 $alt_url . '" />' . "\n" .
5423 '<link rel="self" type="' . $content_type . '" href="' .
5424 $cgi->self_url() . '" />' . "\n" .
5425 "<id>" . href
(-full
=>1) . "</id>\n" .
5426 # use project owner for feed author
5427 "<author><name>$owner</name></author>\n";
5428 if (defined $favicon) {
5429 print "<icon>" . esc_url
($favicon) . "</icon>\n";
5431 if (defined $logo_url) {
5432 # not twice as wide as tall: 72 x 27 pixels
5433 print "<logo>" . esc_url
($logo) . "</logo>\n";
5435 if (! %latest_date) {
5436 # dummy date to keep the feed valid until commits trickle in:
5437 print "<updated>1970-01-01T00:00:00Z</updated>\n";
5439 print "<updated>$latest_date{'iso-8601'}</updated>\n";
5444 for (my $i = 0; $i <= $#commitlist; $i++) {
5445 my %co = %{$commitlist[$i]};
5446 my $commit = $co{'id'};
5447 # we read 150, we always show 30 and the ones more recent than 48 hours
5448 if (($i >= 20) && ((time - $co{'author_epoch'}) > 48*60*60)) {
5451 my %cd = parse_date
($co{'author_epoch'});
5453 # get list of changed files
5454 open my $fd, "-|", git_cmd
(), "diff-tree", '-r', @diff_opts,
5455 $co{'parent'} || "--root",
5456 $co{'id'}, "--", (defined $file_name ? $file_name : ())
5458 my @difftree = map { chomp; $_ } <$fd>;
5462 # print element (entry, item)
5463 my $co_url = href
(-full
=>1, action
=>"commit", hash
=>$commit);
5464 if ($format eq 'rss') {
5466 "<title>" . esc_html
($co{'title'}) . "</title>\n" .
5467 "<author>" . esc_html
($co{'author'}) . "</author>\n" .
5468 "<pubDate>$cd{'rfc2822'}</pubDate>\n" .
5469 "<guid isPermaLink=\"true\">$co_url</guid>\n" .
5470 "<link>$co_url</link>\n" .
5471 "<description>" . esc_html
($co{'title'}) . "</description>\n" .
5472 "<content:encoded>" .
5474 } elsif ($format eq 'atom') {
5476 "<title type=\"html\">" . esc_html
($co{'title'}) . "</title>\n" .
5477 "<updated>$cd{'iso-8601'}</updated>\n" .
5479 " <name>" . esc_html
($co{'author_name'}) . "</name>\n";
5480 if ($co{'author_email'}) {
5481 print " <email>" . esc_html
($co{'author_email'}) . "</email>\n";
5483 print "</author>\n" .
5484 # use committer for contributor
5486 " <name>" . esc_html
($co{'committer_name'}) . "</name>\n";
5487 if ($co{'committer_email'}) {
5488 print " <email>" . esc_html
($co{'committer_email'}) . "</email>\n";
5490 print "</contributor>\n" .
5491 "<published>$cd{'iso-8601'}</published>\n" .
5492 "<link rel=\"alternate\" type=\"text/html\" href=\"$co_url\" />\n" .
5493 "<id>$co_url</id>\n" .
5494 "<content type=\"xhtml\" xml:base=\"" . esc_url
($my_url) . "\">\n" .
5495 "<div xmlns=\"http://www.w3.org/1999/xhtml\">\n";
5497 my $comment = $co{'comment'};
5499 foreach my $line (@$comment) {
5500 $line = esc_html
($line);
5503 print "</pre><ul>\n";
5504 foreach my $difftree_line (@difftree) {
5505 my %difftree = parse_difftree_raw_line
($difftree_line);
5506 next if !$difftree{'from_id'};
5508 my $file = $difftree{'file'} || $difftree{'to_file'};
5512 $cgi->a({-href
=> href
(-full
=>1, action
=>"blobdiff",
5513 hash
=>$difftree{'to_id'}, hash_parent
=>$difftree{'from_id'},
5514 hash_base
=>$co{'id'}, hash_parent_base
=>$co{'parent'},
5515 file_name
=>$file, file_parent
=>$difftree{'from_file'}),
5516 -title
=> "diff"}, 'D');
5518 print $cgi->a({-href
=> href
(-full
=>1, action
=>"blame",
5519 file_name
=>$file, hash_base
=>$commit),
5520 -title
=> "blame"}, 'B');
5522 # if this is not a feed of a file history
5523 if (!defined $file_name || $file_name ne $file) {
5524 print $cgi->a({-href
=> href
(-full
=>1, action
=>"history",
5525 file_name
=>$file, hash
=>$commit),
5526 -title
=> "history"}, 'H');
5528 $file = esc_path
($file);
5532 if ($format eq 'rss') {
5533 print "</ul>]]>\n" .
5534 "</content:encoded>\n" .
5536 } elsif ($format eq 'atom') {
5537 print "</ul>\n</div>\n" .
5544 if ($format eq 'rss') {
5545 print "</channel>\n</rss>\n";
5546 } elsif ($format eq 'atom') {
5560 my @list = git_get_projects_list
();
5562 print $cgi->header(-type
=> 'text/xml', -charset
=> 'utf-8');
5564 <?xml version="1.0" encoding="utf-8"?>
5565 <opml version="1.0">
5567 <title>$site_name OPML Export</title>
5570 <outline text="git RSS feeds">
5573 foreach my $pr (@list) {
5575 my $head = git_get_head_hash
($proj{'path'});
5576 if (!defined $head) {
5579 $git_dir = "$projectroot/$proj{'path'}";
5580 my %co = parse_commit
($head);
5585 my $path = esc_html
(chop_str
($proj{'path'}, 25, 5));
5586 my $rss = "$my_url?p=$proj{'path'};a=rss";
5587 my $html = "$my_url?p=$proj{'path'};a=summary";
5588 print "<outline type=\"rss\" text=\"$path\" title=\"$path\" xmlUrl=\"$rss\" htmlUrl=\"$html\"/>\n";