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
13 # handle ACL in file access tests
14 use filetest
'access';
15 use CGI
qw(:standard :escapeHTML -nosticky);
16 use CGI
::Util
qw(unescape);
17 use CGI
::Carp
qw(fatalsToBrowser set_message);
21 use File
::Basename
qw(basename);
22 use Time
::HiRes
qw(gettimeofday tv_interval);
23 use Digest
::MD5
qw(md5_hex);
25 binmode STDOUT
, ':utf8';
27 if (!defined($CGI::VERSION
) || $CGI::VERSION
< 4.08) {
28 eval 'sub CGI::multi_param { CGI::param(@_) }'
31 our $t0 = [ gettimeofday
() ];
32 our $number_of_git_cmds = 0;
35 CGI-
>compile() if $ENV{'MOD_PERL'};
38 our $version = "x.x.x";
40 our ($my_url, $my_uri, $base_url, $path_info, $home_link);
44 our $my_url = $cgi->url();
45 our $my_uri = $cgi->url(-absolute
=> 1);
47 # Base URL for relative URLs in gitweb ($logo, $favicon, ...),
48 # needed and used only for URLs with nonempty PATH_INFO
49 our $base_url = $my_url;
51 # When the script is used as DirectoryIndex, the URL does not contain the name
52 # of the script file itself, and $cgi->url() fails to strip PATH_INFO, so we
53 # have to do it ourselves. We make $path_info global because it's also used
56 # Another issue with the script being the DirectoryIndex is that the resulting
57 # $my_url data is not the full script URL: this is good, because we want
58 # generated links to keep implying the script name if it wasn't explicitly
59 # indicated in the URL we're handling, but it means that $my_url cannot be used
61 # Therefore, if we needed to strip PATH_INFO, then we know that we have
62 # to build the base URL ourselves:
63 our $path_info = decode_utf8
($ENV{"PATH_INFO"});
65 # $path_info has already been URL-decoded by the web server, but
66 # $my_url and $my_uri have not. URL-decode them so we can properly
68 $my_url = unescape
($my_url);
69 $my_uri = unescape
($my_uri);
70 if ($my_url =~ s
,\Q
$path_info\E
$,, &&
71 $my_uri =~ s
,\Q
$path_info\E
$,, &&
72 defined $ENV{'SCRIPT_NAME'}) {
73 $base_url = $cgi->url(-base
=> 1) . $ENV{'SCRIPT_NAME'};
77 # target of the home link on top of all pages
78 our $home_link = $my_uri || "/";
81 # core git executable to use
82 # this can just be "git" if your webserver has a sensible PATH
83 our $GIT = "@GIT_BINDIR@/git";
85 # absolute fs-path which will be prepended to the project path
86 #our $projectroot = "/pub/scm";
87 our $projectroot = "@GITWEB_PROJECTROOT@";
89 # fs traversing limit for getting project list
90 # the number is relative to the projectroot
91 our $project_maxdepth = @GITWEB_PROJECT_MAXDEPTH@;
93 # string of the home link on top of all pages
94 our $home_link_str = "@GITWEB_HOME_LINK_STR@";
96 # extra breadcrumbs preceding the home link
97 our @extra_breadcrumbs = ();
99 # name of your site or organization to appear in page titles
100 # replace this with something more descriptive for clearer bookmarks
101 our $site_name = "@GITWEB_SITENAME@"
102 || ($ENV{'SERVER_NAME'} || "Untitled") . " Git";
104 # html snippet to include in the <head> section of each page
105 our $site_html_head_string = "@GITWEB_SITE_HTML_HEAD_STRING@";
106 # filename of html text to include at top of each page
107 our $site_header = "@GITWEB_SITE_HEADER@";
108 # html text to include at home page
109 our $home_text = "@GITWEB_HOMETEXT@";
110 # filename of html text to include at bottom of each page
111 our $site_footer = "@GITWEB_SITE_FOOTER@";
114 our @stylesheets = ("@GITWEB_CSS@");
115 # URI of a single stylesheet, which can be overridden in GITWEB_CONFIG.
116 our $stylesheet = undef;
117 # URI of GIT logo (72x27 size)
118 our $logo = "@GITWEB_LOGO@";
119 # URI of GIT favicon, assumed to be image/png type
120 our $favicon = "@GITWEB_FAVICON@";
121 # URI of gitweb.js (JavaScript code for gitweb)
122 our $javascript = "@GITWEB_JS@";
124 # URI and label (title) of GIT logo link
125 #our $logo_url = "https://www.kernel.org/pub/software/scm/git/docs/";
126 #our $logo_label = "git documentation";
127 our $logo_url = "https://git-scm.com/";
128 our $logo_label = "git homepage";
130 # source of projects list
131 our $projects_list = "@GITWEB_LIST@";
133 # the width (in characters) of the projects list "Description" column
134 our $projects_list_description_width = 25;
136 # group projects by category on the projects list
137 # (enabled if this variable evaluates to true)
138 our $projects_list_group_categories = 0;
140 # default category if none specified
141 # (leave the empty string for no category)
142 our $project_list_default_category = "";
144 # default order of projects list
145 # valid values are none, project, descr, owner, and age
146 our $default_projects_order = "project";
148 # show repository only if this file exists
149 # (only effective if this variable evaluates to true)
150 our $export_ok = "@GITWEB_EXPORT_OK@";
152 # don't generate age column on the projects list page
153 our $omit_age_column = 0;
155 # don't generate information about owners of repositories
158 # show repository only if this subroutine returns true
159 # when given the path to the project, for example:
160 # sub { return -e "$_[0]/git-daemon-export-ok"; }
161 our $export_auth_hook = undef;
163 # only allow viewing of repositories also shown on the overview page
164 our $strict_export = "@GITWEB_STRICT_EXPORT@";
166 # list of git base URLs used for URL to where fetch project from,
167 # i.e. full URL is "$git_base_url/$project"
168 our @git_base_url_list = grep { $_ ne '' } ("@GITWEB_BASE_URL@");
170 # default blob_plain mimetype and default charset for text/plain blob
171 our $default_blob_plain_mimetype = 'text/plain';
172 our $default_text_plain_charset = undef;
174 # file to use for guessing MIME types before trying /etc/mime.types
175 # (relative to the current git repository)
176 our $mimetypes_file = undef;
178 # assume this charset if line contains non-UTF-8 characters;
179 # it should be valid encoding (see Encoding::Supported(3pm) for list),
180 # for which encoding all byte sequences are valid, for example
181 # 'iso-8859-1' aka 'latin1' (it is decoded without checking, so it
182 # could be even 'utf-8' for the old behavior)
183 our $fallback_encoding = 'latin1';
185 # rename detection options for git-diff and git-diff-tree
186 # - default is '-M', with the cost proportional to
187 # (number of removed files) * (number of new files).
188 # - more costly is '-C' (which implies '-M'), with the cost proportional to
189 # (number of changed files + number of removed files) * (number of new files)
190 # - even more costly is '-C', '--find-copies-harder' with cost
191 # (number of files in the original tree) * (number of new files)
192 # - one might want to include '-B' option, e.g. '-B', '-M'
193 our @diff_opts = ('-M'); # taken from git_commit
195 # Disables features that would allow repository owners to inject script into
197 our $prevent_xss = 0;
199 # Path to the highlight executable to use (must be the one from
200 # http://andre-simon.de/zip/download.php due to assumptions about parameters and output).
201 # Useful if highlight is not installed on your webserver's PATH.
202 # [Default: highlight]
203 our $highlight_bin = "@HIGHLIGHT_BIN@";
205 # information about snapshot formats that gitweb is capable of serving
206 our %known_snapshot_formats = (
208 # 'display' => display name,
209 # 'type' => mime type,
210 # 'suffix' => filename suffix,
211 # 'format' => --format for git-archive,
212 # 'compressor' => [compressor command and arguments]
213 # (array reference, optional)
214 # 'disabled' => boolean (optional)}
217 'display' => 'tar.gz',
218 'type' => 'application/x-gzip',
219 'suffix' => '.tar.gz',
221 'compressor' => ['gzip', '-n']},
224 'display' => 'tar.bz2',
225 'type' => 'application/x-bzip2',
226 'suffix' => '.tar.bz2',
228 'compressor' => ['bzip2']},
231 'display' => 'tar.xz',
232 'type' => 'application/x-xz',
233 'suffix' => '.tar.xz',
235 'compressor' => ['xz'],
239 'display' => 'tar.zst',
240 'type' => 'application/x-zstd',
241 'suffix' => '.tar.zst',
243 'compressor' => ['zstd'],
248 'type' => 'application/x-zip',
253 # Aliases so we understand old gitweb.snapshot values in repository
255 our %known_snapshot_format_aliases = (
261 # backward compatibility: legacy gitweb config support
262 'x-gzip' => undef, 'gz' => undef,
263 'x-bzip2' => undef, 'bz2' => undef,
264 'x-zip' => undef, '' => undef,
267 # Pixel sizes for icons and avatars. If the default font sizes or lineheights
268 # are changed, it may be appropriate to change these values too via
275 # Used to set the maximum load that we will still respond to gitweb queries.
276 # If server load exceed this value then return "503 server busy" error.
277 # If gitweb cannot determined server load, it is taken to be 0.
278 # Leave it undefined (or set to 'undef') to turn off load checking.
281 # configuration for 'highlight' (http://andre-simon.de/doku/highlight/en/highlight.php)
283 our %highlight_basename = (
286 'SConstruct' => 'py', # SCons equivalent of Makefile
287 'Makefile' => 'make',
290 our %highlight_ext = (
291 # main extensions, defining name of syntax;
292 # see files in /usr/share/highlight/langDefs/ directory
293 (map { $_ => $_ } qw(py rb java css js tex bib xml awk bat ini spec tcl sql)),
294 # alternate extensions, see /etc/highlight/filetypes.conf
295 (map { $_ => 'c' } qw(c h)),
296 (map { $_ => 'sh' } qw(sh bash zsh ksh)),
297 (map { $_ => 'cpp' } qw(cpp cxx c++ cc)),
298 (map { $_ => 'php' } qw(php php3 php4 php5 phps)),
299 (map { $_ => 'pl' } qw(pl perl pm)), # perhaps also 'cgi'
300 (map { $_ => 'make'} qw(make mak mk)),
301 (map { $_ => 'xml' } qw(xml xhtml html htm)),
304 # You define site-wide feature defaults here; override them with
305 # $GITWEB_CONFIG as necessary.
308 # 'sub' => feature-sub (subroutine),
309 # 'override' => allow-override (boolean),
310 # 'default' => [ default options...] (array reference)}
312 # if feature is overridable (it means that allow-override has true value),
313 # then feature-sub will be called with default options as parameters;
314 # return value of feature-sub indicates if to enable specified feature
316 # if there is no 'sub' key (no feature-sub), then feature cannot be
319 # use gitweb_get_feature(<feature>) to retrieve the <feature> value
320 # (an array) or gitweb_check_feature(<feature>) to check if <feature>
323 # Enable the 'blame' blob view, showing the last commit that modified
324 # each line in the file. This can be very CPU-intensive.
326 # To enable system wide have in $GITWEB_CONFIG
327 # $feature{'blame'}{'default'} = [1];
328 # To have project specific config enable override in $GITWEB_CONFIG
329 # $feature{'blame'}{'override'} = 1;
330 # and in project config gitweb.blame = 0|1;
332 'sub' => sub { feature_bool
('blame', @_) },
336 # Enable the 'snapshot' link, providing a compressed archive of any
337 # tree. This can potentially generate high traffic if you have large
340 # Value is a list of formats defined in %known_snapshot_formats that
342 # To disable system wide have in $GITWEB_CONFIG
343 # $feature{'snapshot'}{'default'} = [];
344 # To have project specific config enable override in $GITWEB_CONFIG
345 # $feature{'snapshot'}{'override'} = 1;
346 # and in project config, a comma-separated list of formats or "none"
347 # to disable. Example: gitweb.snapshot = tbz2,zip;
349 'sub' => \
&feature_snapshot
,
351 'default' => ['tgz']},
353 # Enable text search, which will list the commits which match author,
354 # committer or commit text to a given string. Enabled by default.
355 # Project specific override is not supported.
357 # Note that this controls all search features, which means that if
358 # it is disabled, then 'grep' and 'pickaxe' search would also be
364 # Enable grep search, which will list the files in currently selected
365 # tree containing the given string. Enabled by default. This can be
366 # potentially CPU-intensive, of course.
367 # Note that you need to have 'search' feature enabled too.
369 # To enable system wide have in $GITWEB_CONFIG
370 # $feature{'grep'}{'default'} = [1];
371 # To have project specific config enable override in $GITWEB_CONFIG
372 # $feature{'grep'}{'override'} = 1;
373 # and in project config gitweb.grep = 0|1;
375 'sub' => sub { feature_bool
('grep', @_) },
379 # Enable the pickaxe search, which will list the commits that modified
380 # a given string in a file. This can be practical and quite faster
381 # alternative to 'blame', but still potentially CPU-intensive.
382 # Note that you need to have 'search' feature enabled too.
384 # To enable system wide have in $GITWEB_CONFIG
385 # $feature{'pickaxe'}{'default'} = [1];
386 # To have project specific config enable override in $GITWEB_CONFIG
387 # $feature{'pickaxe'}{'override'} = 1;
388 # and in project config gitweb.pickaxe = 0|1;
390 'sub' => sub { feature_bool
('pickaxe', @_) },
394 # Enable showing size of blobs in a 'tree' view, in a separate
395 # column, similar to what 'ls -l' does. This cost a bit of IO.
397 # To disable system wide have in $GITWEB_CONFIG
398 # $feature{'show-sizes'}{'default'} = [0];
399 # To have project specific config enable override in $GITWEB_CONFIG
400 # $feature{'show-sizes'}{'override'} = 1;
401 # and in project config gitweb.showsizes = 0|1;
403 'sub' => sub { feature_bool
('showsizes', @_) },
407 # Make gitweb use an alternative format of the URLs which can be
408 # more readable and natural-looking: project name is embedded
409 # directly in the path and the query string contains other
410 # auxiliary information. All gitweb installations recognize
411 # URL in either format; this configures in which formats gitweb
414 # To enable system wide have in $GITWEB_CONFIG
415 # $feature{'pathinfo'}{'default'} = [1];
416 # Project specific override is not supported.
418 # Note that you will need to change the default location of CSS,
419 # favicon, logo and possibly other files to an absolute URL. Also,
420 # if gitweb.cgi serves as your indexfile, you will need to force
421 # $my_uri to contain the script name in your $GITWEB_CONFIG.
426 # Make gitweb consider projects in project root subdirectories
427 # to be forks of existing projects. Given project $projname.git,
428 # projects matching $projname/*.git will not be shown in the main
429 # projects list, instead a '+' mark will be added to $projname
430 # there and a 'forks' view will be enabled for the project, listing
431 # all the forks. If project list is taken from a file, forks have
432 # to be listed after the main project.
434 # To enable system wide have in $GITWEB_CONFIG
435 # $feature{'forks'}{'default'} = [1];
436 # Project specific override is not supported.
441 # Insert custom links to the action bar of all project pages.
442 # This enables you mainly to link to third-party scripts integrating
443 # into gitweb; e.g. git-browser for graphical history representation
444 # or custom web-based repository administration interface.
446 # The 'default' value consists of a list of triplets in the form
447 # (label, link, position) where position is the label after which
448 # to insert the link and link is a format string where %n expands
449 # to the project name, %f to the project path within the filesystem,
450 # %h to the current hash (h gitweb parameter) and %b to the current
451 # hash base (hb gitweb parameter); %% expands to %.
453 # To enable system wide have in $GITWEB_CONFIG e.g.
454 # $feature{'actions'}{'default'} = [('graphiclog',
455 # '/git-browser/by-commit.html?r=%n', 'summary')];
456 # Project specific override is not supported.
461 # Allow gitweb scan project content tags of project repository,
462 # and display the popular Web 2.0-ish "tag cloud" near the projects
463 # list. Note that this is something COMPLETELY different from the
466 # gitweb by itself can show existing tags, but it does not handle
467 # tagging itself; you need to do it externally, outside gitweb.
468 # The format is described in git_get_project_ctags() subroutine.
469 # You may want to install the HTML::TagCloud Perl module to get
470 # a pretty tag cloud instead of just a list of tags.
472 # To enable system wide have in $GITWEB_CONFIG
473 # $feature{'ctags'}{'default'} = [1];
474 # Project specific override is not supported.
476 # In the future whether ctags editing is enabled might depend
477 # on the value, but using 1 should always mean no editing of ctags.
482 # The maximum number of patches in a patchset generated in patch
483 # view. Set this to 0 or undef to disable patch view, or to a
484 # negative number to remove any limit.
486 # To disable system wide have in $GITWEB_CONFIG
487 # $feature{'patches'}{'default'} = [0];
488 # To have project specific config enable override in $GITWEB_CONFIG
489 # $feature{'patches'}{'override'} = 1;
490 # and in project config gitweb.patches = 0|n;
491 # where n is the maximum number of patches allowed in a patchset.
493 'sub' => \
&feature_patches
,
497 # Avatar support. When this feature is enabled, views such as
498 # shortlog or commit will display an avatar associated with
499 # the email of the committer(s) and/or author(s).
501 # Currently available providers are gravatar and picon.
502 # If an unknown provider is specified, the feature is disabled.
504 # Picon currently relies on the indiana.edu database.
506 # To enable system wide have in $GITWEB_CONFIG
507 # $feature{'avatar'}{'default'} = ['<provider>'];
508 # where <provider> is either gravatar or picon.
509 # To have project specific config enable override in $GITWEB_CONFIG
510 # $feature{'avatar'}{'override'} = 1;
511 # and in project config gitweb.avatar = <provider>;
513 'sub' => \
&feature_avatar
,
517 # Enable displaying how much time and how many git commands
518 # it took to generate and display page. Disabled by default.
519 # Project specific override is not supported.
524 # Enable turning some links into links to actions which require
525 # JavaScript to run (like 'blame_incremental'). Not enabled by
526 # default. Project specific override is currently not supported.
527 'javascript-actions' => {
531 # Enable and configure ability to change common timezone for dates
532 # in gitweb output via JavaScript. Enabled by default.
533 # Project specific override is not supported.
534 'javascript-timezone' => {
537 'local', # default timezone: 'utc', 'local', or '(-|+)HHMM' format,
538 # or undef to turn off this feature
539 'gitweb_tz', # name of cookie where to store selected timezone
540 'datetime', # CSS class used to mark up dates for manipulation
543 # Syntax highlighting support. This is based on Daniel Svensson's
544 # and Sham Chukoury's work in gitweb-xmms2.git.
545 # It requires the 'highlight' program present in $PATH,
546 # and therefore is disabled by default.
548 # To enable system wide have in $GITWEB_CONFIG
549 # $feature{'highlight'}{'default'} = [1];
552 'sub' => sub { feature_bool
('highlight', @_) },
556 # Enable displaying of remote heads in the heads list
558 # To enable system wide have in $GITWEB_CONFIG
559 # $feature{'remote_heads'}{'default'} = [1];
560 # To have project specific config enable override in $GITWEB_CONFIG
561 # $feature{'remote_heads'}{'override'} = 1;
562 # and in project config gitweb.remoteheads = 0|1;
564 'sub' => sub { feature_bool
('remote_heads', @_) },
568 # Enable showing branches under other refs in addition to heads
570 # To set system wide extra branch refs have in $GITWEB_CONFIG
571 # $feature{'extra-branch-refs'}{'default'} = ['dirs', 'of', 'choice'];
572 # To have project specific config enable override in $GITWEB_CONFIG
573 # $feature{'extra-branch-refs'}{'override'} = 1;
574 # and in project config gitweb.extrabranchrefs = dirs of choice
575 # Every directory is separated with whitespace.
577 'extra-branch-refs' => {
578 'sub' => \
&feature_extra_branch_refs
,
582 # Redact e-mail addresses.
584 # To enable system wide have in $GITWEB_CONFIG
585 # $feature{'email-privacy'}{'default'} = [1];
587 'sub' => sub { feature_bool
('email-privacy', @_) },
592 sub human_readable_bytes
{
598 my @units = ('', 'K', 'M', 'G', 'T', 'P');
601 while ($bytes >= 1024 && $i < $#units) {
606 return sprintf("%d", $bytes);
607 } elsif ($bytes < 10) {
608 return sprintf("%.1f%s", $bytes, $units[$i]);
610 return sprintf("%d%s", $bytes, $units[$i])
614 sub gitweb_get_feature
{
616 return unless exists $feature{$name};
617 my ($sub, $override, @defaults) = (
618 $feature{$name}{'sub'},
619 $feature{$name}{'override'},
620 @{$feature{$name}{'default'}});
621 # project specific override is possible only if we have project
622 our $git_dir; # global variable, declared later
623 if (!$override || !defined $git_dir) {
627 warn "feature $name is not overridable";
630 return $sub->(@defaults);
633 # A wrapper to check if a given feature is enabled.
634 # With this, you can say
636 # my $bool_feat = gitweb_check_feature('bool_feat');
637 # gitweb_check_feature('bool_feat') or somecode;
641 # my ($bool_feat) = gitweb_get_feature('bool_feat');
642 # (gitweb_get_feature('bool_feat'))[0] or somecode;
644 sub gitweb_check_feature
{
645 return (gitweb_get_feature
(@_))[0];
651 my ($val) = git_get_project_config
($key, '--bool');
655 } elsif ($val eq 'true') {
657 } elsif ($val eq 'false') {
662 sub feature_snapshot
{
665 my ($val) = git_get_project_config
('snapshot');
668 @fmts = ($val eq 'none' ? () : split /\s*[,\s]\s*/, $val);
674 sub feature_patches
{
675 my @val = (git_get_project_config
('patches', '--int'));
685 my @val = (git_get_project_config
('avatar'));
687 return @val ? @val : @_;
690 sub feature_extra_branch_refs
{
691 my (@branch_refs) = @_;
692 my $values = git_get_project_config
('extrabranchrefs');
695 $values = config_to_multi
($values);
697 foreach my $value (@{$values}) {
698 push @branch_refs, split /\s+/, $value;
705 # checking HEAD file with -e is fragile if the repository was
706 # initialized long time ago (i.e. symlink HEAD) and was pack-ref'ed
708 sub check_head_link
{
710 my $headfile = "$dir/HEAD";
711 return ((-e
$headfile) ||
712 (-l
$headfile && readlink($headfile) =~ /^refs\/heads\
//));
715 sub check_export_ok
{
717 return (check_head_link
($dir) &&
718 (!$export_ok || -e
"$dir/$export_ok") &&
719 (!$export_auth_hook || $export_auth_hook->($dir)));
722 # process alternate names for backward compatibility
723 # filter out unsupported (unknown) snapshot formats
724 sub filter_snapshot_fmts
{
728 exists $known_snapshot_format_aliases{$_} ?
729 $known_snapshot_format_aliases{$_} : $_} @fmts;
731 exists $known_snapshot_formats{$_} &&
732 !$known_snapshot_formats{$_}{'disabled'}} @fmts;
735 sub filter_and_validate_refs
{
737 my %unique_refs = ();
739 foreach my $ref (@refs) {
740 die_error
(500, "Invalid ref '$ref' in 'extra-branch-refs' feature") unless (is_valid_ref_format
($ref));
741 # 'heads' are added implicitly in get_branch_refs().
742 $unique_refs{$ref} = 1 if ($ref ne 'heads');
744 return sort keys %unique_refs;
747 # If it is set to code reference, it is code that it is to be run once per
748 # request, allowing updating configurations that change with each request,
749 # while running other code in config file only once.
751 # Otherwise, if it is false then gitweb would process config file only once;
752 # if it is true then gitweb config would be run for each request.
753 our $per_request_config = 1;
755 # read and parse gitweb config file given by its parameter.
756 # returns true on success, false on recoverable error, allowing
757 # to chain this subroutine, using first file that exists.
758 # dies on errors during parsing config file, as it is unrecoverable.
759 sub read_config_file
{
760 my $filename = shift;
761 return unless defined $filename;
764 # die if there is a problem accessing the file
766 # die if there are errors parsing config file
773 our ($GITWEB_CONFIG, $GITWEB_CONFIG_SYSTEM, $GITWEB_CONFIG_COMMON);
774 sub evaluate_gitweb_config
{
775 our $GITWEB_CONFIG = $ENV{'GITWEB_CONFIG'} || "@GITWEB_CONFIG@";
776 our $GITWEB_CONFIG_SYSTEM = $ENV{'GITWEB_CONFIG_SYSTEM'} || "@GITWEB_CONFIG_SYSTEM@";
777 our $GITWEB_CONFIG_COMMON = $ENV{'GITWEB_CONFIG_COMMON'} || "@GITWEB_CONFIG_COMMON@";
779 # Protect against duplications of file names, to not read config twice.
780 # Only one of $GITWEB_CONFIG and $GITWEB_CONFIG_SYSTEM is used, so
781 # there possibility of duplication of filename there doesn't matter.
782 $GITWEB_CONFIG = "" if ($GITWEB_CONFIG eq $GITWEB_CONFIG_COMMON);
783 $GITWEB_CONFIG_SYSTEM = "" if ($GITWEB_CONFIG_SYSTEM eq $GITWEB_CONFIG_COMMON);
785 # Common system-wide settings for convenience.
786 # Those settings can be overridden by GITWEB_CONFIG or GITWEB_CONFIG_SYSTEM.
787 read_config_file
($GITWEB_CONFIG_COMMON);
789 # Use first config file that exists. This means use the per-instance
790 # GITWEB_CONFIG if exists, otherwise use GITWEB_SYSTEM_CONFIG.
791 read_config_file
($GITWEB_CONFIG) and return;
792 read_config_file
($GITWEB_CONFIG_SYSTEM);
795 # Get loadavg of system, to compare against $maxload.
796 # Currently it requires '/proc/loadavg' present to get loadavg;
797 # if it is not present it returns 0, which means no load checking.
799 if( -e
'/proc/loadavg' ){
800 open my $fd, '<', '/proc/loadavg'
802 my @load = split(/\s+/, scalar <$fd>);
805 # The first three columns measure CPU and IO utilization of the last one,
806 # five, and 10 minute periods. The fourth column shows the number of
807 # currently running processes and the total number of processes in the m/n
808 # format. The last column displays the last process ID used.
809 return $load[0] || 0;
811 # additional checks for load average should go here for things that don't export
817 # version of the core git binary
818 our $git_version="x.x.x";
821 if (defined $maxload && get_loadavg
() > $maxload) {
822 die_error
(503, "The load average on the server is too high");
826 # ======================================================================
827 # input validation and dispatch
829 # Various hash size-related values.
831 my $sha256_extra_len = 24;
832 my $sha256_len = $sha1_len + $sha256_extra_len;
834 # A regex matching $len hex characters. $len may be a range (e.g. 7,64).
837 my $hchr = qr/[0-9a-fA-F]/;
838 return qr/(?:(?:$hchr){$len})/;
841 # A regex matching two sets of $nlen hex characters, prefixed by the literal
842 # string $prefix and with the literal string $infix between them.
843 sub oid_nlen_prefix_infix_regex
{
848 my $rx = oid_nlen_regex
($nlen);
850 return qr/^\Q$prefix\E$rx\Q$infix\E$rx$/;
853 # A regex matching a valid object ID.
856 my $x = oid_nlen_regex
($sha1_len);
857 my $y = oid_nlen_regex
($sha256_extra_len);
858 $oid_regex = qr/(?:$x(?:$y)?)/;
861 # input parameters can be collected from a variety of sources (presently, CGI
862 # and PATH_INFO), so we define an %input_params hash that collects them all
863 # together during validation: this allows subsequent uses (e.g. href()) to be
864 # agnostic of the parameter origin
866 our %input_params = ();
868 # input parameters are stored with the long parameter name as key. This will
869 # also be used in the href subroutine to convert parameters to their CGI
870 # equivalent, and since the href() usage is the most frequent one, we store
871 # the name -> CGI key mapping here, instead of the reverse.
873 # XXX: Warning: If you touch this, check the search form for updating,
876 our @cgi_param_mapping = (
884 hash_parent_base
=> "hpb",
889 snapshot_format
=> "sf",
890 extra_options
=> "opt",
891 search_use_regexp
=> "sr",
894 project_filter
=> "pf",
895 # this must be last entry (for manipulation from JavaScript)
898 our %cgi_param_mapping = @cgi_param_mapping;
900 # we will also need to know the possible actions, for validation
902 "blame" => \
&git_blame
,
903 "blame_incremental" => \
&git_blame_incremental
,
904 "blame_data" => \
&git_blame_data
,
905 "blobdiff" => \
&git_blobdiff
,
906 "blobdiff_plain" => \
&git_blobdiff_plain
,
907 "blob" => \
&git_blob
,
908 "blob_plain" => \
&git_blob_plain
,
909 "commitdiff" => \
&git_commitdiff
,
910 "commitdiff_plain" => \
&git_commitdiff_plain
,
911 "commit" => \
&git_commit
,
912 "forks" => \
&git_forks
,
913 "heads" => \
&git_heads
,
914 "history" => \
&git_history
,
916 "patch" => \
&git_patch
,
917 "patches" => \
&git_patches
,
918 "remotes" => \
&git_remotes
,
920 "atom" => \
&git_atom
,
921 "search" => \
&git_search
,
922 "search_help" => \
&git_search_help
,
923 "shortlog" => \
&git_shortlog
,
924 "summary" => \
&git_summary
,
926 "tags" => \
&git_tags
,
927 "tree" => \
&git_tree
,
928 "snapshot" => \
&git_snapshot
,
929 "object" => \
&git_object
,
930 # those below don't need $project
931 "opml" => \
&git_opml
,
932 "project_list" => \
&git_project_list
,
933 "project_index" => \
&git_project_index
,
936 # finally, we have the hash of allowed extra_options for the commands that
938 our %allowed_options = (
939 "--no-merges" => [ qw(rss atom log shortlog history) ],
942 # fill %input_params with the CGI parameters. All values except for 'opt'
943 # should be single values, but opt can be an array. We should probably
944 # build an array of parameters that can be multi-valued, but since for the time
945 # being it's only this one, we just single it out
946 sub evaluate_query_params
{
949 while (my ($name, $symbol) = each %cgi_param_mapping) {
950 if ($symbol eq 'opt') {
951 $input_params{$name} = [ map { decode_utf8
($_) } $cgi->multi_param($symbol) ];
953 $input_params{$name} = decode_utf8
($cgi->param($symbol));
958 # now read PATH_INFO and update the parameter list for missing parameters
959 sub evaluate_path_info
{
960 return if defined $input_params{'project'};
961 return if !$path_info;
962 $path_info =~ s
,^/+,,;
963 return if !$path_info;
965 # find which part of PATH_INFO is project
966 my $project = $path_info;
969 if (check_head_link
("$projectroot/$project.git")) {
971 } elsif (check_head_link
("$projectroot/$project")) {
974 $project =~ s
,/*[^/]*$,,;
976 return unless $project;
977 $input_params{'project'} = $project;
979 # do not change any parameters if an action is given using the query string
980 return if $input_params{'action'};
981 $path_info =~ s
,^\Q
$project\E
/*,,;
983 # next, check if we have an action
984 my $action = $path_info;
986 if (exists $actions{$action}) {
987 $path_info =~ s
,^$action/*,,;
988 $input_params{'action'} = $action;
991 # list of actions that want hash_base instead of hash, but can have no
992 # pathname (f) parameter
998 # we want to catch, among others
999 # [$hash_parent_base[:$file_parent]..]$hash_parent[:$file_name]
1000 my ($parentrefname, $parentpathname, $refname, $pathname) =
1001 ($path_info =~ /^(?:(.+?)(?::(.+))?\.\.)?([^:]+?)?(?::(.+))?$/);
1003 # first, analyze the 'current' part
1004 if (defined $pathname) {
1005 # we got "branch:filename" or "branch:dir/"
1006 # we could use git_get_type(branch:pathname), but:
1007 # - it needs $git_dir
1008 # - it does a git() call
1009 # - the convention of terminating directories with a slash
1010 # makes it superfluous
1011 # - embedding the action in the PATH_INFO would make it even
1013 $pathname =~ s
,^/+,,;
1014 if (!$pathname || substr($pathname, -1) eq "/") {
1015 $input_params{'action'} ||= "tree";
1016 $pathname =~ s
,/$,,;
1018 # the default action depends on whether we had parent info
1020 if ($parentrefname) {
1021 $input_params{'action'} ||= "blobdiff_plain";
1023 $input_params{'action'} ||= "blob_plain";
1026 $input_params{'hash_base'} ||= $refname;
1027 $input_params{'file_name'} ||= $pathname;
1028 } elsif (defined $refname) {
1029 # we got "branch". In this case we have to choose if we have to
1030 # set hash or hash_base.
1032 # Most of the actions without a pathname only want hash to be
1033 # set, except for the ones specified in @wants_base that want
1034 # hash_base instead. It should also be noted that hand-crafted
1035 # links having 'history' as an action and no pathname or hash
1036 # set will fail, but that happens regardless of PATH_INFO.
1037 if (defined $parentrefname) {
1038 # if there is parent let the default be 'shortlog' action
1039 # (for http://git.example.com/repo.git/A..B links); if there
1040 # is no parent, dispatch will detect type of object and set
1041 # action appropriately if required (if action is not set)
1042 $input_params{'action'} ||= "shortlog";
1044 if ($input_params{'action'} &&
1045 grep { $_ eq $input_params{'action'} } @wants_base) {
1046 $input_params{'hash_base'} ||= $refname;
1048 $input_params{'hash'} ||= $refname;
1052 # next, handle the 'parent' part, if present
1053 if (defined $parentrefname) {
1054 # a missing pathspec defaults to the 'current' filename, allowing e.g.
1055 # someproject/blobdiff/oldrev..newrev:/filename
1056 if ($parentpathname) {
1057 $parentpathname =~ s
,^/+,,;
1058 $parentpathname =~ s
,/$,,;
1059 $input_params{'file_parent'} ||= $parentpathname;
1061 $input_params{'file_parent'} ||= $input_params{'file_name'};
1063 # we assume that hash_parent_base is wanted if a path was specified,
1064 # or if the action wants hash_base instead of hash
1065 if (defined $input_params{'file_parent'} ||
1066 grep { $_ eq $input_params{'action'} } @wants_base) {
1067 $input_params{'hash_parent_base'} ||= $parentrefname;
1069 $input_params{'hash_parent'} ||= $parentrefname;
1073 # for the snapshot action, we allow URLs in the form
1074 # $project/snapshot/$hash.ext
1075 # where .ext determines the snapshot and gets removed from the
1076 # passed $refname to provide the $hash.
1078 # To be able to tell that $refname includes the format extension, we
1079 # require the following two conditions to be satisfied:
1080 # - the hash input parameter MUST have been set from the $refname part
1081 # of the URL (i.e. they must be equal)
1082 # - the snapshot format MUST NOT have been defined already (e.g. from
1084 # It's also useless to try any matching unless $refname has a dot,
1085 # so we check for that too
1086 if (defined $input_params{'action'} &&
1087 $input_params{'action'} eq 'snapshot' &&
1088 defined $refname && index($refname, '.') != -1 &&
1089 $refname eq $input_params{'hash'} &&
1090 !defined $input_params{'snapshot_format'}) {
1091 # We loop over the known snapshot formats, checking for
1092 # extensions. Allowed extensions are both the defined suffix
1093 # (which includes the initial dot already) and the snapshot
1094 # format key itself, with a prepended dot
1095 while (my ($fmt, $opt) = each %known_snapshot_formats) {
1096 my $hash = $refname;
1097 unless ($hash =~ s/(\Q$opt->{'suffix'}\E|\Q.$fmt\E)$//) {
1101 # a valid suffix was found, so set the snapshot format
1102 # and reset the hash parameter
1103 $input_params{'snapshot_format'} = $fmt;
1104 $input_params{'hash'} = $hash;
1105 # we also set the format suffix to the one requested
1106 # in the URL: this way a request for e.g. .tgz returns
1107 # a .tgz instead of a .tar.gz
1108 $known_snapshot_formats{$fmt}{'suffix'} = $sfx;
1114 our ($action, $project, $file_name, $file_parent, $hash, $hash_parent, $hash_base,
1115 $hash_parent_base, @extra_options, $page, $searchtype, $search_use_regexp,
1116 $searchtext, $search_regexp, $project_filter);
1117 sub evaluate_and_validate_params
{
1118 our $action = $input_params{'action'};
1119 if (defined $action) {
1120 if (!is_valid_action
($action)) {
1121 die_error
(400, "Invalid action parameter");
1125 # parameters which are pathnames
1126 our $project = $input_params{'project'};
1127 if (defined $project) {
1128 if ($project !~ /\.git$/) {
1131 if (!is_valid_project
($project)) {
1133 die_error
(404, "No such project");
1137 our $project_filter = $input_params{'project_filter'};
1138 if (defined $project_filter) {
1139 if (!is_valid_pathname
($project_filter)) {
1140 die_error
(404, "Invalid project_filter parameter");
1144 our $file_name = $input_params{'file_name'};
1145 if (defined $file_name) {
1146 if (!is_valid_pathname
($file_name)) {
1147 die_error
(400, "Invalid file parameter");
1151 our $file_parent = $input_params{'file_parent'};
1152 if (defined $file_parent) {
1153 if (!is_valid_pathname
($file_parent)) {
1154 die_error
(400, "Invalid file parent parameter");
1158 # parameters which are refnames
1159 our $hash = $input_params{'hash'};
1160 if (defined $hash) {
1161 if (!is_valid_refname
($hash)) {
1162 die_error
(400, "Invalid hash parameter");
1166 our $hash_parent = $input_params{'hash_parent'};
1167 if (defined $hash_parent) {
1168 if (!is_valid_refname
($hash_parent)) {
1169 die_error
(400, "Invalid hash parent parameter");
1173 our $hash_base = $input_params{'hash_base'};
1174 if (defined $hash_base) {
1175 if (!is_valid_refname
($hash_base)) {
1176 die_error
(400, "Invalid hash base parameter");
1180 our @extra_options = @{$input_params{'extra_options'}};
1181 # @extra_options is always defined, since it can only be (currently) set from
1182 # CGI, and $cgi->param() returns the empty array in array context if the param
1184 foreach my $opt (@extra_options) {
1185 if (not exists $allowed_options{$opt}) {
1186 die_error
(400, "Invalid option parameter");
1188 if (not grep(/^$action$/, @{$allowed_options{$opt}})) {
1189 die_error
(400, "Invalid option parameter for this action");
1193 our $hash_parent_base = $input_params{'hash_parent_base'};
1194 if (defined $hash_parent_base) {
1195 if (!is_valid_refname
($hash_parent_base)) {
1196 die_error
(400, "Invalid hash parent base parameter");
1201 our $page = $input_params{'page'};
1202 if (defined $page) {
1203 if ($page =~ m/[^0-9]/) {
1204 die_error
(400, "Invalid page parameter");
1208 our $searchtype = $input_params{'searchtype'};
1209 if (defined $searchtype) {
1210 if ($searchtype =~ m/[^a-z]/) {
1211 die_error
(400, "Invalid searchtype parameter");
1215 our $search_use_regexp = $input_params{'search_use_regexp'};
1217 our $searchtext = $input_params{'searchtext'};
1218 our $search_regexp = undef;
1219 if (defined $searchtext) {
1220 if (length($searchtext) < 2) {
1221 die_error
(403, "At least two characters are required for search parameter");
1223 if ($search_use_regexp) {
1224 $search_regexp = $searchtext;
1225 if (!eval { qr/$search_regexp/; 1; }) {
1226 my $error = $@ =~ s/ at \S+ line \d+.*\n?//r;
1227 die_error
(400, "Invalid search regexp '$search_regexp'",
1231 $search_regexp = quotemeta $searchtext;
1236 # path to the current git repository
1238 sub evaluate_git_dir
{
1239 our $git_dir = "$projectroot/$project" if $project;
1242 our (@snapshot_fmts, $git_avatar, @extra_branch_refs);
1243 sub configure_gitweb_features
{
1244 # list of supported snapshot formats
1245 our @snapshot_fmts = gitweb_get_feature
('snapshot');
1246 @snapshot_fmts = filter_snapshot_fmts
(@snapshot_fmts);
1248 our ($git_avatar) = gitweb_get_feature
('avatar');
1249 $git_avatar = '' unless $git_avatar =~ /^(?:gravatar|picon)$/s;
1251 our @extra_branch_refs = gitweb_get_feature
('extra-branch-refs');
1252 @extra_branch_refs = filter_and_validate_refs
(@extra_branch_refs);
1255 sub get_branch_refs
{
1256 return ('heads', @extra_branch_refs);
1259 # custom error handler: 'die <message>' is Internal Server Error
1260 sub handle_errors_html
{
1261 my $msg = shift; # it is already HTML escaped
1263 # to avoid infinite loop where error occurs in die_error,
1264 # change handler to default handler, disabling handle_errors_html
1265 set_message
("Error occurred when inside die_error:\n$msg");
1267 # you cannot jump out of die_error when called as error handler;
1268 # the subroutine set via CGI::Carp::set_message is called _after_
1269 # HTTP headers are already written, so it cannot write them itself
1270 die_error
(undef, undef, $msg, -error_handler
=> 1, -no_http_header
=> 1);
1272 set_message
(\
&handle_errors_html
);
1276 if (!defined $action) {
1277 if (defined $hash) {
1278 $action = git_get_type
($hash);
1279 $action or die_error
(404, "Object does not exist");
1280 } elsif (defined $hash_base && defined $file_name) {
1281 $action = git_get_type
("$hash_base:$file_name");
1282 $action or die_error
(404, "File or directory does not exist");
1283 } elsif (defined $project) {
1284 $action = 'summary';
1286 $action = 'project_list';
1289 if (!defined($actions{$action})) {
1290 die_error
(400, "Unknown action");
1292 if ($action !~ m/^(?:opml|project_list|project_index)$/ &&
1294 die_error
(400, "Project needed");
1296 $actions{$action}->();
1300 our $t0 = [ gettimeofday
() ]
1302 our $number_of_git_cmds = 0;
1305 our $first_request = 1;
1310 if ($first_request) {
1311 evaluate_gitweb_config
();
1313 if ($per_request_config) {
1314 if (ref($per_request_config) eq 'CODE') {
1315 $per_request_config->();
1316 } elsif (!$first_request) {
1317 evaluate_gitweb_config
();
1322 # $projectroot and $projects_list might be set in gitweb config file
1323 $projects_list ||= $projectroot;
1325 evaluate_query_params
();
1326 evaluate_path_info
();
1327 evaluate_and_validate_params
();
1330 configure_gitweb_features
();
1335 our $is_last_request = sub { 1 };
1336 our ($pre_dispatch_hook, $post_dispatch_hook, $pre_listen_hook);
1339 our $FCGI_Stream_PRINT_raw = \
&FCGI
::Stream
::PRINT
;
1340 sub configure_as_fcgi
{
1342 our $CGI = 'CGI::Fast';
1343 # FCGI is not Unicode aware hence the UTF-8 encoding must be done manually.
1344 # However no encoding must be done within git_blob_plain() and git_snapshot()
1345 # which must still output in raw binary mode.
1346 no warnings
'redefine';
1347 my $enc = Encode
::find_encoding
('UTF-8');
1348 *FCGI
::Stream
::PRINT
= sub {
1350 for (my $i = 1; $i < @_; $i++) {
1351 $OUTPUT[$i] = $enc->encode($_[$i], Encode
::FB_CROAK
|Encode
::LEAVE_SRC
);
1354 goto $FCGI_Stream_PRINT_raw;
1357 my $request_number = 0;
1358 # let each child service 100 requests
1359 our $is_last_request = sub { ++$request_number > 100 };
1362 my $script_name = $ENV{'SCRIPT_NAME'} || $ENV{'SCRIPT_FILENAME'} || __FILE__
;
1364 if $script_name =~ /\.fcgi$/;
1366 return unless (@ARGV);
1368 require Getopt
::Long
;
1369 Getopt
::Long
::GetOptions
(
1370 'fastcgi|fcgi|f' => \
&configure_as_fcgi
,
1371 'nproc|n=i' => sub {
1372 my ($arg, $val) = @_;
1373 return unless eval { require FCGI
::ProcManager
; 1; };
1374 my $proc_manager = FCGI
::ProcManager-
>new({
1375 n_processes
=> $val,
1377 our $pre_listen_hook = sub { $proc_manager->pm_manage() };
1378 our $pre_dispatch_hook = sub { $proc_manager->pm_pre_dispatch() };
1379 our $post_dispatch_hook = sub { $proc_manager->pm_post_dispatch() };
1388 $pre_listen_hook->()
1389 if $pre_listen_hook;
1392 while ($cgi = $CGI->new()) {
1393 $pre_dispatch_hook->()
1394 if $pre_dispatch_hook;
1398 $post_dispatch_hook->()
1399 if $post_dispatch_hook;
1402 last REQUEST
if ($is_last_request->());
1411 if (defined caller) {
1412 # wrapped in a subroutine processing requests,
1413 # e.g. mod_perl with ModPerl::Registry, or PSGI with Plack::App::WrapCGI
1416 # pure CGI script, serving single request
1420 ## ======================================================================
1423 # possible values of extra options
1424 # -full => 0|1 - use absolute/full URL ($my_uri/$my_url as base)
1425 # -replay => 1 - start from a current view (replay with modifications)
1426 # -path_info => 0|1 - don't use/use path_info URL (if possible)
1427 # -anchor => ANCHOR - add #ANCHOR to end of URL, implies -replay if used alone
1430 # default is to use -absolute url() i.e. $my_uri
1431 my $href = $params{-full
} ? $my_url : $my_uri;
1433 # implicit -replay, must be first of implicit params
1434 $params{-replay
} = 1 if (keys %params == 1 && $params{-anchor
});
1436 $params{'project'} = $project unless exists $params{'project'};
1438 if ($params{-replay
}) {
1439 while (my ($name, $symbol) = each %cgi_param_mapping) {
1440 if (!exists $params{$name}) {
1441 $params{$name} = $input_params{$name};
1446 my $use_pathinfo = gitweb_check_feature
('pathinfo');
1447 if (defined $params{'project'} &&
1448 (exists $params{-path_info
} ? $params{-path_info
} : $use_pathinfo)) {
1449 # try to put as many parameters as possible in PATH_INFO:
1452 # - hash_parent or hash_parent_base:/file_parent
1453 # - hash or hash_base:/filename
1454 # - the snapshot_format as an appropriate suffix
1456 # When the script is the root DirectoryIndex for the domain,
1457 # $href here would be something like http://gitweb.example.com/
1458 # Thus, we strip any trailing / from $href, to spare us double
1459 # slashes in the final URL
1462 # Then add the project name, if present
1463 $href .= "/".esc_path_info
($params{'project'});
1464 $href =~ s/\.git$//g;
1465 delete $params{'project'};
1467 # since we destructively absorb parameters, we keep this
1468 # boolean that remembers if we're handling a snapshot
1469 my $is_snapshot = $params{'action'} eq 'snapshot';
1471 # Summary just uses the project path URL, any other action is
1473 if (defined $params{'action'}) {
1474 $href .= "/".esc_path_info
($params{'action'})
1475 unless $params{'action'} eq 'summary';
1476 delete $params{'action'};
1479 # Next, we put hash_parent_base:/file_parent..hash_base:/file_name,
1480 # stripping nonexistent or useless pieces
1481 $href .= "/" if ($params{'hash_base'} || $params{'hash_parent_base'}
1482 || $params{'hash_parent'} || $params{'hash'});
1483 if (defined $params{'hash_base'}) {
1484 if (defined $params{'hash_parent_base'}) {
1485 $href .= esc_path_info
($params{'hash_parent_base'});
1486 # skip the file_parent if it's the same as the file_name
1487 if (defined $params{'file_parent'}) {
1488 if (defined $params{'file_name'} && $params{'file_parent'} eq $params{'file_name'}) {
1489 delete $params{'file_parent'};
1490 } elsif ($params{'file_parent'} !~ /\.\./) {
1491 $href .= ":/".esc_path_info
($params{'file_parent'});
1492 delete $params{'file_parent'};
1496 delete $params{'hash_parent'};
1497 delete $params{'hash_parent_base'};
1498 } elsif (defined $params{'hash_parent'}) {
1499 $href .= esc_path_info
($params{'hash_parent'}). "..";
1500 delete $params{'hash_parent'};
1503 $href .= esc_path_info
($params{'hash_base'});
1504 if (defined $params{'file_name'} && $params{'file_name'} !~ /\.\./) {
1505 $href .= ":/".esc_path_info
($params{'file_name'});
1506 delete $params{'file_name'};
1508 delete $params{'hash'};
1509 delete $params{'hash_base'};
1510 } elsif (defined $params{'hash'}) {
1511 $href .= esc_path_info
($params{'hash'});
1512 delete $params{'hash'};
1515 # If the action was a snapshot, we can absorb the
1516 # snapshot_format parameter too
1518 my $fmt = $params{'snapshot_format'};
1519 # snapshot_format should always be defined when href()
1520 # is called, but just in case some code forgets, we
1521 # fall back to the default
1522 $fmt ||= $snapshot_fmts[0];
1523 $href .= $known_snapshot_formats{$fmt}{'suffix'};
1524 delete $params{'snapshot_format'};
1528 # now encode the parameters explicitly
1530 for (my $i = 0; $i < @cgi_param_mapping; $i += 2) {
1531 my ($name, $symbol) = ($cgi_param_mapping[$i], $cgi_param_mapping[$i+1]);
1532 if (defined $params{$name}) {
1533 if (ref($params{$name}) eq "ARRAY") {
1534 foreach my $par (@{$params{$name}}) {
1535 push @result, $symbol . "=" . esc_param
($par);
1538 push @result, $symbol . "=" . esc_param
($params{$name});
1542 $href .= "?" . join(';', @result) if scalar @result;
1544 # final transformation: trailing spaces must be escaped (URI-encoded)
1545 $href =~ s/(\s+)$/CGI::escape($1)/e;
1547 if ($params{-anchor
}) {
1548 $href .= "#".esc_param
($params{-anchor
});
1555 ## ======================================================================
1556 ## validation, quoting/unquoting and escaping
1558 sub is_valid_action
{
1560 return undef unless exists $actions{$input};
1564 sub is_valid_project
{
1567 return unless defined $input;
1568 if (!is_valid_pathname
($input) ||
1569 !(-d
"$projectroot/$input") ||
1570 !check_export_ok
("$projectroot/$input") ||
1571 ($strict_export && !project_in_list
($input))) {
1578 sub is_valid_pathname
{
1581 return undef unless defined $input;
1582 # no '.' or '..' as elements of path, i.e. no '.' or '..'
1583 # at the beginning, at the end, and between slashes.
1584 # also this catches doubled slashes
1585 if ($input =~ m!(^|/)(|\.|\.\.)(/|$)!) {
1588 # no null characters
1589 if ($input =~ m!\0!) {
1595 sub is_valid_ref_format
{
1598 return undef unless defined $input;
1599 # restrictions on ref name according to git-check-ref-format
1600 if ($input =~ m!(/\.|\.\.|[\000-\040\177 ~^:?*\[]|/$)!) {
1606 sub is_valid_refname
{
1609 return undef unless defined $input;
1610 # textual hashes are O.K.
1611 if ($input =~ m/^$oid_regex$/) {
1614 # it must be correct pathname
1615 is_valid_pathname
($input) or return undef;
1616 # check git-check-ref-format restrictions
1617 is_valid_ref_format
($input) or return undef;
1621 # decode sequences of octets in utf8 into Perl's internal form,
1622 # which is utf-8 with utf8 flag set if needed. gitweb writes out
1623 # in utf-8 thanks to "binmode STDOUT, ':utf8'" at beginning
1626 return undef unless defined $str;
1628 if (utf8
::is_utf8
($str) || utf8
::decode
($str)) {
1631 return decode
($fallback_encoding, $str, Encode
::FB_DEFAULT
);
1635 # quote unsafe chars, but keep the slash, even when it's not
1636 # correct, but quoted slashes look too horrible in bookmarks
1639 return undef unless defined $str;
1640 $str =~ s/([^A-Za-z0-9\-_.~()\/:@ ]+)/CGI
::escape
($1)/eg
;
1645 # the quoting rules for path_info fragment are slightly different
1648 return undef unless defined $str;
1650 # path_info doesn't treat '+' as space (specially), but '?' must be escaped
1651 $str =~ s/([^A-Za-z0-9\-_.~();\/;:@&= +]+)/CGI
::escape
($1)/eg
;
1656 # quote unsafe chars in whole URL, so some characters cannot be quoted
1659 return undef unless defined $str;
1660 $str =~ s/([^A-Za-z0-9\-_.~();\/;?:@&= ]+)/CGI
::escape
($1)/eg
;
1665 # quote unsafe characters in HTML attributes
1668 # for XHTML conformance escaping '"' to '"' is not enough
1669 return esc_html
(@_);
1672 # replace invalid utf8 character with SUBSTITUTION sequence
1677 return undef unless defined $str;
1679 $str = to_utf8
($str);
1680 $str = $cgi->escapeHTML($str);
1681 if ($opts{'-nbsp'}) {
1682 $str =~ s/ / /g;
1684 $str =~ s
|([[:cntrl
:]])|(($1 ne "\t") ? quot_cec
($1) : $1)|eg
;
1688 # quote control characters and escape filename to HTML
1693 return undef unless defined $str;
1695 $str = to_utf8
($str);
1696 $str = $cgi->escapeHTML($str);
1697 if ($opts{'-nbsp'}) {
1698 $str =~ s/ / /g;
1700 $str =~ s
|([[:cntrl
:]])|quot_cec
($1)|eg
;
1704 # Sanitize for use in XHTML + application/xml+xhtml (valid XML 1.0)
1708 return undef unless defined $str;
1710 $str = to_utf8
($str);
1711 $str =~ s
|([[:cntrl
:]])|(index("\t\n\r", $1) != -1 ? $1 : quot_cec
($1))|eg
;
1715 # Make control characters "printable", using character escape codes (CEC)
1719 my %es = ( # character escape codes, aka escape sequences
1720 "\t" => '\t', # tab (HT)
1721 "\n" => '\n', # line feed (LF)
1722 "\r" => '\r', # carriage return (CR)
1723 "\f" => '\f', # form feed (FF)
1724 "\b" => '\b', # backspace (BS)
1725 "\a" => '\a', # alarm (bell) (BEL)
1726 "\e" => '\e', # escape (ESC)
1727 "\013" => '\v', # vertical tab (VT)
1728 "\000" => '\0', # nul character (NUL)
1730 my $chr = ( (exists $es{$cntrl})
1732 : sprintf('\%2x', ord($cntrl)) );
1733 if ($opts{-nohtml
}) {
1736 return "<span class=\"cntrl\">$chr</span>";
1740 # Alternatively use unicode control pictures codepoints,
1741 # Unicode "printable representation" (PR)
1746 my $chr = sprintf('&#%04d;', 0x2400+ord($cntrl));
1747 if ($opts{-nohtml
}) {
1750 return "<span class=\"cntrl\">$chr</span>";
1754 # git may return quoted and escaped filenames
1760 my %es = ( # character escape codes, aka escape sequences
1761 't' => "\t", # tab (HT, TAB)
1762 'n' => "\n", # newline (NL)
1763 'r' => "\r", # return (CR)
1764 'f' => "\f", # form feed (FF)
1765 'b' => "\b", # backspace (BS)
1766 'a' => "\a", # alarm (bell) (BEL)
1767 'e' => "\e", # escape (ESC)
1768 'v' => "\013", # vertical tab (VT)
1771 if ($seq =~ m/^[0-7]{1,3}$/) {
1772 # octal char sequence
1773 return chr(oct($seq));
1774 } elsif (exists $es{$seq}) {
1775 # C escape sequence, aka character escape code
1778 # quoted ordinary character
1782 if ($str =~ m/^"(.*)"$/) {
1785 $str =~ s/\\([^0-7]|[0-7]{1,3})/unq($1)/eg;
1790 # escape tabs (convert tabs to spaces)
1794 while ((my $pos = index($line, "\t")) != -1) {
1795 if (my $count = (8 - ($pos % 8))) {
1796 my $spaces = ' ' x
$count;
1797 $line =~ s/\t/$spaces/;
1804 sub project_in_list
{
1805 my $project = shift;
1806 my @list = git_get_projects_list
();
1807 return @list && scalar(grep { $_->{'path'} eq $project } @list);
1810 ## ----------------------------------------------------------------------
1811 ## HTML aware string manipulation
1813 # Try to chop given string on a word boundary between position
1814 # $len and $len+$add_len. If there is no word boundary there,
1815 # chop at $len+$add_len. Do not chop if chopped part plus ellipsis
1816 # (marking chopped part) would be longer than given string.
1820 my $add_len = shift || 10;
1821 my $where = shift || 'right'; # 'left' | 'center' | 'right'
1823 # Make sure perl knows it is utf8 encoded so we don't
1824 # cut in the middle of a utf8 multibyte char.
1825 $str = to_utf8
($str);
1827 # allow only $len chars, but don't cut a word if it would fit in $add_len
1828 # if it doesn't fit, cut it if it's still longer than the dots we would add
1829 # remove chopped character entities entirely
1831 # when chopping in the middle, distribute $len into left and right part
1832 # return early if chopping wouldn't make string shorter
1833 if ($where eq 'center') {
1834 return $str if ($len + 5 >= length($str)); # filler is length 5
1837 return $str if ($len + 4 >= length($str)); # filler is length 4
1840 # regexps: ending and beginning with word part up to $add_len
1841 my $endre = qr/.{$len}\w{0,$add_len}/;
1842 my $begre = qr/\w{0,$add_len}.{$len}/;
1844 if ($where eq 'left') {
1845 $str =~ m/^(.*?)($begre)$/;
1846 my ($lead, $body) = ($1, $2);
1847 if (length($lead) > 4) {
1850 return "$lead$body";
1852 } elsif ($where eq 'center') {
1853 $str =~ m/^($endre)(.*)$/;
1854 my ($left, $str) = ($1, $2);
1855 $str =~ m/^(.*?)($begre)$/;
1856 my ($mid, $right) = ($1, $2);
1857 if (length($mid) > 5) {
1860 return "$left$mid$right";
1863 $str =~ m/^($endre)(.*)$/;
1866 if (length($tail) > 4) {
1869 return "$body$tail";
1873 # takes the same arguments as chop_str, but also wraps a <span> around the
1874 # result with a title attribute if it does get chopped. Additionally, the
1875 # string is HTML-escaped.
1876 sub chop_and_escape_str
{
1879 my $chopped = chop_str
(@_);
1880 $str = to_utf8
($str);
1881 if ($chopped eq $str) {
1882 return esc_html
($chopped);
1884 $str =~ s/[[:cntrl:]]/?/g;
1885 return $cgi->span({-title
=>$str}, esc_html
($chopped));
1889 # Highlight selected fragments of string, using given CSS class,
1890 # and escape HTML. It is assumed that fragments do not overlap.
1891 # Regions are passed as list of pairs (array references).
1893 # Example: esc_html_hl_regions("foobar", "mark", [ 0, 3 ]) returns
1894 # '<span class="mark">foo</span>bar'
1895 sub esc_html_hl_regions
{
1896 my ($str, $css_class, @sel) = @_;
1897 my %opts = grep { ref($_) ne 'ARRAY' } @sel;
1898 @sel = grep { ref($_) eq 'ARRAY' } @sel;
1899 return esc_html
($str, %opts) unless @sel;
1905 my ($begin, $end) = @$s;
1907 # Don't create empty <span> elements.
1908 next if $end <= $begin;
1910 my $escaped = esc_html
(substr($str, $begin, $end - $begin),
1913 $out .= esc_html
(substr($str, $pos, $begin - $pos), %opts)
1914 if ($begin - $pos > 0);
1915 $out .= $cgi->span({-class => $css_class}, $escaped);
1919 $out .= esc_html
(substr($str, $pos), %opts)
1920 if ($pos < length($str));
1925 # return positions of beginning and end of each match
1927 my ($str, $regexp) = @_;
1928 return unless (defined $str && defined $regexp);
1931 while ($str =~ /$regexp/g) {
1932 push @matches, [$-[0], $+[0]];
1937 # highlight match (if any), and escape HTML
1938 sub esc_html_match_hl
{
1939 my ($str, $regexp) = @_;
1940 return esc_html
($str) unless defined $regexp;
1942 my @matches = matchpos_list
($str, $regexp);
1943 return esc_html
($str) unless @matches;
1945 return esc_html_hl_regions
($str, 'match', @matches);
1949 # highlight match (if any) of shortened string, and escape HTML
1950 sub esc_html_match_hl_chopped
{
1951 my ($str, $chopped, $regexp) = @_;
1952 return esc_html_match_hl
($str, $regexp) unless defined $chopped;
1954 my @matches = matchpos_list
($str, $regexp);
1955 return esc_html
($chopped) unless @matches;
1957 # filter matches so that we mark chopped string
1958 my $tail = "... "; # see chop_str
1959 unless ($chopped =~ s/\Q$tail\E$//) {
1962 my $chop_len = length($chopped);
1963 my $tail_len = length($tail);
1966 for my $m (@matches) {
1967 if ($m->[0] > $chop_len) {
1968 push @filtered, [ $chop_len, $chop_len + $tail_len ] if ($tail_len > 0);
1970 } elsif ($m->[1] > $chop_len) {
1971 push @filtered, [ $m->[0], $chop_len + $tail_len ];
1977 return esc_html_hl_regions
($chopped . $tail, 'match', @filtered);
1980 ## ----------------------------------------------------------------------
1981 ## functions returning short strings
1983 # CSS class for given age value (in seconds)
1987 if (!defined $age) {
1989 } elsif ($age < 60*60*2) {
1991 } elsif ($age < 60*60*24*2) {
1998 # convert age in seconds to "nn units ago" string
2003 if ($age > 60*60*24*365*2) {
2004 $age_str = (int $age/60/60/24/365);
2005 $age_str .= " years ago";
2006 } elsif ($age > 60*60*24*(365/12)*2) {
2007 $age_str = int $age/60/60/24/(365/12);
2008 $age_str .= " months ago";
2009 } elsif ($age > 60*60*24*7*2) {
2010 $age_str = int $age/60/60/24/7;
2011 $age_str .= " weeks ago";
2012 } elsif ($age > 60*60*24*2) {
2013 $age_str = int $age/60/60/24;
2014 $age_str .= " days ago";
2015 } elsif ($age > 60*60*2) {
2016 $age_str = int $age/60/60;
2017 $age_str .= " hours ago";
2018 } elsif ($age > 60*2) {
2019 $age_str = int $age/60;
2020 $age_str .= " min ago";
2021 } elsif ($age > 2) {
2022 $age_str = int $age;
2023 $age_str .= " sec ago";
2025 $age_str .= " right now";
2031 S_IFINVALID
=> 0030000,
2032 S_IFGITLINK
=> 0160000,
2035 # submodule/subproject, a commit object reference
2039 return (($mode & S_IFMT
) == S_IFGITLINK
)
2042 # convert file mode in octal to symbolic file mode string
2044 my $mode = oct shift;
2046 if (S_ISGITLINK
($mode)) {
2047 return 'm---------';
2048 } elsif (S_ISDIR
($mode & S_IFMT
)) {
2049 return 'drwxr-xr-x';
2050 } elsif (S_ISLNK
($mode)) {
2051 return 'lrwxrwxrwx';
2052 } elsif (S_ISREG
($mode)) {
2053 # git cares only about the executable bit
2054 if ($mode & S_IXUSR
) {
2055 return '-rwxr-xr-x';
2057 return '-rw-r--r--';
2060 return '----------';
2064 # convert file mode in octal to file type string
2068 if ($mode !~ m/^[0-7]+$/) {
2074 if (S_ISGITLINK
($mode)) {
2076 } elsif (S_ISDIR
($mode & S_IFMT
)) {
2078 } elsif (S_ISLNK
($mode)) {
2080 } elsif (S_ISREG
($mode)) {
2087 # convert file mode in octal to file type description string
2088 sub file_type_long
{
2091 if ($mode !~ m/^[0-7]+$/) {
2097 if (S_ISGITLINK
($mode)) {
2099 } elsif (S_ISDIR
($mode & S_IFMT
)) {
2101 } elsif (S_ISLNK
($mode)) {
2103 } elsif (S_ISREG
($mode)) {
2104 if ($mode & S_IXUSR
) {
2105 return "executable";
2115 ## ----------------------------------------------------------------------
2116 ## functions returning short HTML fragments, or transforming HTML fragments
2117 ## which don't belong to other sections
2119 # format line of commit message.
2120 sub format_log_line_html
{
2123 # Potentially abbreviated OID.
2124 my $regex = oid_nlen_regex
("7,64");
2126 $line = esc_html
($line, -nbsp
=>1);
2130 # The output of "git describe", e.g. v2.10.0-297-gf6727b0
2131 # or hadoop-20160921-113441-20-g094fb7d
2132 (?<!-) # see check_tag_ref(). Tags can't start with -
2134 (?!\
.) # refs can't end with ".", see check_refname_format()
2137 # Just a normal looking Git SHA1
2142 $cgi->a({-href
=> href
(action
=>"object", hash
=>$1),
2143 -class => "text"}, $1);
2149 # format marker of refs pointing to given object
2151 # the destination action is chosen based on object type and current context:
2152 # - for annotated tags, we choose the tag view unless it's the current view
2153 # already, in which case we go to shortlog view
2154 # - for other refs, we keep the current view if we're in history, shortlog or
2155 # log view, and select shortlog otherwise
2156 sub format_ref_marker
{
2157 my ($refs, $id) = @_;
2160 if (defined $refs->{$id}) {
2161 foreach my $ref (@{$refs->{$id}}) {
2162 # this code exploits the fact that non-lightweight tags are the
2163 # only indirect objects, and that they are the only objects for which
2164 # we want to use tag instead of shortlog as action
2165 my ($type, $name) = qw();
2166 my $indirect = ($ref =~ s/\^\{\}$//);
2167 # e.g. tags/v2.6.11 or heads/next
2168 if ($ref =~ m!^(.*?)s?/(.*)$!) {
2177 $class .= " indirect" if $indirect;
2179 my $dest_action = "shortlog";
2182 $dest_action = "tag" unless $action eq "tag";
2183 } elsif ($action =~ /^(history|(short)?log)$/) {
2184 $dest_action = $action;
2188 $dest .= "refs/" unless $ref =~ m
!^refs
/!;
2191 my $link = $cgi->a({
2193 action
=>$dest_action,
2195 )}, esc_html
($name));
2197 $markers .= " <span class=\"".esc_attr
($class)."\" title=\"".esc_attr
($ref)."\">" .
2203 return ' <span class="refs">'. $markers . '</span>';
2209 # format, perhaps shortened and with markers, title line
2210 sub format_subject_html
{
2211 my ($long, $short, $href, $extra) = @_;
2212 $extra = '' unless defined($extra);
2214 if (length($short) < length($long)) {
2215 $long =~ s/[[:cntrl:]]/?/g;
2216 return $cgi->a({-href
=> $href, -class => "list subject",
2217 -title
=> to_utf8
($long)},
2218 esc_html
($short)) . $extra;
2220 return $cgi->a({-href
=> $href, -class => "list subject"},
2221 esc_html
($long)) . $extra;
2225 # Rather than recomputing the url for an email multiple times, we cache it
2226 # after the first hit. This gives a visible benefit in views where the avatar
2227 # for the same email is used repeatedly (e.g. shortlog).
2228 # The cache is shared by all avatar engines (currently gravatar only), which
2229 # are free to use it as preferred. Since only one avatar engine is used for any
2230 # given page, there's no risk for cache conflicts.
2231 our %avatar_cache = ();
2233 # Compute the picon url for a given email, by using the picon search service over at
2234 # http://www.cs.indiana.edu/picons/search.html
2236 my $email = lc shift;
2237 if (!$avatar_cache{$email}) {
2238 my ($user, $domain) = split('@', $email);
2239 $avatar_cache{$email} =
2240 "//www.cs.indiana.edu/cgi-pub/kinzler/piconsearch.cgi/" .
2242 "users+domains+unknown/up/single";
2244 return $avatar_cache{$email};
2247 # Compute the gravatar url for a given email, if it's not in the cache already.
2248 # Gravatar stores only the part of the URL before the size, since that's the
2249 # one computationally more expensive. This also allows reuse of the cache for
2250 # different sizes (for this particular engine).
2252 my $email = lc shift;
2254 $avatar_cache{$email} ||=
2255 "//www.gravatar.com/avatar/" .
2256 md5_hex
($email) . "?s=";
2257 return $avatar_cache{$email} . $size;
2260 # Insert an avatar for the given $email at the given $size if the feature
2262 sub git_get_avatar
{
2263 my ($email, %opts) = @_;
2264 my $pre_white = ($opts{-pad_before
} ? " " : "");
2265 my $post_white = ($opts{-pad_after
} ? " " : "");
2266 $opts{-size
} ||= 'default';
2267 my $size = $avatar_size{$opts{-size
}} || $avatar_size{'default'};
2269 if ($git_avatar eq 'gravatar') {
2270 $url = gravatar_url
($email, $size);
2271 } elsif ($git_avatar eq 'picon') {
2272 $url = picon_url
($email);
2274 # Other providers can be added by extending the if chain, defining $url
2275 # as needed. If no variant puts something in $url, we assume avatars
2276 # are completely disabled/unavailable.
2279 "<img width=\"$size\" " .
2280 "class=\"avatar\" " .
2281 "src=\"".esc_url
($url)."\" " .
2289 sub format_search_author
{
2290 my ($author, $searchtype, $displaytext) = @_;
2291 my $have_search = gitweb_check_feature
('search');
2295 if ($searchtype eq 'author') {
2296 $performed = "authored";
2297 } elsif ($searchtype eq 'committer') {
2298 $performed = "committed";
2301 return $cgi->a({-href
=> href
(action
=>"search", hash
=>$hash,
2302 searchtext
=>$author,
2303 searchtype
=>$searchtype), class=>"list",
2304 title
=>"Search for commits $performed by $author"},
2308 return $displaytext;
2312 # format the author name of the given commit with the given tag
2313 # the author name is chopped and escaped according to the other
2314 # optional parameters (see chop_str).
2315 sub format_author_html
{
2318 my $author = chop_and_escape_str
($co->{'author_name'}, @_);
2319 return "<$tag class=\"author\">" .
2320 format_search_author
($co->{'author_name'}, "author",
2321 git_get_avatar
($co->{'author_email'}, -pad_after
=> 1) .
2326 # format git diff header line, i.e. "diff --(git|combined|cc) ..."
2327 sub format_git_diff_header_line
{
2329 my $diffinfo = shift;
2330 my ($from, $to) = @_;
2332 if ($diffinfo->{'nparents'}) {
2334 $line =~ s!^(diff (.*?) )"?.*$!$1!;
2335 if ($to->{'href'}) {
2336 $line .= $cgi->a({-href
=> $to->{'href'}, -class => "path"},
2337 esc_path
($to->{'file'}));
2338 } else { # file was deleted (no href)
2339 $line .= esc_path
($to->{'file'});
2343 $line =~ s!^(diff (.*?) )"?a/.*$!$1!;
2344 if ($from->{'href'}) {
2345 $line .= $cgi->a({-href
=> $from->{'href'}, -class => "path"},
2346 'a/' . esc_path
($from->{'file'}));
2347 } else { # file was added (no href)
2348 $line .= 'a/' . esc_path
($from->{'file'});
2351 if ($to->{'href'}) {
2352 $line .= $cgi->a({-href
=> $to->{'href'}, -class => "path"},
2353 'b/' . esc_path
($to->{'file'}));
2354 } else { # file was deleted
2355 $line .= 'b/' . esc_path
($to->{'file'});
2359 return "<div class=\"diff header\">$line</div>\n";
2362 # format extended diff header line, before patch itself
2363 sub format_extended_diff_header_line
{
2365 my $diffinfo = shift;
2366 my ($from, $to) = @_;
2369 if ($line =~ s!^((copy|rename) from ).*$!$1! && $from->{'href'}) {
2370 $line .= $cgi->a({-href
=>$from->{'href'}, -class=>"path"},
2371 esc_path
($from->{'file'}));
2373 if ($line =~ s!^((copy|rename) to ).*$!$1! && $to->{'href'}) {
2374 $line .= $cgi->a({-href
=>$to->{'href'}, -class=>"path"},
2375 esc_path
($to->{'file'}));
2377 # match single <mode>
2378 if ($line =~ m/\s(\d{6})$/) {
2379 $line .= '<span class="info"> (' .
2380 file_type_long
($1) .
2384 if ($line =~ oid_nlen_prefix_infix_regex
($sha1_len, "index ", ",") |
2385 $line =~ oid_nlen_prefix_infix_regex
($sha256_len, "index ", ",")) {
2386 # can match only for combined diff
2388 for (my $i = 0; $i < $diffinfo->{'nparents'}; $i++) {
2389 if ($from->{'href'}[$i]) {
2390 $line .= $cgi->a({-href
=>$from->{'href'}[$i],
2392 substr($diffinfo->{'from_id'}[$i],0,7));
2397 $line .= ',' if ($i < $diffinfo->{'nparents'} - 1);
2400 if ($to->{'href'}) {
2401 $line .= $cgi->a({-href
=>$to->{'href'}, -class=>"hash"},
2402 substr($diffinfo->{'to_id'},0,7));
2407 } elsif ($line =~ oid_nlen_prefix_infix_regex
($sha1_len, "index ", "..") |
2408 $line =~ oid_nlen_prefix_infix_regex
($sha256_len, "index ", "..")) {
2409 # can match only for ordinary diff
2410 my ($from_link, $to_link);
2411 if ($from->{'href'}) {
2412 $from_link = $cgi->a({-href
=>$from->{'href'}, -class=>"hash"},
2413 substr($diffinfo->{'from_id'},0,7));
2415 $from_link = '0' x
7;
2417 if ($to->{'href'}) {
2418 $to_link = $cgi->a({-href
=>$to->{'href'}, -class=>"hash"},
2419 substr($diffinfo->{'to_id'},0,7));
2423 my ($from_id, $to_id) = ($diffinfo->{'from_id'}, $diffinfo->{'to_id'});
2424 $line =~ s!$from_id\.\.$to_id!$from_link..$to_link!;
2427 return $line . "<br/>\n";
2430 # format from-file/to-file diff header
2431 sub format_diff_from_to_header
{
2432 my ($from_line, $to_line, $diffinfo, $from, $to, @parents) = @_;
2437 #assert($line =~ m/^---/) if DEBUG;
2438 # no extra formatting for "^--- /dev/null"
2439 if (! $diffinfo->{'nparents'}) {
2440 # ordinary (single parent) diff
2441 if ($line =~ m!^--- "?a/!) {
2442 if ($from->{'href'}) {
2444 $cgi->a({-href
=>$from->{'href'}, -class=>"path"},
2445 esc_path
($from->{'file'}));
2448 esc_path
($from->{'file'});
2451 $result .= qq
!<div
class="diff from_file">$line</div
>\n!;
2454 # combined diff (merge commit)
2455 for (my $i = 0; $i < $diffinfo->{'nparents'}; $i++) {
2456 if ($from->{'href'}[$i]) {
2458 $cgi->a({-href
=>href
(action
=>"blobdiff",
2459 hash_parent
=>$diffinfo->{'from_id'}[$i],
2460 hash_parent_base
=>$parents[$i],
2461 file_parent
=>$from->{'file'}[$i],
2462 hash
=>$diffinfo->{'to_id'},
2464 file_name
=>$to->{'file'}),
2466 -title
=>"diff" . ($i+1)},
2469 $cgi->a({-href
=>$from->{'href'}[$i], -class=>"path"},
2470 esc_path
($from->{'file'}[$i]));
2472 $line = '--- /dev/null';
2474 $result .= qq
!<div
class="diff from_file">$line</div
>\n!;
2479 #assert($line =~ m/^\+\+\+/) if DEBUG;
2480 # no extra formatting for "^+++ /dev/null"
2481 if ($line =~ m!^\+\+\+ "?b/!) {
2482 if ($to->{'href'}) {
2484 $cgi->a({-href
=>$to->{'href'}, -class=>"path"},
2485 esc_path
($to->{'file'}));
2488 esc_path
($to->{'file'});
2491 $result .= qq
!<div
class="diff to_file">$line</div
>\n!;
2496 # create note for patch simplified by combined diff
2497 sub format_diff_cc_simplified
{
2498 my ($diffinfo, @parents) = @_;
2501 $result .= "<div class=\"diff header\">" .
2503 if (!is_deleted
($diffinfo)) {
2504 $result .= $cgi->a({-href
=> href
(action
=>"blob",
2506 hash
=>$diffinfo->{'to_id'},
2507 file_name
=>$diffinfo->{'to_file'}),
2509 esc_path
($diffinfo->{'to_file'}));
2511 $result .= esc_path
($diffinfo->{'to_file'});
2513 $result .= "</div>\n" . # class="diff header"
2514 "<div class=\"diff nodifferences\">" .
2516 "</div>\n"; # class="diff nodifferences"
2521 sub diff_line_class
{
2522 my ($line, $from, $to) = @_;
2527 if ($from && $to && ref($from->{'href'}) eq "ARRAY") {
2528 $num_sign = scalar @{$from->{'href'}};
2531 my @diff_line_classifier = (
2532 { regexp
=> qr/^\@\@{$num_sign} /, class => "chunk_header"},
2533 { regexp
=> qr/^\\/, class => "incomplete" },
2534 { regexp
=> qr/^ {$num_sign}/, class => "ctx" },
2535 # classifier for context must come before classifier add/rem,
2536 # or we would have to use more complicated regexp, for example
2537 # qr/(?= {0,$m}\+)[+ ]{$num_sign}/, where $m = $num_sign - 1;
2538 { regexp
=> qr/^[+ ]{$num_sign}/, class => "add" },
2539 { regexp
=> qr/^[- ]{$num_sign}/, class => "rem" },
2541 for my $clsfy (@diff_line_classifier) {
2542 return $clsfy->{'class'}
2543 if ($line =~ $clsfy->{'regexp'});
2550 # assumes that $from and $to are defined and correctly filled,
2551 # and that $line holds a line of chunk header for unified diff
2552 sub format_unidiff_chunk_header
{
2553 my ($line, $from, $to) = @_;
2555 my ($from_text, $from_start, $from_lines, $to_text, $to_start, $to_lines, $section) =
2556 $line =~ m/^\@{2} (-(\d+)(?:,(\d+))?) (\+(\d+)(?:,(\d+))?) \@{2}(.*)$/;
2558 $from_lines = 0 unless defined $from_lines;
2559 $to_lines = 0 unless defined $to_lines;
2561 if ($from->{'href'}) {
2562 $from_text = $cgi->a({-href
=>"$from->{'href'}#l$from_start",
2563 -class=>"list"}, $from_text);
2565 if ($to->{'href'}) {
2566 $to_text = $cgi->a({-href
=>"$to->{'href'}#l$to_start",
2567 -class=>"list"}, $to_text);
2569 $line = "<span class=\"chunk_info\">@@ $from_text $to_text @@</span>" .
2570 "<span class=\"section\">" . esc_html
($section, -nbsp
=>1) . "</span>";
2574 # assumes that $from and $to are defined and correctly filled,
2575 # and that $line holds a line of chunk header for combined diff
2576 sub format_cc_diff_chunk_header
{
2577 my ($line, $from, $to) = @_;
2579 my ($prefix, $ranges, $section) = $line =~ m/^(\@+) (.*?) \@+(.*)$/;
2580 my (@from_text, @from_start, @from_nlines, $to_text, $to_start, $to_nlines);
2582 @from_text = split(' ', $ranges);
2583 for (my $i = 0; $i < @from_text; ++$i) {
2584 ($from_start[$i], $from_nlines[$i]) =
2585 (split(',', substr($from_text[$i], 1)), 0);
2588 $to_text = pop @from_text;
2589 $to_start = pop @from_start;
2590 $to_nlines = pop @from_nlines;
2592 $line = "<span class=\"chunk_info\">$prefix ";
2593 for (my $i = 0; $i < @from_text; ++$i) {
2594 if ($from->{'href'}[$i]) {
2595 $line .= $cgi->a({-href
=>"$from->{'href'}[$i]#l$from_start[$i]",
2596 -class=>"list"}, $from_text[$i]);
2598 $line .= $from_text[$i];
2602 if ($to->{'href'}) {
2603 $line .= $cgi->a({-href
=>"$to->{'href'}#l$to_start",
2604 -class=>"list"}, $to_text);
2608 $line .= " $prefix</span>" .
2609 "<span class=\"section\">" . esc_html
($section, -nbsp
=>1) . "</span>";
2613 # process patch (diff) line (not to be used for diff headers),
2614 # returning HTML-formatted (but not wrapped) line.
2615 # If the line is passed as a reference, it is treated as HTML and not
2617 sub format_diff_line
{
2618 my ($line, $diff_class, $from, $to) = @_;
2624 $line = untabify
($line);
2626 if ($from && $to && $line =~ m/^\@{2} /) {
2627 $line = format_unidiff_chunk_header
($line, $from, $to);
2628 } elsif ($from && $to && $line =~ m/^\@{3}/) {
2629 $line = format_cc_diff_chunk_header
($line, $from, $to);
2631 $line = esc_html
($line, -nbsp
=>1);
2635 my $diff_classes = "diff";
2636 $diff_classes .= " $diff_class" if ($diff_class);
2637 $line = "<div class=\"$diff_classes\">$line</div>\n";
2642 # Generates undef or something like "_snapshot_" or "snapshot (_tbz2_ _zip_)",
2643 # linked. Pass the hash of the tree/commit to snapshot.
2644 sub format_snapshot_links
{
2646 my $num_fmts = @snapshot_fmts;
2647 if ($num_fmts > 1) {
2648 # A parenthesized list of links bearing format names.
2649 # e.g. "snapshot (_tar.gz_ _zip_)"
2650 return "snapshot (" . join(' ', map
2657 }, $known_snapshot_formats{$_}{'display'})
2658 , @snapshot_fmts) . ")";
2659 } elsif ($num_fmts == 1) {
2660 # A single "snapshot" link whose tooltip bears the format name.
2662 my ($fmt) = @snapshot_fmts;
2668 snapshot_format
=>$fmt
2670 -title
=> "in format: $known_snapshot_formats{$fmt}{'display'}"
2672 } else { # $num_fmts == 0
2677 ## ......................................................................
2678 ## functions returning values to be passed, perhaps after some
2679 ## transformation, to other functions; e.g. returning arguments to href()
2681 # returns hash to be passed to href to generate gitweb URL
2682 # in -title key it returns description of link
2684 my $format = shift || 'Atom';
2685 my %res = (action
=> lc($format));
2686 my $matched_ref = 0;
2688 # feed links are possible only for project views
2689 return unless (defined $project);
2690 # some views should link to OPML, or to generic project feed,
2691 # or don't have specific feed yet (so they should use generic)
2692 return if (!$action || $action =~ /^(?:tags|heads|forks|tag|search)$/x);
2695 # branches refs uses 'refs/' + $get_branch_refs()[x] + '/' prefix
2696 # (fullname) to differentiate from tag links; this also makes
2697 # possible to detect branch links
2698 for my $ref (get_branch_refs
()) {
2699 if ((defined $hash_base && $hash_base =~ m!^refs/\Q$ref\E/(.*)$!) ||
2700 (defined $hash && $hash =~ m!^refs/\Q$ref\E/(.*)$!)) {
2702 $matched_ref = $ref;
2706 # find log type for feed description (title)
2708 if (defined $file_name) {
2709 $type = "history of $file_name";
2710 $type .= "/" if ($action eq 'tree');
2711 $type .= " on '$branch'" if (defined $branch);
2713 $type = "log of $branch" if (defined $branch);
2716 $res{-title
} = $type;
2717 $res{'hash'} = (defined $branch ? "refs/$matched_ref/$branch" : undef);
2718 $res{'file_name'} = $file_name;
2723 ## ----------------------------------------------------------------------
2724 ## git utility subroutines, invoking git commands
2726 # returns path to the core git executable and the --git-dir parameter as list
2728 $number_of_git_cmds++;
2729 return $GIT, '--git-dir='.$git_dir;
2732 # quote the given arguments for passing them to the shell
2733 # quote_command("command", "arg 1", "arg with ' and ! characters")
2734 # => "'command' 'arg 1' 'arg with '\'' and '\!' characters'"
2735 # Try to avoid using this function wherever possible.
2738 map { my $a = $_ =~ s/(['!])/'\\$1'/gr; "'$a'" } @_ );
2741 # get HEAD ref of given project as hash
2742 sub git_get_head_hash
{
2743 return git_get_full_hash
(shift, 'HEAD');
2746 sub git_get_full_hash
{
2747 return git_get_hash
(@_);
2750 sub git_get_short_hash
{
2751 return git_get_hash
(@_, '--short=7');
2755 my ($project, $hash, @options) = @_;
2756 my $o_git_dir = $git_dir;
2758 $git_dir = "$projectroot/$project";
2759 if (open my $fd, '-|', git_cmd
(), 'rev-parse',
2760 '--verify', '-q', @options, $hash) {
2762 chomp $retval if defined $retval;
2765 if (defined $o_git_dir) {
2766 $git_dir = $o_git_dir;
2771 # get type of given object
2775 open my $fd, "-|", git_cmd
(), "cat-file", '-t', $hash or return;
2777 close $fd or return;
2782 # repository configuration
2783 our $config_file = '';
2786 # store multiple values for single key as anonymous array reference
2787 # single values stored directly in the hash, not as [ <value> ]
2788 sub hash_set_multi
{
2789 my ($hash, $key, $value) = @_;
2791 if (!exists $hash->{$key}) {
2792 $hash->{$key} = $value;
2793 } elsif (!ref $hash->{$key}) {
2794 $hash->{$key} = [ $hash->{$key}, $value ];
2796 push @{$hash->{$key}}, $value;
2800 # return hash of git project configuration
2801 # optionally limited to some section, e.g. 'gitweb'
2802 sub git_parse_project_config
{
2803 my $section_regexp = shift;
2808 open my $fh, "-|", git_cmd
(), "config", '-z', '-l',
2811 while (my $keyval = <$fh>) {
2813 my ($key, $value) = split(/\n/, $keyval, 2);
2815 hash_set_multi
(\
%config, $key, $value)
2816 if (!defined $section_regexp || $key =~ /^(?:$section_regexp)\./o);
2823 # convert config value to boolean: 'true' or 'false'
2824 # no value, number > 0, 'true' and 'yes' values are true
2825 # rest of values are treated as false (never as error)
2826 sub config_to_bool
{
2829 return 1 if !defined $val; # section.key
2831 # strip leading and trailing whitespace
2835 return (($val =~ /^\d+$/ && $val) || # section.key = 1
2836 ($val =~ /^(?:true|yes)$/i)); # section.key = true
2839 # convert config value to simple decimal number
2840 # an optional value suffix of 'k', 'm', or 'g' will cause the value
2841 # to be multiplied by 1024, 1048576, or 1073741824
2845 # strip leading and trailing whitespace
2849 if (my ($num, $unit) = ($val =~ /^([0-9]*)([kmg])$/i)) {
2851 # unknown unit is treated as 1
2852 return $num * ($unit eq 'g' ? 1073741824 :
2853 $unit eq 'm' ? 1048576 :
2854 $unit eq 'k' ? 1024 : 1);
2859 # convert config value to array reference, if needed
2860 sub config_to_multi
{
2863 return ref($val) ? $val : (defined($val) ? [ $val ] : []);
2866 sub git_get_project_config
{
2867 my ($key, $type) = @_;
2869 return unless defined $git_dir;
2872 return unless ($key);
2873 # only subsection, if exists, is case sensitive,
2874 # and not lowercased by 'git config -z -l'
2875 if (my ($hi, $mi, $lo) = ($key =~ /^([^.]*)\.(.*)\.([^.]*)$/)) {
2877 $key = join(".", lc($hi), $mi, lc($lo));
2878 return if ($lo =~ /\W/ || $hi =~ /\W/);
2882 return if ($key =~ /\W/);
2884 $key =~ s/^gitweb\.//;
2887 if (defined $type) {
2890 unless ($type eq 'bool' || $type eq 'int');
2894 if (!defined $config_file ||
2895 $config_file ne "$git_dir/config") {
2896 %config = git_parse_project_config
('gitweb');
2897 $config_file = "$git_dir/config";
2900 # check if config variable (key) exists
2901 return unless exists $config{"gitweb.$key"};
2904 if (!defined $type) {
2905 return $config{"gitweb.$key"};
2906 } elsif ($type eq 'bool') {
2907 # backward compatibility: 'git config --bool' returns true/false
2908 return config_to_bool
($config{"gitweb.$key"}) ? 'true' : 'false';
2909 } elsif ($type eq 'int') {
2910 return config_to_int
($config{"gitweb.$key"});
2912 return $config{"gitweb.$key"};
2915 # get hash of given path at given ref
2916 sub git_get_hash_by_path
{
2918 my $path = shift || return undef;
2923 open my $fd, "-|", git_cmd
(), "ls-tree", $base, "--", $path
2924 or die_error
(500, "Open git-ls-tree failed");
2926 close $fd or return undef;
2928 if (!defined $line) {
2929 # there is no tree or hash given by $path at $base
2933 #'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'
2934 $line =~ m/^([0-9]+) (.+) ($oid_regex)\t/;
2935 if (defined $type && $type ne $2) {
2936 # type doesn't match
2942 # get path of entry with given hash at given tree-ish (ref)
2943 # used to get 'from' filename for combined diff (merge commit) for renames
2944 sub git_get_path_by_hash
{
2945 my $base = shift || return;
2946 my $hash = shift || return;
2950 open my $fd, "-|", git_cmd
(), "ls-tree", '-r', '-t', '-z', $base
2952 while (my $line = <$fd>) {
2955 #'040000 tree 595596a6a9117ddba9fe379b6b012b558bac8423 gitweb'
2956 #'100644 blob e02e90f0429be0d2a69b76571101f20b8f75530f gitweb/README'
2957 if ($line =~ m/(?:[0-9]+) (?:.+) $hash\t(.+)$/) {
2966 ## ......................................................................
2967 ## git utility functions, directly accessing git repository
2969 # get the value of config variable either from file named as the variable
2970 # itself in the repository ($GIT_DIR/$name file), or from gitweb.$name
2971 # configuration variable in the repository config file.
2972 sub git_get_file_or_project_config
{
2973 my ($path, $name) = @_;
2975 $git_dir = "$projectroot/$path";
2976 open my $fd, '<', "$git_dir/$name"
2977 or return git_get_project_config
($name);
2980 if (defined $conf) {
2986 sub git_get_project_description
{
2988 return git_get_file_or_project_config
($path, 'description');
2991 sub git_get_project_category
{
2993 return git_get_file_or_project_config
($path, 'category');
2997 # supported formats:
2998 # * $GIT_DIR/ctags/<tagname> file (in 'ctags' subdirectory)
2999 # - if its contents is a number, use it as tag weight,
3000 # - otherwise add a tag with weight 1
3001 # * $GIT_DIR/ctags file, each line is a tag (with weight 1)
3002 # the same value multiple times increases tag weight
3003 # * `gitweb.ctag' multi-valued repo config variable
3004 sub git_get_project_ctags
{
3005 my $project = shift;
3008 $git_dir = "$projectroot/$project";
3009 if (opendir my $dh, "$git_dir/ctags") {
3010 my @files = grep { -f
$_ } map { "$git_dir/ctags/$_" } readdir($dh);
3011 foreach my $tagfile (@files) {
3012 open my $ct, '<', $tagfile
3018 (my $ctag = $tagfile) =~ s
#.*/##;
3019 if ($val =~ /^\d+$/) {
3020 $ctags->{$ctag} = $val;
3022 $ctags->{$ctag} = 1;
3027 } elsif (open my $fh, '<', "$git_dir/ctags") {
3028 while (my $line = <$fh>) {
3030 $ctags->{$line}++ if $line;
3035 my $taglist = config_to_multi
(git_get_project_config
('ctag'));
3036 foreach my $tag (@$taglist) {
3044 # return hash, where keys are content tags ('ctags'),
3045 # and values are sum of weights of given tag in every project
3046 sub git_gather_all_ctags
{
3047 my $projects = shift;
3050 foreach my $p (@$projects) {
3051 foreach my $ct (keys %{$p->{'ctags'}}) {
3052 $ctags->{$ct} += $p->{'ctags'}->{$ct};
3059 sub git_populate_project_tagcloud
{
3062 # First, merge different-cased tags; tags vote on casing
3064 foreach (keys %$ctags) {
3065 $ctags_lc{lc $_}->{count
} += $ctags->{$_};
3066 if (not $ctags_lc{lc $_}->{topcount
}
3067 or $ctags_lc{lc $_}->{topcount
} < $ctags->{$_}) {
3068 $ctags_lc{lc $_}->{topcount
} = $ctags->{$_};
3069 $ctags_lc{lc $_}->{topname
} = $_;
3074 my $matched = $input_params{'ctag'};
3075 if (eval { require HTML
::TagCloud
; 1; }) {
3076 $cloud = HTML
::TagCloud-
>new;
3077 foreach my $ctag (sort keys %ctags_lc) {
3078 # Pad the title with spaces so that the cloud looks
3080 my $title = esc_html
($ctags_lc{$ctag}->{topname
});
3081 $title =~ s/ / /g;
3082 $title =~ s/^/ /g;
3083 $title =~ s/$/ /g;
3084 if (defined $matched && $matched eq $ctag) {
3085 $title = qq(<span class="match">$title</span>);
3087 $cloud->add($title, href
(project
=>undef, ctag
=>$ctag),
3088 $ctags_lc{$ctag}->{count
});
3092 foreach my $ctag (keys %ctags_lc) {
3093 my $title = esc_html
($ctags_lc{$ctag}->{topname
}, -nbsp
=>1);
3094 if (defined $matched && $matched eq $ctag) {
3095 $title = qq(<span class="match">$title</span>);
3097 $cloud->{$ctag}{count
} = $ctags_lc{$ctag}->{count
};
3098 $cloud->{$ctag}{ctag
} =
3099 $cgi->a({-href
=>href
(project
=>undef, ctag
=>$ctag)}, $title);
3105 sub git_show_project_tagcloud
{
3106 my ($cloud, $count) = @_;
3107 if (ref $cloud eq 'HTML::TagCloud') {
3108 return $cloud->html_and_css($count);
3110 my @tags = sort { $cloud->{$a}->{'count'} <=> $cloud->{$b}->{'count'} } keys %$cloud;
3112 '<div id="htmltagcloud"'.($project ? '' : ' align="center"').'>' .
3114 $cloud->{$_}->{'ctag'}
3115 } splice(@tags, 0, $count)) .
3120 sub git_get_project_url_list
{
3123 $git_dir = "$projectroot/$path";
3124 open my $fd, '<', "$git_dir/cloneurl"
3125 or return wantarray ?
3126 @{ config_to_multi
(git_get_project_config
('url')) } :
3127 config_to_multi
(git_get_project_config
('url'));
3128 my @git_project_url_list = map { chomp; $_ } <$fd>;
3131 return wantarray ? @git_project_url_list : \
@git_project_url_list;
3134 sub git_get_projects_list
{
3135 my $filter = shift || '';
3136 my $paranoid = shift;
3139 if (-d
$projects_list) {
3140 # search in directory
3141 my $dir = $projects_list;
3142 # remove the trailing "/"
3144 my $pfxlen = length("$dir");
3145 my $pfxdepth = ($dir =~ tr!/!!);
3146 # when filtering, search only given subdirectory
3147 if ($filter && !$paranoid) {
3153 follow_fast
=> 1, # follow symbolic links
3154 follow_skip
=> 2, # ignore duplicates
3155 dangling_symlinks
=> 0, # ignore dangling symlinks, silently
3158 our $project_maxdepth;
3160 # skip project-list toplevel, if we get it.
3161 return if (m!^[/.]$!);
3162 # only directories can be git repositories
3163 return unless (-d
$_);
3164 # need search permission
3165 return unless (-x
$_);
3166 # don't traverse too deep (Find is super slow on os x)
3167 # $project_maxdepth excludes depth of $projectroot
3168 if (($File::Find
::name
=~ tr!/!!) - $pfxdepth > $project_maxdepth) {
3169 $File::Find
::prune
= 1;
3173 my $path = substr($File::Find
::name
, $pfxlen + 1);
3174 # paranoidly only filter here
3175 if ($paranoid && $filter && $path !~ m!^\Q$filter\E/!) {
3178 # we check related file in $projectroot
3179 if (check_export_ok
("$projectroot/$path")) {
3180 push @list, { path
=> $path };
3181 $File::Find
::prune
= 1;
3186 } elsif (-f
$projects_list) {
3187 # read from file(url-encoded):
3188 # 'git%2Fgit.git Linus+Torvalds'
3189 # 'libs%2Fklibc%2Fklibc.git H.+Peter+Anvin'
3190 # 'linux%2Fhotplug%2Fudev.git Greg+Kroah-Hartman'
3191 open my $fd, '<', $projects_list or return;
3193 while (my $line = <$fd>) {
3195 my ($path, $owner) = split ' ', $line;
3196 $path = unescape
($path);
3197 $owner = unescape
($owner);
3198 if (!defined $path) {
3201 # if $filter is rpovided, check if $path begins with $filter
3202 if ($filter && $path !~ m!^\Q$filter\E/!) {
3205 if (check_export_ok
("$projectroot/$path")) {
3210 $pr->{'owner'} = to_utf8
($owner);
3220 # written with help of Tree::Trie module (Perl Artistic License, GPL compatible)
3221 # as side effects it sets 'forks' field to list of forks for forked projects
3222 sub filter_forks_from_projects_list
{
3223 my $projects = shift;
3225 my %trie; # prefix tree of directories (path components)
3226 # generate trie out of those directories that might contain forks
3227 foreach my $pr (@$projects) {
3228 my $path = $pr->{'path'};
3229 $path =~ s/\.git$//; # forks of 'repo.git' are in 'repo/' directory
3230 next if ($path =~ m!/$!); # skip non-bare repositories, e.g. 'repo/.git'
3231 next unless ($path); # skip '.git' repository: tests, git-instaweb
3232 next unless (-d
"$projectroot/$path"); # containing directory exists
3233 $pr->{'forks'} = []; # there can be 0 or more forks of project
3236 my @dirs = split('/', $path);
3237 # walk the trie, until either runs out of components or out of trie
3239 while (scalar @dirs &&
3240 exists($ref->{$dirs[0]})) {
3241 $ref = $ref->{shift @dirs};
3243 # create rest of trie structure from rest of components
3244 foreach my $dir (@dirs) {
3245 $ref = $ref->{$dir} = {};
3247 # create end marker, store $pr as a data
3248 $ref->{''} = $pr if (!exists $ref->{''});
3251 # filter out forks, by finding shortest prefix match for paths
3254 foreach my $pr (@$projects) {
3258 foreach my $dir (split('/', $pr->{'path'})) {
3259 if (exists $ref->{''}) {
3260 # found [shortest] prefix, is a fork - skip it
3261 push @{$ref->{''}{'forks'}}, $pr;
3264 if (!exists $ref->{$dir}) {
3265 # not in trie, cannot have prefix, not a fork
3266 push @filtered, $pr;
3269 # If the dir is there, we just walk one step down the trie.
3270 $ref = $ref->{$dir};
3272 # we ran out of trie
3273 # (shouldn't happen: it's either no match, or end marker)
3274 push @filtered, $pr;
3280 # note: fill_project_list_info must be run first,
3281 # for 'descr_long' and 'ctags' to be filled
3282 sub search_projects_list
{
3283 my ($projlist, %opts) = @_;
3284 my $tagfilter = $opts{'tagfilter'};
3285 my $search_re = $opts{'search_regexp'};
3288 unless ($tagfilter || $search_re);
3290 # searching projects require filling to be run before it;
3291 fill_project_list_info
($projlist,
3292 $tagfilter ? 'ctags' : (),
3293 $search_re ? ('path', 'descr') : ());
3296 foreach my $pr (@$projlist) {
3299 next unless ref($pr->{'ctags'}) eq 'HASH';
3301 grep { lc($_) eq lc($tagfilter) } keys %{$pr->{'ctags'}};
3306 $pr->{'path'} =~ /$search_re/ ||
3307 $pr->{'descr_long'} =~ /$search_re/;
3310 push @projects, $pr;
3316 our $gitweb_project_owner = undef;
3317 sub git_get_project_list_from_file
{
3319 return if (defined $gitweb_project_owner);
3321 $gitweb_project_owner = {};
3322 # read from file (url-encoded):
3323 # 'git%2Fgit.git Linus+Torvalds'
3324 # 'libs%2Fklibc%2Fklibc.git H.+Peter+Anvin'
3325 # 'linux%2Fhotplug%2Fudev.git Greg+Kroah-Hartman'
3326 if (-f
$projects_list) {
3327 open(my $fd, '<', $projects_list);
3328 while (my $line = <$fd>) {
3330 my ($pr, $ow) = split ' ', $line;
3331 $pr = unescape
($pr);
3332 $ow = unescape
($ow);
3333 $gitweb_project_owner->{$pr} = to_utf8
($ow);
3339 sub git_get_project_owner
{
3340 my $project = shift;
3343 return undef unless $project;
3344 $git_dir = "$projectroot/$project";
3346 if (!defined $gitweb_project_owner) {
3347 git_get_project_list_from_file
();
3350 if (exists $gitweb_project_owner->{$project}) {
3351 $owner = $gitweb_project_owner->{$project};
3353 if (!defined $owner){
3354 $owner = git_get_project_config
('owner');
3356 if (!defined $owner) {
3357 $owner = get_file_owner
("$git_dir");
3363 sub git_get_last_activity
{
3367 $git_dir = "$projectroot/$path";
3368 open($fd, "-|", git_cmd
(), 'for-each-ref',
3369 '--format=%(committer)',
3370 '--sort=-committerdate',
3372 map { "refs/$_" } get_branch_refs
()) or return;
3373 my $most_recent = <$fd>;
3374 close $fd or return;
3375 if (defined $most_recent &&
3376 $most_recent =~ / (\d+) [-+][01]\d\d\d$/) {
3378 my $age = time - $timestamp;
3379 return ($age, age_string
($age));
3381 return (undef, undef);
3384 # Implementation note: when a single remote is wanted, we cannot use 'git
3385 # remote show -n' because that command always work (assuming it's a remote URL
3386 # if it's not defined), and we cannot use 'git remote show' because that would
3387 # try to make a network roundtrip. So the only way to find if that particular
3388 # remote is defined is to walk the list provided by 'git remote -v' and stop if
3389 # and when we find what we want.
3390 sub git_get_remotes_list
{
3394 open my $fd, '-|' , git_cmd
(), 'remote', '-v';
3396 while (my $remote = <$fd>) {
3398 $remote =~ s!\t(.*?)\s+\((\w+)\)$!!;
3399 next if $wanted and not $remote eq $wanted;
3400 my ($url, $key) = ($1, $2);
3402 $remotes{$remote} ||= { 'heads' => () };
3403 $remotes{$remote}{$key} = $url;
3405 close $fd or return;
3406 return wantarray ? %remotes : \
%remotes;
3409 # Takes a hash of remotes as first parameter and fills it by adding the
3410 # available remote heads for each of the indicated remotes.
3411 sub fill_remote_heads
{
3412 my $remotes = shift;
3413 my @heads = map { "remotes/$_" } keys %$remotes;
3414 my @remoteheads = git_get_heads_list
(undef, @heads);
3415 foreach my $remote (keys %$remotes) {
3416 $remotes->{$remote}{'heads'} = [ grep {
3417 $_->{'name'} =~ s!^$remote/!!
3422 sub git_get_references
{
3423 my $type = shift || "";
3425 # 5dc01c595e6c6ec9ccda4f6f69c131c0dd945f8c refs/tags/v2.6.11
3426 # c39ae07f393806ccf406ef966e9a15afc43cc36a refs/tags/v2.6.11^{}
3427 open my $fd, "-|", git_cmd
(), "show-ref", "--dereference",
3428 ($type ? ("--", "refs/$type") : ()) # use -- <pattern> if $type
3431 while (my $line = <$fd>) {
3433 if ($line =~ m!^($oid_regex)\srefs/($type.*)$!) {
3434 if (defined $refs{$1}) {
3435 push @{$refs{$1}}, $2;
3441 close $fd or return;
3445 sub git_get_rev_name_tags
{
3446 my $hash = shift || return undef;
3448 open my $fd, "-|", git_cmd
(), "name-rev", "--tags", $hash
3450 my $name_rev = <$fd>;
3453 if ($name_rev =~ m
|^$hash tags
/(.*)$|) {
3456 # catches also '$hash undefined' output
3461 ## ----------------------------------------------------------------------
3462 ## parse to hash functions
3466 my $tz = shift || "-0000";
3469 my @months = ("Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec");
3470 my @days = ("Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat");
3471 my ($sec, $min, $hour, $mday, $mon, $year, $wday, $yday) = gmtime($epoch);
3472 $date{'hour'} = $hour;
3473 $date{'minute'} = $min;
3474 $date{'mday'} = $mday;
3475 $date{'day'} = $days[$wday];
3476 $date{'month'} = $months[$mon];
3477 $date{'rfc2822'} = sprintf "%s, %d %s %4d %02d:%02d:%02d +0000",
3478 $days[$wday], $mday, $months[$mon], 1900+$year, $hour ,$min, $sec;
3479 $date{'mday-time'} = sprintf "%d %s %02d:%02d",
3480 $mday, $months[$mon], $hour ,$min;
3481 $date{'iso-8601'} = sprintf "%04d-%02d-%02dT%02d:%02d:%02dZ",
3482 1900+$year, 1+$mon, $mday, $hour ,$min, $sec;
3484 my ($tz_sign, $tz_hour, $tz_min) =
3485 ($tz =~ m/^([-+])(\d\d)(\d\d)$/);
3486 $tz_sign = ($tz_sign eq '-' ? -1 : +1);
3487 my $local = $epoch + $tz_sign*((($tz_hour*60) + $tz_min)*60);
3488 ($sec, $min, $hour, $mday, $mon, $year, $wday, $yday) = gmtime($local);
3489 $date{'hour_local'} = $hour;
3490 $date{'minute_local'} = $min;
3491 $date{'tz_local'} = $tz;
3492 $date{'iso-tz'} = sprintf("%04d-%02d-%02d %02d:%02d:%02d %s",
3493 1900+$year, $mon+1, $mday,
3494 $hour, $min, $sec, $tz);
3498 sub hide_mailaddrs_if_private
{
3500 return $line unless gitweb_check_feature
('email-privacy');
3501 $line =~ s/<[^@>]+@[^>]+>/<redacted>/g;
3510 open my $fd, "-|", git_cmd
(), "cat-file", "tag", $tag_id or return;
3511 $tag{'id'} = $tag_id;
3512 while (my $line = <$fd>) {
3514 if ($line =~ m/^object ($oid_regex)$/) {
3515 $tag{'object'} = $1;
3516 } elsif ($line =~ m/^type (.+)$/) {
3518 } elsif ($line =~ m/^tag (.+)$/) {
3520 } elsif ($line =~ m/^tagger (.*) ([0-9]+) (.*)$/) {
3521 $tag{'author'} = hide_mailaddrs_if_private
($1);
3522 $tag{'author_epoch'} = $2;
3523 $tag{'author_tz'} = $3;
3524 if ($tag{'author'} =~ m/^([^<]+) <([^>]*)>/) {
3525 $tag{'author_name'} = $1;
3526 $tag{'author_email'} = $2;
3528 $tag{'author_name'} = $tag{'author'};
3530 } elsif ($line =~ m/--BEGIN/) {
3531 push @comment, $line;
3533 } elsif ($line eq "") {
3537 push @comment, <$fd>;
3538 $tag{'comment'} = \
@comment;
3539 close $fd or return;
3540 if (!defined $tag{'name'}) {
3546 sub parse_commit_text
{
3547 my ($commit_text, $withparents) = @_;
3548 my @commit_lines = split '\n', $commit_text;
3551 pop @commit_lines; # Remove '\0'
3553 if (! @commit_lines) {
3557 my $header = shift @commit_lines;
3558 if ($header !~ m/^$oid_regex/) {
3561 ($co{'id'}, my @parents) = split ' ', $header;
3562 while (my $line = shift @commit_lines) {
3563 last if $line eq "\n";
3564 if ($line =~ m/^tree ($oid_regex)$/) {
3566 } elsif ((!defined $withparents) && ($line =~ m/^parent ($oid_regex)$/)) {
3568 } elsif ($line =~ m/^author (.*) ([0-9]+) (.*)$/) {
3569 $co{'author'} = hide_mailaddrs_if_private
(to_utf8
($1));
3570 $co{'author_epoch'} = $2;
3571 $co{'author_tz'} = $3;
3572 if ($co{'author'} =~ m/^([^<]+) <([^>]*)>/) {
3573 $co{'author_name'} = $1;
3574 $co{'author_email'} = $2;
3576 $co{'author_name'} = $co{'author'};
3578 } elsif ($line =~ m/^committer (.*) ([0-9]+) (.*)$/) {
3579 $co{'committer'} = hide_mailaddrs_if_private
(to_utf8
($1));
3580 $co{'committer_epoch'} = $2;
3581 $co{'committer_tz'} = $3;
3582 if ($co{'committer'} =~ m/^([^<]+) <([^>]*)>/) {
3583 $co{'committer_name'} = $1;
3584 $co{'committer_email'} = $2;
3586 $co{'committer_name'} = $co{'committer'};
3590 if (!defined $co{'tree'}) {
3593 $co{'parents'} = \
@parents;
3594 $co{'parent'} = $parents[0];
3596 foreach my $title (@commit_lines) {
3599 $co{'title'} = chop_str
($title, 80, 5);
3600 $co{'title_short'} = chop_str
($title, 50, 5);
3604 if (! defined $co{'title'} || $co{'title'} eq "") {
3605 $co{'title'} = $co{'title_short'} = '(no commit message)';
3607 # remove added spaces, redact e-mail addresses if applicable.
3608 foreach my $line (@commit_lines) {
3610 $line = hide_mailaddrs_if_private
($line);
3612 $co{'comment'} = \
@commit_lines;
3614 my $age = time - $co{'committer_epoch'};
3616 $co{'age_string'} = age_string
($age);
3617 my ($sec, $min, $hour, $mday, $mon, $year, $wday, $yday) = gmtime($co{'committer_epoch'});
3618 if ($age > 60*60*24*7*2) {
3619 $co{'age_string_date'} = sprintf "%4i-%02u-%02i", 1900 + $year, $mon+1, $mday;
3620 $co{'age_string_age'} = $co{'age_string'};
3622 $co{'age_string_date'} = $co{'age_string'};
3623 $co{'age_string_age'} = sprintf "%4i-%02u-%02i", 1900 + $year, $mon+1, $mday;
3629 my ($commit_id) = @_;
3634 open my $fd, "-|", git_cmd
(), "rev-list",
3640 or die_error
(500, "Open git-rev-list failed");
3641 %co = parse_commit_text
(<$fd>, 1);
3648 my ($commit_id, $maxcount, $skip, $filename, @args) = @_;
3656 open my $fd, "-|", git_cmd
(), "rev-list",
3659 ("--max-count=" . $maxcount),
3660 ("--skip=" . $skip),
3664 ($filename ? ($filename) : ())
3665 or die_error
(500, "Open git-rev-list failed");
3666 while (my $line = <$fd>) {
3667 my %co = parse_commit_text
($line);
3672 return wantarray ? @cos : \
@cos;
3675 # parse line of git-diff-tree "raw" output
3676 sub parse_difftree_raw_line
{
3680 # ':100644 100644 03b218260e99b78c6df0ed378e59ed9205ccc96d 3b93d5e7cc7f7dd4ebed13a5cc1a4ad976fc94d8 M ls-files.c'
3681 # ':100644 100644 7f9281985086971d3877aca27704f2aaf9c448ce bc190ebc71bbd923f2b728e505408f5e54bd073a M rev-tree.c'
3682 if ($line =~ m/^:([0-7]{6}) ([0-7]{6}) ($oid_regex) ($oid_regex) (.)([0-9]{0,3})\t(.*)$/) {
3683 $res{'from_mode'} = $1;
3684 $res{'to_mode'} = $2;
3685 $res{'from_id'} = $3;
3687 $res{'status'} = $5;
3688 $res{'similarity'} = $6;
3689 if ($res{'status'} eq 'R' || $res{'status'} eq 'C') { # renamed or copied
3690 ($res{'from_file'}, $res{'to_file'}) = map { unquote
($_) } split("\t", $7);
3692 $res{'from_file'} = $res{'to_file'} = $res{'file'} = unquote
($7);
3695 # '::100755 100755 100755 60e79ca1b01bc8b057abe17ddab484699a7f5fdb 94067cc5f73388f33722d52ae02f44692bc07490 94067cc5f73388f33722d52ae02f44692bc07490 MR git-gui/git-gui.sh'
3696 # combined diff (for merge commit)
3697 elsif ($line =~ s/^(::+)((?:[0-7]{6} )+)((?:$oid_regex )+)([a-zA-Z]+)\t(.*)$//) {
3698 $res{'nparents'} = length($1);
3699 $res{'from_mode'} = [ split(' ', $2) ];
3700 $res{'to_mode'} = pop @{$res{'from_mode'}};
3701 $res{'from_id'} = [ split(' ', $3) ];
3702 $res{'to_id'} = pop @{$res{'from_id'}};
3703 $res{'status'} = [ split('', $4) ];
3704 $res{'to_file'} = unquote
($5);
3706 # 'c512b523472485aef4fff9e57b229d9d243c967f'
3707 elsif ($line =~ m/^($oid_regex)$/) {
3708 $res{'commit'} = $1;
3711 return wantarray ? %res : \
%res;
3714 # wrapper: return parsed line of git-diff-tree "raw" output
3715 # (the argument might be raw line, or parsed info)
3716 sub parsed_difftree_line
{
3717 my $line_or_ref = shift;
3719 if (ref($line_or_ref) eq "HASH") {
3720 # pre-parsed (or generated by hand)
3721 return $line_or_ref;
3723 return parse_difftree_raw_line
($line_or_ref);
3727 # parse line of git-ls-tree output
3728 sub parse_ls_tree_line
{
3734 #'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa 16717 panic.c'
3735 $line =~ m/^([0-9]+) (.+) ($oid_regex) +(-|[0-9]+)\t(.+)$/s;
3740 $res{'size'} = human_readable_bytes
($4);
3744 $res{'name'} = unquote
($5);
3747 #'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'
3748 $line =~ m/^([0-9]+) (.+) ($oid_regex)\t(.+)$/s;
3756 $res{'name'} = unquote
($4);
3760 return wantarray ? %res : \
%res;
3763 # generates _two_ hashes, references to which are passed as 2 and 3 argument
3764 sub parse_from_to_diffinfo
{
3765 my ($diffinfo, $from, $to, @parents) = @_;
3767 if ($diffinfo->{'nparents'}) {
3769 $from->{'file'} = [];
3770 $from->{'href'} = [];
3771 fill_from_file_info
($diffinfo, @parents)
3772 unless exists $diffinfo->{'from_file'};
3773 for (my $i = 0; $i < $diffinfo->{'nparents'}; $i++) {
3774 $from->{'file'}[$i] =
3775 defined $diffinfo->{'from_file'}[$i] ?
3776 $diffinfo->{'from_file'}[$i] :
3777 $diffinfo->{'to_file'};
3778 if ($diffinfo->{'status'}[$i] ne "A") { # not new (added) file
3779 $from->{'href'}[$i] = href
(action
=>"blob",
3780 hash_base
=>$parents[$i],
3781 hash
=>$diffinfo->{'from_id'}[$i],
3782 file_name
=>$from->{'file'}[$i]);
3784 $from->{'href'}[$i] = undef;
3788 # ordinary (not combined) diff
3789 $from->{'file'} = $diffinfo->{'from_file'};
3790 if ($diffinfo->{'status'} ne "A") { # not new (added) file
3791 $from->{'href'} = href
(action
=>"blob", hash_base
=>$hash_parent,
3792 hash
=>$diffinfo->{'from_id'},
3793 file_name
=>$from->{'file'});
3795 delete $from->{'href'};
3799 $to->{'file'} = $diffinfo->{'to_file'};
3800 if (!is_deleted
($diffinfo)) { # file exists in result
3801 $to->{'href'} = href
(action
=>"blob", hash_base
=>$hash,
3802 hash
=>$diffinfo->{'to_id'},
3803 file_name
=>$to->{'file'});
3805 delete $to->{'href'};
3809 ## ......................................................................
3810 ## parse to array of hashes functions
3812 sub git_get_heads_list
{
3813 my ($limit, @classes) = @_;
3814 @classes = get_branch_refs
() unless @classes;
3815 my @patterns = map { "refs/$_" } @classes;
3818 open my $fd, '-|', git_cmd
(), 'for-each-ref',
3819 ($limit ? '--count='.($limit+1) : ()),
3820 '--sort=-HEAD', '--sort=-committerdate',
3821 '--format=%(objectname) %(refname) %(subject)%00%(committer)',
3824 while (my $line = <$fd>) {
3828 my ($refinfo, $committerinfo) = split(/\0/, $line);
3829 my ($hash, $name, $title) = split(' ', $refinfo, 3);
3830 my ($committer, $epoch, $tz) =
3831 ($committerinfo =~ /^(.*) ([0-9]+) (.*)$/);
3832 $ref_item{'fullname'} = $name;
3833 my $strip_refs = join '|', map { quotemeta } get_branch_refs
();
3834 $name =~ s!^refs/($strip_refs|remotes)/!!;
3835 $ref_item{'name'} = $name;
3836 # for refs neither in 'heads' nor 'remotes' we want to
3837 # show their ref dir
3838 my $ref_dir = (defined $1) ? $1 : '';
3839 if ($ref_dir ne '' and $ref_dir ne 'heads' and $ref_dir ne 'remotes') {
3840 $ref_item{'name'} .= ' (' . $ref_dir . ')';
3843 $ref_item{'id'} = $hash;
3844 $ref_item{'title'} = $title || '(no commit message)';
3845 $ref_item{'epoch'} = $epoch;
3847 $ref_item{'age'} = age_string
(time - $ref_item{'epoch'});
3849 $ref_item{'age'} = "unknown";
3852 push @headslist, \
%ref_item;
3856 return wantarray ? @headslist : \
@headslist;
3859 sub git_get_tags_list
{
3863 open my $fd, '-|', git_cmd
(), 'for-each-ref',
3864 ($limit ? '--count='.($limit+1) : ()), '--sort=-creatordate',
3865 '--format=%(objectname) %(objecttype) %(refname) '.
3866 '%(*objectname) %(*objecttype) %(subject)%00%(creator)',
3869 while (my $line = <$fd>) {
3873 my ($refinfo, $creatorinfo) = split(/\0/, $line);
3874 my ($id, $type, $name, $refid, $reftype, $title) = split(' ', $refinfo, 6);
3875 my ($creator, $epoch, $tz) =
3876 ($creatorinfo =~ /^(.*) ([0-9]+) (.*)$/);
3877 $ref_item{'fullname'} = $name;
3878 $name =~ s!^refs/tags/!!;
3880 $ref_item{'type'} = $type;
3881 $ref_item{'id'} = $id;
3882 $ref_item{'name'} = $name;
3883 if ($type eq "tag") {
3884 $ref_item{'subject'} = $title;
3885 $ref_item{'reftype'} = $reftype;
3886 $ref_item{'refid'} = $refid;
3888 $ref_item{'reftype'} = $type;
3889 $ref_item{'refid'} = $id;
3892 if ($type eq "tag" || $type eq "commit") {
3893 $ref_item{'epoch'} = $epoch;
3895 $ref_item{'age'} = age_string
(time - $ref_item{'epoch'});
3897 $ref_item{'age'} = "unknown";
3901 push @tagslist, \
%ref_item;
3905 return wantarray ? @tagslist : \
@tagslist;
3908 ## ----------------------------------------------------------------------
3909 ## filesystem-related functions
3911 sub get_file_owner
{
3914 my ($dev, $ino, $mode, $nlink, $st_uid, $st_gid, $rdev, $size) = stat($path);
3915 my ($name, $passwd, $uid, $gid, $quota, $comment, $gcos, $dir, $shell) = getpwuid($st_uid);
3916 if (!defined $gcos) {
3920 $owner =~ s/[,;].*$//;
3921 return to_utf8
($owner);
3924 # assume that file exists
3926 my $filename = shift;
3928 open my $fd, '<', $filename;
3929 print map { to_utf8
($_) } <$fd>;
3933 ## ......................................................................
3934 ## mimetype related functions
3936 sub mimetype_guess_file
{
3937 my $filename = shift;
3938 my $mimemap = shift;
3939 -r
$mimemap or return undef;
3942 open(my $mh, '<', $mimemap) or return undef;
3944 next if m/^#/; # skip comments
3945 my ($mimetype, @exts) = split(/\s+/);
3946 foreach my $ext (@exts) {
3947 $mimemap{$ext} = $mimetype;
3952 $filename =~ /\.([^.]*)$/;
3953 return $mimemap{$1};
3956 sub mimetype_guess
{
3957 my $filename = shift;
3959 $filename =~ /\./ or return undef;
3961 if ($mimetypes_file) {
3962 my $file = $mimetypes_file;
3963 if ($file !~ m!^/!) { # if it is relative path
3964 # it is relative to project
3965 $file = "$projectroot/$project/$file";
3967 $mime = mimetype_guess_file
($filename, $file);
3969 $mime ||= mimetype_guess_file
($filename, '/etc/mime.types');
3975 my $filename = shift;
3978 my $mime = mimetype_guess
($filename);
3979 $mime and return $mime;
3983 return $default_blob_plain_mimetype unless $fd;
3986 return 'text/plain';
3987 } elsif (! $filename) {
3988 return 'application/octet-stream';
3989 } elsif ($filename =~ m/\.png$/i) {
3991 } elsif ($filename =~ m/\.gif$/i) {
3993 } elsif ($filename =~ m/\.jpe?g$/i) {
3994 return 'image/jpeg';
3996 return 'application/octet-stream';
4000 sub blob_contenttype
{
4001 my ($fd, $file_name, $type) = @_;
4003 $type ||= blob_mimetype
($fd, $file_name);
4004 if ($type eq 'text/plain' && defined $default_text_plain_charset) {
4005 $type .= "; charset=$default_text_plain_charset";
4011 # guess file syntax for syntax highlighting; return undef if no highlighting
4012 # the name of syntax can (in the future) depend on syntax highlighter used
4013 sub guess_file_syntax
{
4014 my ($highlight, $file_name) = @_;
4015 return undef unless ($highlight && defined $file_name);
4016 my $basename = basename
($file_name, '.in');
4017 return $highlight_basename{$basename}
4018 if exists $highlight_basename{$basename};
4020 $basename =~ /\.([^.]*)$/;
4021 my $ext = $1 or return undef;
4022 return $highlight_ext{$ext}
4023 if exists $highlight_ext{$ext};
4028 # run highlighter and return FD of its output,
4029 # or return original FD if no highlighting
4030 sub run_highlighter
{
4031 my ($fd, $highlight, $syntax) = @_;
4032 return $fd unless ($highlight);
4035 my $syntax_arg = (defined $syntax) ? "--syntax $syntax" : "--force";
4036 open $fd, quote_command
(git_cmd
(), "cat-file", "blob", $hash)." | ".
4037 quote_command
($^X, '-CO', '-MEncode=decode,FB_DEFAULT', '-pse',
4038 '$_ = decode($fe, $_, FB_DEFAULT) if !utf8::decode($_);',
4039 '--', "-fe=$fallback_encoding")." | ".
4040 quote_command
($highlight_bin).
4041 " --replace-tabs=8 --fragment $syntax_arg |"
4042 or die_error
(500, "Couldn't open file or run syntax highlighter");
4046 ## ======================================================================
4047 ## functions printing HTML: header, footer, error page
4049 sub get_page_title
{
4050 my $title = to_utf8
($site_name);
4052 unless (defined $project) {
4053 if (defined $project_filter) {
4054 $title .= " - projects in '" . esc_path
($project_filter) . "'";
4058 $title .= " - " . to_utf8
($project);
4060 return $title unless (defined $action);
4061 $title .= "/$action"; # $action is US-ASCII (7bit ASCII)
4063 return $title unless (defined $file_name);
4064 $title .= " - " . esc_path
($file_name);
4065 if ($action eq "tree" && $file_name !~ m
|/$|) {
4072 sub print_feed_meta
{
4073 if (defined $project) {
4074 my %href_params = get_feed_info
();
4075 if (!exists $href_params{'-title'}) {
4076 $href_params{'-title'} = 'log';
4079 foreach my $format (qw(RSS Atom)) {
4080 my $type = lc($format);
4082 '-rel' => 'alternate',
4083 '-title' => esc_attr
("$project - $href_params{'-title'} - $format feed"),
4084 '-type' => "application/$type+xml"
4087 $href_params{'extra_options'} = undef;
4088 $href_params{'action'} = $type;
4089 $link_attr{'-href'} = esc_attr
(href
(%href_params));
4091 "rel=\"$link_attr{'-rel'}\" ".
4092 "title=\"$link_attr{'-title'}\" ".
4093 "href=\"$link_attr{'-href'}\" ".
4094 "type=\"$link_attr{'-type'}\" ".
4097 $href_params{'extra_options'} = '--no-merges';
4098 $link_attr{'-href'} = esc_attr
(href
(%href_params));
4099 $link_attr{'-title'} .= ' (no merges)';
4101 "rel=\"$link_attr{'-rel'}\" ".
4102 "title=\"$link_attr{'-title'}\" ".
4103 "href=\"$link_attr{'-href'}\" ".
4104 "type=\"$link_attr{'-type'}\" ".
4109 printf('<link rel="alternate" title="%s projects list" '.
4110 'href="%s" type="text/plain; charset=utf-8" />'."\n",
4111 esc_attr
($site_name),
4112 esc_attr
(href
(project
=>undef, action
=>"project_index")));
4113 printf('<link rel="alternate" title="%s projects feeds" '.
4114 'href="%s" type="text/x-opml" />'."\n",
4115 esc_attr
($site_name),
4116 esc_attr
(href
(project
=>undef, action
=>"opml")));
4120 sub print_header_links
{
4123 # print out each stylesheet that exist, providing backwards capability
4124 # for those people who defined $stylesheet in a config file
4125 if (defined $stylesheet) {
4126 print '<link rel="stylesheet" type="text/css" href="'.esc_url
($stylesheet).'"/>'."\n";
4128 foreach my $stylesheet (@stylesheets) {
4129 next unless $stylesheet;
4130 print '<link rel="stylesheet" type="text/css" href="'.esc_url
($stylesheet).'"/>'."\n";
4134 if ($status eq '200 OK');
4135 if (defined $favicon) {
4136 print qq(<link rel="shortcut icon" href=").esc_url
($favicon).qq(" type="image/png" />\n);
4140 sub print_nav_breadcrumbs_path
{
4141 my $dirprefix = undef;
4142 while (my $part = shift) {
4143 $dirprefix .= "/" if defined $dirprefix;
4144 $dirprefix .= $part;
4145 print $cgi->a({-href
=> href
(project
=> undef,
4146 project_filter
=> $dirprefix,
4147 action
=> "project_list")},
4148 esc_html
($part)) . " / ";
4152 sub print_nav_breadcrumbs
{
4155 for my $crumb (@extra_breadcrumbs, [ $home_link_str => $home_link ]) {
4156 print $cgi->a({-href
=> esc_url
($crumb->[1])}, $crumb->[0]) . " / ";
4158 if (defined $project) {
4159 my @dirname = split '/', $project;
4160 my $projectbasename = pop @dirname;
4161 print_nav_breadcrumbs_path
(@dirname);
4162 print $cgi->a({-href
=> href
(action
=>"summary")}, esc_html
($projectbasename));
4163 if (defined $action) {
4164 my $action_print = $action ;
4165 if (defined $opts{-action_extra
}) {
4166 $action_print = $cgi->a({-href
=> href
(action
=>$action)},
4169 print " / $action_print";
4171 if (defined $opts{-action_extra
}) {
4172 print " / $opts{-action_extra}";
4175 } elsif (defined $project_filter) {
4176 print_nav_breadcrumbs_path
(split '/', $project_filter);
4180 sub print_search_form
{
4181 if (!defined $searchtext) {
4185 if (defined $hash_base) {
4186 $search_hash = $hash_base;
4187 } elsif (defined $hash) {
4188 $search_hash = $hash;
4190 $search_hash = "HEAD";
4192 my $action = $my_uri;
4193 my $use_pathinfo = gitweb_check_feature
('pathinfo');
4194 if ($use_pathinfo) {
4195 $action .= "/".esc_url
($project);
4197 print $cgi->start_form(-method => "get", -action
=> $action) .
4198 "<div class=\"search\">\n" .
4200 $cgi->input({-name
=>"p", -value
=>$project, -type
=>"hidden"}) . "\n") .
4201 $cgi->input({-name
=>"a", -value
=>"search", -type
=>"hidden"}) . "\n" .
4202 $cgi->input({-name
=>"h", -value
=>$search_hash, -type
=>"hidden"}) . "\n" .
4203 $cgi->popup_menu(-name
=> 'st', -default => 'commit',
4204 -values => ['commit', 'grep', 'author', 'committer', 'pickaxe']) .
4205 " " . $cgi->a({-href
=> href
(action
=>"search_help"),
4206 -title
=> "search help" }, "?") . " search:\n",
4207 $cgi->textfield(-name
=> "s", -value
=> $searchtext, -override
=> 1) . "\n" .
4208 "<span title=\"Extended regular expression\">" .
4209 $cgi->checkbox(-name
=> 'sr', -value
=> 1, -label
=> 're',
4210 -checked
=> $search_use_regexp) .
4213 $cgi->end_form() . "\n";
4216 sub git_header_html
{
4217 my $status = shift || "200 OK";
4218 my $expires = shift;
4221 my $title = get_page_title
();
4222 print $cgi->header(-type
=> 'text/html', -charset
=> 'utf-8',
4223 -status
=> $status, -expires
=> $expires)
4224 unless ($opts{'-no_http_header'});
4225 my $mod_perl_version = $ENV{'MOD_PERL'} ? " $ENV{'MOD_PERL'}" : '';
4228 <!-- git web interface version $version, (C) 2005-2006, Kay Sievers <kay.sievers\@vrfy.org>, Christian Gierke -->
4229 <!-- git core binaries version $git_version -->
4231 <meta charset="UTF-8">
4232 <meta name="generator" content="gitweb/$version git/$git_version$mod_perl_version"/>
4233 <meta name="robots" content="index, nofollow"/>
4234 <meta name="viewport" content="width=device-width, initial-scale=1"/>
4235 <title>$title</title>
4237 # the stylesheet, favicon etc urls won't work correctly with path_info
4238 # unless we set the appropriate base URL
4239 if ($ENV{'PATH_INFO'}) {
4240 print "<base href=\"".esc_url
($base_url)."\" />\n";
4242 print_header_links
($status);
4244 if (defined $site_html_head_string) {
4245 print to_utf8
($site_html_head_string);
4251 if (defined $site_header && -f
$site_header) {
4252 insert_file
($site_header);
4255 print "<div class=\"page_header\">\n";
4256 if (defined $logo) {
4257 print $cgi->a({-href
=> esc_url
($logo_url),
4258 -title
=> $logo_label},
4259 $cgi->img({-src
=> esc_url
($logo),
4260 -width
=> 72, -height
=> 27,
4262 -class => "logo"}));
4264 print_nav_breadcrumbs
(%opts);
4267 my $have_search = gitweb_check_feature
('search');
4268 if (defined $project && $have_search) {
4269 print_search_form
();
4273 sub git_footer_html
{
4274 my $feed_class = 'rss_logo';
4276 print "<div class=\"page_footer\">\n";
4277 if (defined $project) {
4278 my $descr = git_get_project_description
($project);
4279 if (defined $descr) {
4280 print "<div class=\"page_footer_text\">" . esc_html
($descr) . "</div>\n";
4283 my %href_params = get_feed_info
();
4284 if (!%href_params) {
4285 $feed_class .= ' generic';
4287 $href_params{'-title'} ||= 'log';
4289 foreach my $format (qw(RSS Atom)) {
4290 $href_params{'action'} = lc($format);
4291 print $cgi->a({-href
=> href
(%href_params),
4292 -title
=> "$href_params{'-title'} $format feed",
4293 -class => $feed_class}, $format)."\n";
4297 print $cgi->a({-href
=> href
(project
=>undef, action
=>"opml",
4298 project_filter
=> $project_filter),
4299 -class => $feed_class}, "OPML") . " ";
4300 print $cgi->a({-href
=> href
(project
=>undef, action
=>"project_index",
4301 project_filter
=> $project_filter),
4302 -class => $feed_class}, "TXT") . "\n";
4304 print "</div>\n"; # class="page_footer"
4306 if (defined $t0 && gitweb_check_feature
('timed')) {
4307 print "<div id=\"generating_info\">\n";
4308 print 'This page took '.
4309 '<span id="generating_time" class="time_span">'.
4310 tv_interval
($t0, [ gettimeofday
() ]).
4313 '<span id="generating_cmd">'.
4314 $number_of_git_cmds.
4315 '</span> git commands '.
4317 print "</div>\n"; # class="page_footer"
4320 if (defined $site_footer && -f
$site_footer) {
4321 insert_file
($site_footer);
4324 print qq
!<script type
="text/javascript" src
="!.esc_url($javascript).qq!"></script
>\n!;
4325 if (defined $action &&
4326 $action eq 'blame_incremental') {
4327 print qq
!<script type
="text/javascript">\n!.
4328 qq
!startBlame
("!. esc_attr(href(action=>"blame_data
", -replay=>1)) .qq!",\n!.
4329 qq
! "!. esc_attr(href()) .qq!");\n!.
4332 my ($jstimezone, $tz_cookie, $datetime_class) =
4333 gitweb_get_feature
('javascript-timezone');
4335 print qq
!<script type
="text/javascript">\n!.
4336 qq
!window
.onload
= function
() {\n!;
4337 if (gitweb_check_feature
('javascript-actions')) {
4338 print qq
! fixLinks
();\n!;
4340 if ($jstimezone && $tz_cookie && $datetime_class) {
4341 print qq
! var tz_cookie
= { name
: '$tz_cookie', expires
: 14, path
: '/' };\n!. # in days
4342 qq
! onloadTZSetup
('$jstimezone', tz_cookie
, '$datetime_class');\n!;
4352 # die_error(<http_status_code>, <error_message>[, <detailed_html_description>])
4353 # Example: die_error(404, 'Hash not found')
4354 # By convention, use the following status codes (as defined in RFC 2616):
4355 # 400: Invalid or missing CGI parameters, or
4356 # requested object exists but has wrong type.
4357 # 403: Requested feature (like "pickaxe" or "snapshot") not enabled on
4358 # this server or project.
4359 # 404: Requested object/revision/project doesn't exist.
4360 # 500: The server isn't configured properly, or
4361 # an internal error occurred (e.g. failed assertions caused by bugs), or
4362 # an unknown error occurred (e.g. the git binary died unexpectedly).
4363 # 503: The server is currently unavailable (because it is overloaded,
4364 # or down for maintenance). Generally, this is a temporary state.
4366 my $status = shift || 500;
4367 my $error = esc_html
(shift) || "Internal Server Error";
4371 my %http_responses = (
4372 400 => '400 Bad Request',
4373 403 => '403 Forbidden',
4374 404 => '404 Not Found',
4375 500 => '500 Internal Server Error',
4376 503 => '503 Service Unavailable',
4378 git_header_html
($http_responses{$status}, undef, %opts);
4380 <div class="page_body">
4385 if (defined $extra) {
4393 unless ($opts{'-error_handler'});
4396 ## ----------------------------------------------------------------------
4397 ## functions printing or outputting HTML: navigation
4399 sub git_print_page_nav
{
4400 my ($current, $suppress, $head, $treehead, $treebase, $extra) = @_;
4401 $extra = '' if !defined $extra; # pager or formats
4403 my @navs = qw(summary shortlog log commit commitdiff tree);
4405 @navs = grep { $_ ne $suppress } @navs;
4408 my %arg = map { $_ => {action
=>$_} } @navs;
4409 if (defined $head) {
4410 for (qw(commit commitdiff)) {
4411 $arg{$_}{'hash'} = $head;
4413 if ($current =~ m/^(tree | log | shortlog | commit | commitdiff | search)$/x) {
4414 for (qw(shortlog log)) {
4415 $arg{$_}{'hash'} = $head;
4420 $arg{'tree'}{'hash'} = $treehead if defined $treehead;
4421 $arg{'tree'}{'hash_base'} = $treebase if defined $treebase;
4423 my @actions = gitweb_get_feature
('actions');
4426 'n' => $project, # project name
4427 'f' => $git_dir, # project path within filesystem
4428 'h' => $treehead || '', # current hash ('h' parameter)
4429 'b' => $treebase || '', # hash base ('hb' parameter)
4432 my ($label, $link, $pos) = splice(@actions,0,3);
4434 @navs = map { $_ eq $pos ? ($_, $label) : $_ } @navs;
4436 $link =~ s/%([%nfhb])/$repl{$1}/g;
4437 $arg{$label}{'_href'} = $link;
4440 print "<div class=\"page_nav\">\n" .
4442 map { $_ eq $current ?
4443 $_ : $cgi->a({-href
=> ($arg{$_}{_href
} ? $arg{$_}{_href
} : href
(%{$arg{$_}}))}, "$_")
4445 print "<br/>\n$extra<br/>\n" .
4449 # returns a submenu for the navigation of the refs views (tags, heads,
4450 # remotes) with the current view disabled and the remotes view only
4451 # available if the feature is enabled
4452 sub format_ref_views
{
4454 my @ref_views = qw{tags heads};
4455 push @ref_views, 'remotes' if gitweb_check_feature
('remote_heads');
4456 return join " | ", map {
4457 $_ eq $current ? $_ :
4458 $cgi->a({-href
=> href
(action
=>$_)}, $_)
4462 sub format_paging_nav
{
4463 my ($action, $page, $has_next_link) = @_;
4469 $cgi->a({-href
=> href
(-replay
=>1, page
=>undef)}, "first") .
4471 $cgi->a({-href
=> href
(-replay
=>1, page
=>$page-1),
4472 -accesskey
=> "p", -title
=> "Alt-p"}, "prev");
4474 $paging_nav .= "first ⋅ prev";
4477 if ($has_next_link) {
4478 $paging_nav .= " ⋅ " .
4479 $cgi->a({-href
=> href
(-replay
=>1, page
=>$page+1),
4480 -accesskey
=> "n", -title
=> "Alt-n"}, "next");
4482 $paging_nav .= " ⋅ next";
4488 ## ......................................................................
4489 ## functions printing or outputting HTML: div
4491 sub git_print_header_div
{
4492 my ($action, $title, $hash, $hash_base) = @_;
4495 $args{'action'} = $action;
4496 $args{'hash'} = $hash if $hash;
4497 $args{'hash_base'} = $hash_base if $hash_base;
4499 print "<div class=\"header\">\n" .
4500 $cgi->a({-href
=> href
(%args), -class => "title"},
4501 $title ? $title : $action) .
4505 sub format_repo_url
{
4506 my ($name, $url) = @_;
4507 return "<tr class=\"metadata_url\"><td>$name</td><td>$url</td></tr>\n";
4510 # Group output by placing it in a DIV element and adding a header.
4511 # Options for start_div() can be provided by passing a hash reference as the
4512 # first parameter to the function.
4513 # Options to git_print_header_div() can be provided by passing an array
4514 # reference. This must follow the options to start_div if they are present.
4515 # The content can be a scalar, which is output as-is, a scalar reference, which
4516 # is output after html escaping, an IO handle passed either as *handle or
4517 # *handle{IO}, or a function reference. In the latter case all following
4518 # parameters will be taken as argument to the content function call.
4519 sub git_print_section
{
4520 my ($div_args, $header_args, $content);
4522 if (ref($arg) eq 'HASH') {
4526 if (ref($arg) eq 'ARRAY') {
4527 $header_args = $arg;
4532 print $cgi->start_div($div_args);
4533 git_print_header_div
(@$header_args);
4535 if (ref($content) eq 'CODE') {
4537 } elsif (ref($content) eq 'SCALAR') {
4538 print esc_html
($$content);
4539 } elsif (ref($content) eq 'GLOB' or ref($content) eq 'IO::Handle') {
4541 } elsif (!ref($content) && defined($content)) {
4545 print $cgi->end_div;
4548 sub format_timestamp_html
{
4550 my $strtime = $date->{'rfc2822'};
4552 my (undef, undef, $datetime_class) =
4553 gitweb_get_feature
('javascript-timezone');
4554 if ($datetime_class) {
4555 $strtime = qq
!<span
class="$datetime_class">$strtime</span
>!;
4558 my $localtime_format = '(%02d:%02d %s)';
4559 if ($date->{'hour_local'} < 6) {
4560 $localtime_format = '(<span class="atnight">%02d:%02d</span> %s)';
4563 sprintf($localtime_format,
4564 $date->{'hour_local'}, $date->{'minute_local'}, $date->{'tz_local'});
4569 # Outputs the author name and date in long form
4570 sub git_print_authorship
{
4573 my $tag = $opts{-tag
} || 'div';
4574 my $author = $co->{'author_name'};
4576 my %ad = parse_date
($co->{'author_epoch'}, $co->{'author_tz'});
4577 print "<$tag class=\"author_date\">" .
4578 format_search_author
($author, "author", esc_html
($author)) .
4579 " [".format_timestamp_html
(\
%ad)."]".
4580 git_get_avatar
($co->{'author_email'}, -pad_before
=> 1) .
4584 # Outputs table rows containing the full author or committer information,
4585 # in the format expected for 'commit' view (& similar).
4586 # Parameters are a commit hash reference, followed by the list of people
4587 # to output information for. If the list is empty it defaults to both
4588 # author and committer.
4589 sub git_print_authorship_rows
{
4591 # too bad we can't use @people = @_ || ('author', 'committer')
4593 @people = ('author', 'committer') unless @people;
4594 foreach my $who (@people) {
4595 my %wd = parse_date
($co->{"${who}_epoch"}, $co->{"${who}_tz"});
4596 print "<tr><td>$who</td><td>" .
4597 format_search_author
($co->{"${who}_name"}, $who,
4598 esc_html
($co->{"${who}_name"})) . " " .
4599 format_search_author
($co->{"${who}_email"}, $who,
4600 esc_html
("<" . $co->{"${who}_email"} . ">")) .
4601 "</td><td rowspan=\"2\">" .
4602 git_get_avatar
($co->{"${who}_email"}, -size
=> 'double') .
4606 format_timestamp_html
(\
%wd) .
4612 sub git_print_page_path
{
4618 print "<div class=\"page_path\">";
4619 print $cgi->a({-href
=> href
(action
=>"tree", hash_base
=>$hb),
4620 -title
=> 'tree root'}, to_utf8
("[$project]"));
4622 if (defined $name) {
4623 my @dirname = split '/', $name;
4624 my $basename = pop @dirname;
4627 foreach my $dir (@dirname) {
4628 $fullname .= ($fullname ? '/' : '') . $dir;
4629 print $cgi->a({-href
=> href
(action
=>"tree", file_name
=>$fullname,
4631 -title
=> $fullname}, esc_path
($dir));
4634 if (defined $type && $type eq 'blob') {
4635 print $cgi->a({-href
=> href
(action
=>"blob_plain", file_name
=>$file_name,
4637 -title
=> $name}, esc_path
($basename));
4638 } elsif (defined $type && $type eq 'tree') {
4639 print $cgi->a({-href
=> href
(action
=>"tree", file_name
=>$file_name,
4641 -title
=> $name}, esc_path
($basename));
4644 print esc_path
($basename);
4647 print "<br/></div>\n";
4654 if ($opts{'-remove_title'}) {
4655 # remove title, i.e. first line of log
4658 # remove leading empty lines
4659 while (defined $log->[0] && $log->[0] eq "") {
4664 my $skip_blank_line = 0;
4665 foreach my $line (@$log) {
4666 if ($line =~ m/^\s*([A-Z][-A-Za-z]*-([Bb]y|[Tt]o)|C[Cc]|(Clos|Fix)es): /) {
4667 if (! $opts{'-remove_signoff'}) {
4668 print "<span class=\"signoff\">" . esc_html
($line) . "</span><br/>\n";
4669 $skip_blank_line = 1;
4674 if ($line =~ m
,\s
*([a-z
]*link): (https
?://\S
+),i
) {
4675 if (! $opts{'-remove_signoff'}) {
4676 print "<span class=\"signoff\">" . esc_html
($1) . ": " .
4677 "<a href=\"" . esc_html
($2) . "\">" . esc_html
($2) . "</a>" .
4679 $skip_blank_line = 1;
4684 # print only one empty line
4685 # do not print empty line after signoff
4687 next if ($skip_blank_line);
4688 $skip_blank_line = 1;
4690 $skip_blank_line = 0;
4693 print format_log_line_html
($line) . "<br/>\n";
4696 if ($opts{'-final_empty_line'}) {
4697 # end with single empty line
4698 print "<br/>\n" unless $skip_blank_line;
4702 # return link target (what link points to)
4703 sub git_get_link_target
{
4708 open my $fd, "-|", git_cmd
(), "cat-file", "blob", $hash
4712 $link_target = <$fd>;
4717 return $link_target;
4720 # given link target, and the directory (basedir) the link is in,
4721 # return target of link relative to top directory (top tree);
4722 # return undef if it is not possible (including absolute links).
4723 sub normalize_link_target
{
4724 my ($link_target, $basedir) = @_;
4726 # absolute symlinks (beginning with '/') cannot be normalized
4727 return if (substr($link_target, 0, 1) eq '/');
4729 # normalize link target to path from top (root) tree (dir)
4732 $path = $basedir . '/' . $link_target;
4734 # we are in top (root) tree (dir)
4735 $path = $link_target;
4738 # remove //, /./, and /../
4740 foreach my $part (split('/', $path)) {
4741 # discard '.' and ''
4742 next if (!$part || $part eq '.');
4744 if ($part eq '..') {
4748 # link leads outside repository (outside top dir)
4752 push @path_parts, $part;
4755 $path = join('/', @path_parts);
4760 # print tree entry (row of git_tree), but without encompassing <tr> element
4761 sub git_print_tree_entry
{
4762 my ($t, $basedir, $hash_base, $have_blame) = @_;
4765 $base_key{'hash_base'} = $hash_base if defined $hash_base;
4767 # The format of a table row is: mode list link. Where mode is
4768 # the mode of the entry, list is the name of the entry, an href,
4769 # and link is the action links of the entry.
4771 print "<td class=\"mode\">" . mode_str
($t->{'mode'}) . "</td>\n";
4772 if (exists $t->{'size'}) {
4773 print "<td class=\"size\">$t->{'size'}</td>\n";
4775 if ($t->{'type'} eq "blob") {
4776 print "<td class=\"list\">" .
4777 $cgi->a({-href
=> href
(action
=>"blob", hash
=>$t->{'hash'},
4778 file_name
=>"$basedir$t->{'name'}", %base_key),
4779 -class => "list"}, esc_path
($t->{'name'}));
4780 if (S_ISLNK
(oct $t->{'mode'})) {
4781 my $link_target = git_get_link_target
($t->{'hash'});
4783 my $norm_target = normalize_link_target
($link_target, $basedir);
4784 if (defined $norm_target) {
4786 $cgi->a({-href
=> href
(action
=>"object", hash_base
=>$hash_base,
4787 file_name
=>$norm_target),
4788 -title
=> $norm_target}, esc_path
($link_target));
4790 print " -> " . esc_path
($link_target);
4795 print "<td class=\"link\">";
4796 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$t->{'hash'},
4797 file_name
=>"$basedir$t->{'name'}", %base_key)},
4801 $cgi->a({-href
=> href
(action
=>"blame", hash
=>$t->{'hash'},
4802 file_name
=>"$basedir$t->{'name'}", %base_key)},
4805 if (defined $hash_base) {
4807 $cgi->a({-href
=> href
(action
=>"history", hash_base
=>$hash_base,
4808 hash
=>$t->{'hash'}, file_name
=>"$basedir$t->{'name'}")},
4812 $cgi->a({-href
=> href
(action
=>"blob_plain", hash_base
=>$hash_base,
4813 file_name
=>"$basedir$t->{'name'}")},
4817 } elsif ($t->{'type'} eq "tree") {
4818 print "<td class=\"list\">";
4819 print $cgi->a({-href
=> href
(action
=>"tree", hash
=>$t->{'hash'},
4820 file_name
=>"$basedir$t->{'name'}",
4822 esc_path
($t->{'name'}));
4824 print "<td class=\"link\">";
4825 print $cgi->a({-href
=> href
(action
=>"tree", hash
=>$t->{'hash'},
4826 file_name
=>"$basedir$t->{'name'}",
4829 if (defined $hash_base) {
4831 $cgi->a({-href
=> href
(action
=>"history", hash_base
=>$hash_base,
4832 file_name
=>"$basedir$t->{'name'}")},
4837 # unknown object: we can only present history for it
4838 # (this includes 'commit' object, i.e. submodule support)
4839 print "<td class=\"list\">" .
4840 esc_path
($t->{'name'}) .
4842 print "<td class=\"link\">";
4843 if (defined $hash_base) {
4844 print $cgi->a({-href
=> href
(action
=>"history",
4845 hash_base
=>$hash_base,
4846 file_name
=>"$basedir$t->{'name'}")},
4853 ## ......................................................................
4854 ## functions printing large fragments of HTML
4856 # get pre-image filenames for merge (combined) diff
4857 sub fill_from_file_info
{
4858 my ($diff, @parents) = @_;
4860 $diff->{'from_file'} = [ ];
4861 $diff->{'from_file'}[$diff->{'nparents'} - 1] = undef;
4862 for (my $i = 0; $i < $diff->{'nparents'}; $i++) {
4863 if ($diff->{'status'}[$i] eq 'R' ||
4864 $diff->{'status'}[$i] eq 'C') {
4865 $diff->{'from_file'}[$i] =
4866 git_get_path_by_hash
($parents[$i], $diff->{'from_id'}[$i]);
4873 # is current raw difftree line of file deletion
4875 my $diffinfo = shift;
4877 return $diffinfo->{'to_id'} eq ('0' x
40) || $diffinfo->{'to_id'} eq ('0' x
64);
4880 # does patch correspond to [previous] difftree raw line
4881 # $diffinfo - hashref of parsed raw diff format
4882 # $patchinfo - hashref of parsed patch diff format
4883 # (the same keys as in $diffinfo)
4884 sub is_patch_split
{
4885 my ($diffinfo, $patchinfo) = @_;
4887 return defined $diffinfo && defined $patchinfo
4888 && $diffinfo->{'to_file'} eq $patchinfo->{'to_file'};
4892 sub git_difftree_body
{
4893 my ($difftree, $hash, @parents) = @_;
4894 my ($parent) = $parents[0];
4895 my $have_blame = gitweb_check_feature
('blame');
4896 print "<div class=\"list_head\">\n";
4897 if ($#{$difftree} > 10) {
4898 print(($#{$difftree} + 1) . " files changed:\n");
4902 print "<table class=\"" .
4903 (@parents > 1 ? "combined " : "") .
4906 # header only for combined diff in 'commitdiff' view
4907 my $has_header = @$difftree && @parents > 1 && $action eq 'commitdiff';
4910 print "<thead><tr>\n" .
4911 "<th></th><th></th>\n"; # filename, patchN link
4912 for (my $i = 0; $i < @parents; $i++) {
4913 my $par = $parents[$i];
4915 $cgi->a({-href
=> href
(action
=>"commitdiff",
4916 hash
=>$hash, hash_parent
=>$par),
4917 -title
=> 'commitdiff to parent number ' .
4918 ($i+1) . ': ' . substr($par,0,7)},
4922 print "</tr></thead>\n<tbody>\n";
4927 foreach my $line (@{$difftree}) {
4928 my $diff = parsed_difftree_line
($line);
4931 print "<tr class=\"dark\">\n";
4933 print "<tr class=\"light\">\n";
4937 if (exists $diff->{'nparents'}) { # combined diff
4939 fill_from_file_info
($diff, @parents)
4940 unless exists $diff->{'from_file'};
4942 if (!is_deleted
($diff)) {
4943 # file exists in the result (child) commit
4945 $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff->{'to_id'},
4946 file_name
=>$diff->{'to_file'},
4948 -class => "list"}, esc_path
($diff->{'to_file'})) .
4952 esc_path
($diff->{'to_file'}) .
4956 if ($action eq 'commitdiff') {
4959 print "<td class=\"link\">" .
4960 $cgi->a({-href
=> href
(-anchor
=>"patch$patchno")},
4966 my $has_history = 0;
4967 my $not_deleted = 0;
4968 for (my $i = 0; $i < $diff->{'nparents'}; $i++) {
4969 my $hash_parent = $parents[$i];
4970 my $from_hash = $diff->{'from_id'}[$i];
4971 my $from_path = $diff->{'from_file'}[$i];
4972 my $status = $diff->{'status'}[$i];
4974 $has_history ||= ($status ne 'A');
4975 $not_deleted ||= ($status ne 'D');
4977 if ($status eq 'A') {
4978 print "<td class=\"link\" align=\"right\"> | </td>\n";
4979 } elsif ($status eq 'D') {
4980 print "<td class=\"link\">" .
4981 $cgi->a({-href
=> href
(action
=>"blob",
4984 file_name
=>$from_path)},
4988 if ($diff->{'to_id'} eq $from_hash) {
4989 print "<td class=\"link nochange\">";
4991 print "<td class=\"link\">";
4993 print $cgi->a({-href
=> href
(action
=>"blobdiff",
4994 hash
=>$diff->{'to_id'},
4995 hash_parent
=>$from_hash,
4997 hash_parent_base
=>$hash_parent,
4998 file_name
=>$diff->{'to_file'},
4999 file_parent
=>$from_path)},
5005 print "<td class=\"link\">";
5007 print $cgi->a({-href
=> href
(action
=>"blob",
5008 hash
=>$diff->{'to_id'},
5009 file_name
=>$diff->{'to_file'},
5012 print " | " if ($has_history);
5015 print $cgi->a({-href
=> href
(action
=>"history",
5016 file_name
=>$diff->{'to_file'},
5023 next; # instead of 'else' clause, to avoid extra indent
5025 # else ordinary diff
5027 my ($to_mode_oct, $to_mode_str, $to_file_type);
5028 my ($from_mode_oct, $from_mode_str, $from_file_type);
5029 if ($diff->{'to_mode'} ne ('0' x
6)) {
5030 $to_mode_oct = oct $diff->{'to_mode'};
5031 if (S_ISREG
($to_mode_oct)) { # only for regular file
5032 $to_mode_str = sprintf("%04o", $to_mode_oct & 0777); # permission bits
5034 $to_file_type = file_type
($diff->{'to_mode'});
5036 if ($diff->{'from_mode'} ne ('0' x
6)) {
5037 $from_mode_oct = oct $diff->{'from_mode'};
5038 if (S_ISREG
($from_mode_oct)) { # only for regular file
5039 $from_mode_str = sprintf("%04o", $from_mode_oct & 0777); # permission bits
5041 $from_file_type = file_type
($diff->{'from_mode'});
5044 if ($diff->{'status'} eq "A") { # created
5045 my $mode_chng = "<span class=\"file_status new\">[new $to_file_type";
5046 $mode_chng .= " with mode: $to_mode_str" if $to_mode_str;
5047 $mode_chng .= "]</span>";
5049 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff->{'to_id'},
5050 hash_base
=>$hash, file_name
=>$diff->{'file'}),
5051 -class => "list"}, esc_path
($diff->{'file'}));
5053 print "<td>$mode_chng</td>\n";
5054 print "<td class=\"link\">";
5055 if ($action eq 'commitdiff') {
5058 print $cgi->a({-href
=> href
(-anchor
=>"patch$patchno")},
5062 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff->{'to_id'},
5063 hash_base
=>$hash, file_name
=>$diff->{'file'})},
5067 } elsif ($diff->{'status'} eq "D") { # deleted
5068 my $mode_chng = "<span class=\"file_status deleted\">[deleted $from_file_type]</span>";
5070 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff->{'from_id'},
5071 hash_base
=>$parent, file_name
=>$diff->{'file'}),
5072 -class => "list"}, esc_path
($diff->{'file'}));
5074 print "<td>$mode_chng</td>\n";
5075 print "<td class=\"link\">";
5076 if ($action eq 'commitdiff') {
5079 print $cgi->a({-href
=> href
(-anchor
=>"patch$patchno")},
5083 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff->{'from_id'},
5084 hash_base
=>$parent, file_name
=>$diff->{'file'})},
5087 print $cgi->a({-href
=> href
(action
=>"blame", hash_base
=>$parent,
5088 file_name
=>$diff->{'file'})},
5091 print $cgi->a({-href
=> href
(action
=>"history", hash_base
=>$parent,
5092 file_name
=>$diff->{'file'})},
5096 } elsif ($diff->{'status'} eq "M" || $diff->{'status'} eq "T") { # modified, or type changed
5097 my $mode_chnge = "";
5098 if ($diff->{'from_mode'} != $diff->{'to_mode'}) {
5099 $mode_chnge = "<span class=\"file_status mode_chnge\">[changed";
5100 if ($from_file_type ne $to_file_type) {
5101 $mode_chnge .= " from $from_file_type to $to_file_type";
5103 if (($from_mode_oct & 0777) != ($to_mode_oct & 0777)) {
5104 if ($from_mode_str && $to_mode_str) {
5105 $mode_chnge .= " mode: $from_mode_str->$to_mode_str";
5106 } elsif ($to_mode_str) {
5107 $mode_chnge .= " mode: $to_mode_str";
5110 $mode_chnge .= "]</span>\n";
5113 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff->{'to_id'},
5114 hash_base
=>$hash, file_name
=>$diff->{'file'}),
5115 -class => "list"}, esc_path
($diff->{'file'}));
5117 print "<td>$mode_chnge</td>\n";
5118 print "<td class=\"link\">";
5119 if ($action eq 'commitdiff') {
5122 print $cgi->a({-href
=> href
(-anchor
=>"patch$patchno")},
5125 } elsif ($diff->{'to_id'} ne $diff->{'from_id'}) {
5126 # "commit" view and modified file (not onlu mode changed)
5127 print $cgi->a({-href
=> href
(action
=>"blobdiff",
5128 hash
=>$diff->{'to_id'}, hash_parent
=>$diff->{'from_id'},
5129 hash_base
=>$hash, hash_parent_base
=>$parent,
5130 file_name
=>$diff->{'file'})},
5134 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff->{'to_id'},
5135 hash_base
=>$hash, file_name
=>$diff->{'file'})},
5138 print $cgi->a({-href
=> href
(action
=>"blame", hash_base
=>$hash,
5139 file_name
=>$diff->{'file'})},
5142 print $cgi->a({-href
=> href
(action
=>"history", hash_base
=>$hash,
5143 file_name
=>$diff->{'file'})},
5147 } elsif ($diff->{'status'} eq "R" || $diff->{'status'} eq "C") { # renamed or copied
5148 my %status_name = ('R' => 'moved', 'C' => 'copied');
5149 my $nstatus = $status_name{$diff->{'status'}};
5151 if ($diff->{'from_mode'} != $diff->{'to_mode'}) {
5152 # mode also for directories, so we cannot use $to_mode_str
5153 $mode_chng = sprintf(", mode: %04o", $to_mode_oct & 0777);
5156 $cgi->a({-href
=> href
(action
=>"blob", hash_base
=>$hash,
5157 hash
=>$diff->{'to_id'}, file_name
=>$diff->{'to_file'}),
5158 -class => "list"}, esc_path
($diff->{'to_file'})) . "</td>\n" .
5159 "<td><span class=\"file_status $nstatus\">[$nstatus from " .
5160 $cgi->a({-href
=> href
(action
=>"blob", hash_base
=>$parent,
5161 hash
=>$diff->{'from_id'}, file_name
=>$diff->{'from_file'}),
5162 -class => "list"}, esc_path
($diff->{'from_file'})) .
5163 " with " . (int $diff->{'similarity'}) . "% similarity$mode_chng]</span></td>\n" .
5164 "<td class=\"link\">";
5165 if ($action eq 'commitdiff') {
5168 print $cgi->a({-href
=> href
(-anchor
=>"patch$patchno")},
5171 } elsif ($diff->{'to_id'} ne $diff->{'from_id'}) {
5172 # "commit" view and modified file (not only pure rename or copy)
5173 print $cgi->a({-href
=> href
(action
=>"blobdiff",
5174 hash
=>$diff->{'to_id'}, hash_parent
=>$diff->{'from_id'},
5175 hash_base
=>$hash, hash_parent_base
=>$parent,
5176 file_name
=>$diff->{'to_file'}, file_parent
=>$diff->{'from_file'})},
5180 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff->{'to_id'},
5181 hash_base
=>$parent, file_name
=>$diff->{'to_file'})},
5184 print $cgi->a({-href
=> href
(action
=>"blame", hash_base
=>$hash,
5185 file_name
=>$diff->{'to_file'})},
5188 print $cgi->a({-href
=> href
(action
=>"history", hash_base
=>$hash,
5189 file_name
=>$diff->{'to_file'})},
5193 } # we should not encounter Unmerged (U) or Unknown (X) status
5196 print "</tbody>" if $has_header;
5200 # Print context lines and then rem/add lines in a side-by-side manner.
5201 sub print_sidebyside_diff_lines
{
5202 my ($ctx, $rem, $add) = @_;
5204 # print context block before add/rem block
5207 '<div class="chunk_block ctx">',
5208 '<div class="old">',
5211 '<div class="new">',
5220 '<div class="chunk_block rem">',
5221 '<div class="old">',
5228 '<div class="chunk_block add">',
5229 '<div class="new">',
5235 '<div class="chunk_block chg">',
5236 '<div class="old">',
5239 '<div class="new">',
5246 # Print context lines and then rem/add lines in inline manner.
5247 sub print_inline_diff_lines
{
5248 my ($ctx, $rem, $add) = @_;
5250 print @$ctx, @$rem, @$add;
5253 # Format removed and added line, mark changed part and HTML-format them.
5254 # Implementation is based on contrib/diff-highlight
5255 sub format_rem_add_lines_pair
{
5256 my ($rem, $add, $num_parents) = @_;
5258 # We need to untabify lines before split()'ing them;
5259 # otherwise offsets would be invalid.
5262 $rem = untabify
($rem);
5263 $add = untabify
($add);
5265 my @rem = split(//, $rem);
5266 my @add = split(//, $add);
5267 my ($esc_rem, $esc_add);
5268 # Ignore leading +/- characters for each parent.
5269 my ($prefix_len, $suffix_len) = ($num_parents, 0);
5270 my ($prefix_has_nonspace, $suffix_has_nonspace);
5272 my $shorter = (@rem < @add) ? @rem : @add;
5273 while ($prefix_len < $shorter) {
5274 last if ($rem[$prefix_len] ne $add[$prefix_len]);
5276 $prefix_has_nonspace = 1 if ($rem[$prefix_len] !~ /\s/);
5280 while ($prefix_len + $suffix_len < $shorter) {
5281 last if ($rem[-1 - $suffix_len] ne $add[-1 - $suffix_len]);
5283 $suffix_has_nonspace = 1 if ($rem[-1 - $suffix_len] !~ /\s/);
5287 # Mark lines that are different from each other, but have some common
5288 # part that isn't whitespace. If lines are completely different, don't
5289 # mark them because that would make output unreadable, especially if
5290 # diff consists of multiple lines.
5291 if ($prefix_has_nonspace || $suffix_has_nonspace) {
5292 $esc_rem = esc_html_hl_regions
($rem, 'marked',
5293 [$prefix_len, @rem - $suffix_len], -nbsp
=>1);
5294 $esc_add = esc_html_hl_regions
($add, 'marked',
5295 [$prefix_len, @add - $suffix_len], -nbsp
=>1);
5297 $esc_rem = esc_html
($rem, -nbsp
=>1);
5298 $esc_add = esc_html
($add, -nbsp
=>1);
5301 return format_diff_line
(\
$esc_rem, 'rem'),
5302 format_diff_line
(\
$esc_add, 'add');
5305 # HTML-format diff context, removed and added lines.
5306 sub format_ctx_rem_add_lines
{
5307 my ($ctx, $rem, $add, $num_parents) = @_;
5308 my (@new_ctx, @new_rem, @new_add);
5309 my $can_highlight = 0;
5310 my $is_combined = ($num_parents > 1);
5312 # Highlight if every removed line has a corresponding added line.
5313 if (@$add > 0 && @$add == @$rem) {
5316 # Highlight lines in combined diff only if the chunk contains
5317 # diff between the same version, e.g.
5324 # Otherwise the highlighting would be confusing.
5326 for (my $i = 0; $i < @$add; $i++) {
5327 my $prefix_rem = substr($rem->[$i], 0, $num_parents);
5328 my $prefix_add = substr($add->[$i], 0, $num_parents);
5330 $prefix_rem =~ s/-/+/g;
5332 if ($prefix_rem ne $prefix_add) {
5340 if ($can_highlight) {
5341 for (my $i = 0; $i < @$add; $i++) {
5342 my ($line_rem, $line_add) = format_rem_add_lines_pair
(
5343 $rem->[$i], $add->[$i], $num_parents);
5344 push @new_rem, $line_rem;
5345 push @new_add, $line_add;
5348 @new_rem = map { format_diff_line
($_, 'rem') } @$rem;
5349 @new_add = map { format_diff_line
($_, 'add') } @$add;
5352 @new_ctx = map { format_diff_line
($_, 'ctx') } @$ctx;
5354 return (\
@new_ctx, \
@new_rem, \
@new_add);
5357 # Print context lines and then rem/add lines.
5358 sub print_diff_lines
{
5359 my ($ctx, $rem, $add, $diff_style, $num_parents) = @_;
5360 my $is_combined = $num_parents > 1;
5362 ($ctx, $rem, $add) = format_ctx_rem_add_lines
($ctx, $rem, $add,
5365 if ($diff_style eq 'sidebyside' && !$is_combined) {
5366 print_sidebyside_diff_lines
($ctx, $rem, $add);
5368 # default 'inline' style and unknown styles
5369 print_inline_diff_lines
($ctx, $rem, $add);
5373 sub print_diff_chunk
{
5374 my ($diff_style, $num_parents, $from, $to, @chunk) = @_;
5375 my (@ctx, @rem, @add);
5377 # The class of the previous line.
5378 my $prev_class = '';
5380 return unless @chunk;
5382 # incomplete last line might be among removed or added lines,
5383 # or both, or among context lines: find which
5384 for (my $i = 1; $i < @chunk; $i++) {
5385 if ($chunk[$i][0] eq 'incomplete') {
5386 $chunk[$i][0] = $chunk[$i-1][0];
5391 push @chunk, ["", ""];
5393 foreach my $line_info (@chunk) {
5394 my ($class, $line) = @$line_info;
5396 # print chunk headers
5397 if ($class && $class eq 'chunk_header') {
5398 print format_diff_line
($line, $class, $from, $to);
5402 ## print from accumulator when have some add/rem lines or end
5403 # of chunk (flush context lines), or when have add and rem
5404 # lines and new block is reached (otherwise add/rem lines could
5406 if (!$class || ((@rem || @add) && $class eq 'ctx') ||
5407 (@rem && @add && $class ne $prev_class)) {
5408 print_diff_lines
(\
@ctx, \
@rem, \
@add,
5409 $diff_style, $num_parents);
5410 @ctx = @rem = @add = ();
5413 ## adding lines to accumulator
5416 # rem, add or change
5417 if ($class eq 'rem') {
5419 } elsif ($class eq 'add') {
5423 if ($class eq 'ctx') {
5427 $prev_class = $class;
5431 sub git_patchset_body
{
5432 my ($fd, $diff_style, $difftree, $hash, @hash_parents) = @_;
5433 my ($hash_parent) = $hash_parents[0];
5435 my $is_combined = (@hash_parents > 1);
5437 my $patch_number = 0;
5442 my @chunk; # for side-by-side diff
5444 print "<div class=\"patchset\">\n";
5446 # skip to first patch
5447 while ($patch_line = <$fd>) {
5450 last if ($patch_line =~ m/^diff /);
5454 while ($patch_line) {
5456 # parse "git diff" header line
5457 if ($patch_line =~ m/^diff --git (\"(?:[^\\\"]*(?:\\.[^\\\"]*)*)\"|[^ "]*) (.*)$/) {
5458 # $1 is from_name, which we do not use
5459 $to_name = unquote
($2);
5460 $to_name =~ s!^b/!!;
5461 } elsif ($patch_line =~ m/^diff --(cc|combined) ("?.*"?)$/) {
5462 # $1 is 'cc' or 'combined', which we do not use
5463 $to_name = unquote
($2);
5468 # check if current patch belong to current raw line
5469 # and parse raw git-diff line if needed
5470 if (is_patch_split
($diffinfo, { 'to_file' => $to_name })) {
5471 # this is continuation of a split patch
5472 print "<div class=\"patch cont\">\n";
5474 # advance raw git-diff output if needed
5475 $patch_idx++ if defined $diffinfo;
5477 # read and prepare patch information
5478 $diffinfo = parsed_difftree_line
($difftree->[$patch_idx]);
5480 # compact combined diff output can have some patches skipped
5481 # find which patch (using pathname of result) we are at now;
5483 while ($to_name ne $diffinfo->{'to_file'}) {
5484 print "<div class=\"patch\" id=\"patch". ($patch_idx+1) ."\">\n" .
5485 format_diff_cc_simplified
($diffinfo, @hash_parents) .
5486 "</div>\n"; # class="patch"
5491 last if $patch_idx > $#$difftree;
5492 $diffinfo = parsed_difftree_line
($difftree->[$patch_idx]);
5496 # modifies %from, %to hashes
5497 parse_from_to_diffinfo
($diffinfo, \
%from, \
%to, @hash_parents);
5499 # this is first patch for raw difftree line with $patch_idx index
5500 # we index @$difftree array from 0, but number patches from 1
5501 print "<div class=\"patch\" id=\"patch". ($patch_idx+1) ."\">\n";
5505 #assert($patch_line =~ m/^diff /) if DEBUG;
5506 #assert($patch_line !~ m!$/$!) if DEBUG; # is chomp-ed
5508 # print "git diff" header
5509 print format_git_diff_header_line
($patch_line, $diffinfo,
5512 # print extended diff header
5513 print "<div class=\"diff extended_header\">\n";
5515 while ($patch_line = <$fd>) {
5518 last EXTENDED_HEADER
if ($patch_line =~ m/^--- |^diff /);
5520 print format_extended_diff_header_line
($patch_line, $diffinfo,
5523 print "</div>\n"; # class="diff extended_header"
5525 # from-file/to-file diff header
5526 if (! $patch_line) {
5527 print "</div>\n"; # class="patch"
5530 next PATCH
if ($patch_line =~ m/^diff /);
5531 #assert($patch_line =~ m/^---/) if DEBUG;
5533 my $last_patch_line = $patch_line;
5534 $patch_line = <$fd>;
5536 #assert($patch_line =~ m/^\+\+\+/) if DEBUG;
5538 print format_diff_from_to_header
($last_patch_line, $patch_line,
5539 $diffinfo, \
%from, \
%to,
5544 while ($patch_line = <$fd>) {
5547 next PATCH
if ($patch_line =~ m/^diff /);
5549 my $class = diff_line_class
($patch_line, \
%from, \
%to);
5551 if ($class eq 'chunk_header') {
5552 print_diff_chunk
($diff_style, scalar @hash_parents, \
%from, \
%to, @chunk);
5556 push @chunk, [ $class, $patch_line ];
5561 print_diff_chunk
($diff_style, scalar @hash_parents, \
%from, \
%to, @chunk);
5564 print "</div>\n"; # class="patch"
5567 # for compact combined (--cc) format, with chunk and patch simplification
5568 # the patchset might be empty, but there might be unprocessed raw lines
5569 for (++$patch_idx if $patch_number > 0;
5570 $patch_idx < @$difftree;
5572 # read and prepare patch information
5573 $diffinfo = parsed_difftree_line
($difftree->[$patch_idx]);
5575 # generate anchor for "patch" links in difftree / whatchanged part
5576 print "<div class=\"patch\" id=\"patch". ($patch_idx+1) ."\">\n" .
5577 format_diff_cc_simplified
($diffinfo, @hash_parents) .
5578 "</div>\n"; # class="patch"
5583 if ($patch_number == 0) {
5584 if (@hash_parents > 1) {
5585 print "<div class=\"diff nodifferences\">Trivial merge</div>\n";
5587 print "<div class=\"diff nodifferences\">No differences found</div>\n";
5591 print "</div>\n"; # class="patchset"
5594 # . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
5596 sub git_project_search_form
{
5597 my ($searchtext, $search_use_regexp) = @_;
5600 if ($project_filter) {
5601 $limit = " in '$project_filter/'";
5604 print "<div class=\"projsearch\">\n";
5605 print $cgi->start_form(-method => 'get', -action
=> $my_uri) .
5606 $cgi->hidden(-name
=> 'a', -value
=> 'project_list') . "\n";
5607 print $cgi->hidden(-name
=> 'pf', -value
=> $project_filter). "\n"
5608 if (defined $project_filter);
5609 print $cgi->textfield(-name
=> 's', -value
=> $searchtext,
5610 -title
=> "Search project by name and description$limit",
5611 -size
=> 60) . "\n" .
5612 "<span title=\"Extended regular expression\">" .
5613 $cgi->checkbox(-name
=> 'sr', -value
=> 1, -label
=> 're',
5614 -checked
=> $search_use_regexp) .
5616 $cgi->submit(-name
=> 'btnS', -value
=> 'Search') .
5617 $cgi->end_form() . "\n" .
5618 $cgi->a({-href
=> href
(project
=> undef, searchtext
=> undef,
5619 project_filter
=> $project_filter)},
5620 esc_html
("List all projects$limit")) . "<br />\n";
5624 # entry for given @keys needs filling if at least one of keys in list
5625 # is not present in %$project_info
5626 sub project_info_needs_filling
{
5627 my ($project_info, @keys) = @_;
5629 # return List::MoreUtils::any { !exists $project_info->{$_} } @keys;
5630 foreach my $key (@keys) {
5631 if (!exists $project_info->{$key}) {
5638 # fills project list info (age, description, owner, category, forks, etc.)
5639 # for each project in the list, removing invalid projects from
5640 # returned list, or fill only specified info.
5642 # Invalid projects are removed from the returned list if and only if you
5643 # ask 'age' or 'age_string' to be filled, because they are the only fields
5644 # that run unconditionally git command that requires repository, and
5645 # therefore do always check if project repository is invalid.
5648 # * fill_project_list_info(\@project_list, 'descr_long', 'ctags')
5649 # ensures that 'descr_long' and 'ctags' fields are filled
5650 # * @project_list = fill_project_list_info(\@project_list)
5651 # ensures that all fields are filled (and invalid projects removed)
5653 # NOTE: modifies $projlist, but does not remove entries from it
5654 sub fill_project_list_info
{
5655 my ($projlist, @wanted_keys) = @_;
5657 my $filter_set = sub { return @_; };
5659 my %wanted_keys = map { $_ => 1 } @wanted_keys;
5660 $filter_set = sub { return grep { $wanted_keys{$_} } @_; };
5663 my $show_ctags = gitweb_check_feature
('ctags');
5665 foreach my $pr (@$projlist) {
5666 if (project_info_needs_filling
($pr, $filter_set->('age', 'age_string'))) {
5667 my (@activity) = git_get_last_activity
($pr->{'path'});
5668 unless (@activity) {
5671 ($pr->{'age'}, $pr->{'age_string'}) = @activity;
5673 if (project_info_needs_filling
($pr, $filter_set->('descr', 'descr_long'))) {
5674 my $descr = git_get_project_description
($pr->{'path'}) || "";
5675 $descr = to_utf8
($descr);
5676 $pr->{'descr_long'} = $descr;
5677 $pr->{'descr'} = chop_str
($descr, $projects_list_description_width, 5);
5679 if (project_info_needs_filling
($pr, $filter_set->('owner'))) {
5680 $pr->{'owner'} = git_get_project_owner
("$pr->{'path'}") || "";
5683 project_info_needs_filling
($pr, $filter_set->('ctags'))) {
5684 $pr->{'ctags'} = git_get_project_ctags
($pr->{'path'});
5686 if ($projects_list_group_categories &&
5687 project_info_needs_filling
($pr, $filter_set->('category'))) {
5688 my $cat = git_get_project_category
($pr->{'path'}) ||
5689 $project_list_default_category;
5690 $pr->{'category'} = to_utf8
($cat);
5693 push @projects, $pr;
5699 sub sort_projects_list
{
5700 my ($projlist, $order) = @_;
5704 return sub { $a->{$key} cmp $b->{$key} };
5707 sub order_num_then_undef
{
5710 defined $a->{$key} ?
5711 (defined $b->{$key} ? $a->{$key} <=> $b->{$key} : -1) :
5712 (defined $b->{$key} ? 1 : 0)
5717 project
=> order_str
('path'),
5718 descr
=> order_str
('descr_long'),
5719 owner
=> order_str
('owner'),
5720 age
=> order_num_then_undef
('age'),
5723 my $ordering = $orderings{$order};
5724 return defined $ordering ? sort $ordering @$projlist : @$projlist;
5727 # returns a hash of categories, containing the list of project
5728 # belonging to each category
5729 sub build_projlist_by_category
{
5730 my ($projlist, $from, $to) = @_;
5733 $from = 0 unless defined $from;
5734 $to = $#$projlist if (!defined $to || $#$projlist < $to);
5736 for (my $i = $from; $i <= $to; $i++) {
5737 my $pr = $projlist->[$i];
5738 push @{$categories{ $pr->{'category'} }}, $pr;
5741 return wantarray ? %categories : \
%categories;
5744 # print 'sort by' <th> element, generating 'sort by $name' replay link
5745 # if that order is not selected
5747 print format_sort_th
(@_);
5750 sub format_sort_th
{
5751 my ($name, $order, $header) = @_;
5753 $header ||= ucfirst($name);
5755 if ($order eq $name) {
5756 $sort_th .= "<th>$header</th>\n";
5758 $sort_th .= "<th>" .
5759 $cgi->a({-href
=> href
(-replay
=>1, order
=>$name),
5760 -class => "header"}, $header) .
5767 sub git_project_list_rows
{
5768 my ($projlist, $from, $to, $check_forks) = @_;
5770 $from = 0 unless defined $from;
5771 $to = $#$projlist if (!defined $to || $#$projlist < $to);
5774 for (my $i = $from; $i <= $to; $i++) {
5775 my $pr = $projlist->[$i];
5778 print "<tr class=\"dark\">\n";
5780 print "<tr class=\"light\">\n";
5786 if ($pr->{'forks'}) {
5787 my $nforks = scalar @{$pr->{'forks'}};
5789 print $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"forks"),
5790 -title
=> "$nforks forks"}, "+");
5792 print $cgi->span({-title
=> "$nforks forks"}, "+");
5797 print "<td>" . $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"summary"),
5799 esc_html_match_hl
($pr->{'path'} =~ s/\.git$//r, $search_regexp)) .
5801 "<td>" . $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"summary"),
5803 -title
=> $pr->{'descr_long'}},
5805 ? esc_html_match_hl_chopped
($pr->{'descr_long'},
5806 $pr->{'descr'}, $search_regexp)
5807 : esc_html
($pr->{'descr'})) .
5809 unless ($omit_owner) {
5810 print "<td><i>" . chop_and_escape_str
($pr->{'owner'}, 15) . "</i></td>\n";
5812 unless ($omit_age_column) {
5813 print "<td class=\"". age_class
($pr->{'age'}) . "\">" .
5814 (defined $pr->{'age_string'} ? $pr->{'age_string'} : "No commits") . "</td>\n";
5816 print"<td class=\"link\">" .
5817 $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"summary")}, "summary") . " | " .
5818 $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"shortlog")}, "shortlog") . " | " .
5819 $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"log")}, "log") . " | " .
5820 $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"tree")}, "tree") .
5821 ($pr->{'forks'} ? " | " . $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"forks")}, "forks") : '') .
5822 " | " . "snapshot (" . join(' ', map
5825 project
=>$pr->{'path'},
5830 }, $known_snapshot_formats{$_}{'display'})
5831 , @snapshot_fmts) . ")" .
5837 sub git_project_list_body
{
5838 # actually uses global variable $project
5839 my ($projlist, $order, $from, $to, $extra, $no_header) = @_;
5840 my @projects = @$projlist;
5842 my $check_forks = gitweb_check_feature
('forks');
5843 my $show_ctags = gitweb_check_feature
('ctags');
5844 my $tagfilter = $show_ctags ? $input_params{'ctag'} : undef;
5845 $check_forks = undef
5846 if ($tagfilter || $search_regexp);
5848 # filtering out forks before filling info allows to do less work
5849 @projects = filter_forks_from_projects_list
(\
@projects)
5851 # search_projects_list pre-fills required info
5852 @projects = search_projects_list
(\
@projects,
5853 'search_regexp' => $search_regexp,
5854 'tagfilter' => $tagfilter)
5855 if ($tagfilter || $search_regexp);
5857 my @all_fields = ('descr', 'descr_long', 'ctags', 'category');
5858 push @all_fields, ('age', 'age_string') unless($omit_age_column);
5859 push @all_fields, 'owner' unless($omit_owner);
5860 @projects = fill_project_list_info
(\
@projects, @all_fields);
5862 $order ||= $default_projects_order;
5863 $from = 0 unless defined $from;
5864 $to = $#projects if (!defined $to || $#projects < $to);
5869 "<b>No such projects found</b><br />\n".
5870 "Click ".$cgi->a({-href
=>href
(project
=>undef)},"here")." to view all projects<br />\n".
5871 "</center>\n<br />\n";
5875 @projects = sort_projects_list
(\
@projects, $order);
5878 my $ctags = git_gather_all_ctags
(\
@projects);
5879 my $cloud = git_populate_project_tagcloud
($ctags);
5880 print git_show_project_tagcloud
($cloud, 64);
5883 print "<table class=\"project_list\">\n";
5884 unless ($no_header) {
5887 print "<th></th>\n";
5889 print_sort_th
('project', $order, 'Project');
5890 print_sort_th
('descr', $order, 'Description');
5891 print_sort_th
('owner', $order, 'Owner') unless $omit_owner;
5892 print_sort_th
('age', $order, 'Last Change') unless $omit_age_column;
5893 print "<th></th>\n" . # for links
5897 if ($projects_list_group_categories) {
5898 # only display categories with projects in the $from-$to window
5899 @projects = sort {$a->{'category'} cmp $b->{'category'}} @projects[$from..$to];
5900 my %categories = build_projlist_by_category
(\
@projects, $from, $to);
5901 foreach my $cat (sort keys %categories) {
5902 unless ($cat eq "") {
5905 print "<td></td>\n";
5907 print "<td class=\"category\" colspan=\"5\">".esc_html
($cat)."</td>\n";
5911 git_project_list_rows
($categories{$cat}, undef, undef, $check_forks);
5914 git_project_list_rows
(\
@projects, $from, $to, $check_forks);
5917 if (defined $extra) {
5920 print "<td></td>\n";
5922 print "<td colspan=\"5\">$extra</td>\n" .
5929 # uses global variable $project
5930 my ($commitlist, $from, $to, $refs, $extra) = @_;
5932 $from = 0 unless defined $from;
5933 $to = $#{$commitlist} if (!defined $to || $#{$commitlist} < $to);
5935 for (my $i = 0; $i <= $to; $i++) {
5936 my %co = %{$commitlist->[$i]};
5938 my $commit = $co{'id'};
5939 my $ref = format_ref_marker
($refs, $commit);
5940 git_print_header_div
('commit',
5941 "<span class=\"age\">$co{'age_string'}</span>" .
5942 esc_html
($co{'title'}) . $ref,
5944 print "<div class=\"title_text\">\n" .
5945 "<div class=\"log_link\">\n" .
5946 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$commit)}, "commit") .
5948 $cgi->a({-href
=> href
(action
=>"commitdiff", hash
=>$commit)}, "commitdiff") .
5950 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$commit, hash_base
=>$commit)}, "tree") .
5953 git_print_authorship
(\
%co, -tag
=> 'span');
5954 print "<br/>\n</div>\n";
5956 print "<div class=\"log_body\">\n";
5957 git_print_log
($co{'comment'}, -final_empty_line
=> 1);
5961 print "<div class=\"page_nav\">\n";
5967 sub git_shortlog_body
{
5968 # uses global variable $project
5969 my ($commitlist, $from, $to, $refs, $extra) = @_;
5971 $from = 0 unless defined $from;
5972 $to = $#{$commitlist} if (!defined $to || $#{$commitlist} < $to);
5974 print "<table class=\"shortlog\">\n";
5976 for (my $i = $from; $i <= $to; $i++) {
5977 my %co = %{$commitlist->[$i]};
5978 my $commit = $co{'id'};
5979 my $ref = format_ref_marker
($refs, $commit);
5981 print "<tr class=\"dark\">\n";
5983 print "<tr class=\"light\">\n";
5986 # git_summary() used print "<td><i>$co{'age_string'}</i></td>\n" .
5987 print "<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n" .
5988 format_author_html
('td', \
%co, 10) . "<td>";
5989 print format_subject_html
($co{'title'}, $co{'title_short'},
5990 href
(action
=>"commit", hash
=>$commit), $ref);
5992 "<td class=\"link\">" .
5993 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$commit)}, "commit") . " | " .
5994 $cgi->a({-href
=> href
(action
=>"commitdiff", hash
=>$commit)}, "commitdiff") . " | " .
5995 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$commit, hash_base
=>$commit)}, "tree");
5996 my $snapshot_links = format_snapshot_links
($commit);
5997 if (defined $snapshot_links) {
5998 print " | " . $snapshot_links;
6003 if (defined $extra) {
6005 "<td colspan=\"4\">$extra</td>\n" .
6011 sub git_history_body
{
6012 # Warning: assumes constant type (blob or tree) during history
6013 my ($commitlist, $from, $to, $refs, $extra,
6014 $file_name, $file_hash, $ftype) = @_;
6016 $from = 0 unless defined $from;
6017 $to = $#{$commitlist} unless (defined $to && $to <= $#{$commitlist});
6019 print "<table class=\"history\">\n";
6021 for (my $i = $from; $i <= $to; $i++) {
6022 my %co = %{$commitlist->[$i]};
6026 my $commit = $co{'id'};
6028 my $ref = format_ref_marker
($refs, $commit);
6031 print "<tr class=\"dark\">\n";
6033 print "<tr class=\"light\">\n";
6036 print "<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n" .
6037 # shortlog: format_author_html('td', \%co, 10)
6038 format_author_html
('td', \
%co, 15, 3) . "<td>";
6039 # originally git_history used chop_str($co{'title'}, 50)
6040 print format_subject_html
($co{'title'}, $co{'title_short'},
6041 href
(action
=>"commit", hash
=>$commit), $ref);
6043 "<td class=\"link\">" .
6044 $cgi->a({-href
=> href
(action
=>$ftype, hash_base
=>$commit, file_name
=>$file_name)}, $ftype) . " | " .
6045 $cgi->a({-href
=> href
(action
=>"commitdiff", hash
=>$commit)}, "commitdiff");
6047 if ($ftype eq 'blob') {
6049 $cgi->a({-href
=> href
(action
=>"blob_plain", hash_base
=>$commit, file_name
=>$file_name)}, "raw");
6051 my $blob_current = $file_hash;
6052 my $blob_parent = git_get_hash_by_path
($commit, $file_name);
6053 if (defined $blob_current && defined $blob_parent &&
6054 $blob_current ne $blob_parent) {
6056 $cgi->a({-href
=> href
(action
=>"blobdiff",
6057 hash
=>$blob_current, hash_parent
=>$blob_parent,
6058 hash_base
=>$hash_base, hash_parent_base
=>$commit,
6059 file_name
=>$file_name)},
6066 if (defined $extra) {
6068 "<td colspan=\"4\">$extra</td>\n" .
6075 # uses global variable $project
6076 my ($taglist, $from, $to, $extra) = @_;
6077 $from = 0 unless defined $from;
6078 $to = $#{$taglist} if (!defined $to || $#{$taglist} < $to);
6080 print "<table class=\"tags\">\n";
6082 for (my $i = $from; $i <= $to; $i++) {
6083 my $entry = $taglist->[$i];
6085 my $comment = $tag{'subject'};
6087 if (defined $comment) {
6088 $comment_short = chop_str
($comment, 30, 5);
6091 print "<tr class=\"dark\">\n";
6093 print "<tr class=\"light\">\n";
6096 if (defined $tag{'age'}) {
6097 print "<td><i>$tag{'age'}</i></td>\n";
6099 print "<td></td>\n";
6102 $cgi->a({-href
=> href
(action
=>$tag{'reftype'}, hash
=>$tag{'refid'}),
6103 -class => "list name"}, esc_html
($tag{'name'})) .
6106 if (defined $comment) {
6107 print format_subject_html
($comment, $comment_short,
6108 href
(action
=>"tag", hash
=>$tag{'id'}));
6111 "<td class=\"selflink\">";
6112 if ($tag{'type'} eq "tag") {
6113 print $cgi->a({-href
=> href
(action
=>"tag", hash
=>$tag{'id'})}, "tag");
6118 "<td class=\"link\">" . " | " .
6119 $cgi->a({-href
=> href
(action
=>$tag{'reftype'}, hash
=>$tag{'refid'})}, $tag{'reftype'});
6120 if ($tag{'reftype'} eq "commit") {
6121 print " | " . $cgi->a({-href
=> href
(action
=>"shortlog", hash
=>$tag{'fullname'})}, "shortlog") .
6122 " | " . $cgi->a({-href
=> href
(action
=>"log", hash
=>$tag{'fullname'})}, "log");
6123 } elsif ($tag{'reftype'} eq "blob") {
6124 print " | " . $cgi->a({-href
=> href
(action
=>"blob_plain", hash
=>$tag{'refid'})}, "raw");
6129 if (defined $extra) {
6131 "<td colspan=\"5\">$extra</td>\n" .
6137 sub git_heads_body
{
6138 # uses global variable $project
6139 my ($headlist, $head_at, $from, $to, $extra) = @_;
6140 $from = 0 unless defined $from;
6141 $to = $#{$headlist} if (!defined $to || $#{$headlist} < $to);
6143 print "<table class=\"heads\">\n";
6145 for (my $i = $from; $i <= $to; $i++) {
6146 my $entry = $headlist->[$i];
6148 my $curr = defined $head_at && $ref{'id'} eq $head_at;
6150 print "<tr class=\"dark\">\n";
6152 print "<tr class=\"light\">\n";
6155 print "<td><i>$ref{'age'}</i></td>\n" .
6156 ($curr ? "<td class=\"current_head\">" : "<td>") .
6157 $cgi->a({-href
=> href
(action
=>"shortlog", hash
=>$ref{'fullname'}),
6158 -class => "list name"},esc_html
($ref{'name'})) .
6160 "<td class=\"link\">" .
6161 $cgi->a({-href
=> href
(action
=>"shortlog", hash
=>$ref{'fullname'})}, "shortlog") . " | " .
6162 $cgi->a({-href
=> href
(action
=>"log", hash
=>$ref{'fullname'})}, "log") . " | " .
6163 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$ref{'fullname'}, hash_base
=>$ref{'fullname'})}, "tree") .
6167 if (defined $extra) {
6169 "<td colspan=\"3\">$extra</td>\n" .
6175 # Display a single remote block
6176 sub git_remote_block
{
6177 my ($remote, $rdata, $limit, $head) = @_;
6179 my $heads = $rdata->{'heads'};
6180 my $fetch = $rdata->{'fetch'};
6181 my $push = $rdata->{'push'};
6183 my $urls_table = "<table class=\"projects_list\">\n" ;
6185 if (defined $fetch) {
6186 if ($fetch eq $push) {
6187 $urls_table .= format_repo_url
("URL", $fetch);
6189 $urls_table .= format_repo_url
("Fetch URL", $fetch);
6190 $urls_table .= format_repo_url
("Push URL", $push) if defined $push;
6192 } elsif (defined $push) {
6193 $urls_table .= format_repo_url
("Push URL", $push);
6195 $urls_table .= format_repo_url
("", "No remote URL");
6198 $urls_table .= "</table>\n";
6201 if (defined $limit && $limit < @$heads) {
6202 $dots = $cgi->a({-href
=> href
(action
=>"remotes", hash
=>$remote)}, "...");
6206 git_heads_body
($heads, $head, 0, $limit, $dots);
6209 # Display a list of remote names with the respective fetch and push URLs
6210 sub git_remotes_list
{
6211 my ($remotedata, $limit) = @_;
6212 print "<table class=\"heads\">\n";
6214 my @remotes = sort keys %$remotedata;
6216 my $limited = $limit && $limit < @remotes;
6218 $#remotes = $limit - 1 if $limited;
6220 while (my $remote = shift @remotes) {
6221 my $rdata = $remotedata->{$remote};
6222 my $fetch = $rdata->{'fetch'};
6223 my $push = $rdata->{'push'};
6225 print "<tr class=\"dark\">\n";
6227 print "<tr class=\"light\">\n";
6231 $cgi->a({-href
=> href
(action
=>'remotes', hash
=>$remote),
6232 -class=> "list name"},esc_html
($remote)) .
6234 print "<td class=\"link\">" .
6235 (defined $fetch ? $cgi->a({-href
=> $fetch}, "fetch") : "fetch") .
6237 (defined $push ? $cgi->a({-href
=> $push}, "push") : "push") .
6245 "<td colspan=\"3\">" .
6246 $cgi->a({-href
=> href
(action
=>"remotes")}, "...") .
6247 "</td>\n" . "</tr>\n";
6253 # Display remote heads grouped by remote, unless there are too many
6254 # remotes, in which case we only display the remote names
6255 sub git_remotes_body
{
6256 my ($remotedata, $limit, $head) = @_;
6257 if ($limit and $limit < keys %$remotedata) {
6258 git_remotes_list
($remotedata, $limit);
6260 fill_remote_heads
($remotedata);
6261 while (my ($remote, $rdata) = each %$remotedata) {
6262 git_print_section
({-class=>"remote", -id
=>$remote},
6263 ["remotes", $remote, $remote], sub {
6264 git_remote_block
($remote, $rdata, $limit, $head);
6270 sub git_search_message
{
6274 if ($searchtype eq 'commit') {
6275 $greptype = "--grep=";
6276 } elsif ($searchtype eq 'author') {
6277 $greptype = "--author=";
6278 } elsif ($searchtype eq 'committer') {
6279 $greptype = "--committer=";
6281 $greptype .= $searchtext;
6282 my @commitlist = parse_commits
($hash, 101, (100 * $page), undef,
6283 $greptype, '--regexp-ignore-case',
6284 $search_use_regexp ? '--extended-regexp' : '--fixed-strings');
6286 my $paging_nav = '';
6289 $cgi->a({-href
=> href
(-replay
=>1, page
=>undef)},
6292 $cgi->a({-href
=> href
(-replay
=>1, page
=>$page-1),
6293 -accesskey
=> "p", -title
=> "Alt-p"}, "prev");
6295 $paging_nav .= "first ⋅ prev";
6298 if ($#commitlist >= 100) {
6300 $cgi->a({-href
=> href
(-replay
=>1, page
=>$page+1),
6301 -accesskey
=> "n", -title
=> "Alt-n"}, "next");
6302 $paging_nav .= " ⋅ $next_link";
6304 $paging_nav .= " ⋅ next";
6309 git_print_page_nav
('','', $hash,$co{'tree'},$hash, $paging_nav);
6310 git_print_header_div
('commit', esc_html
($co{'title'}), $hash);
6311 if ($page == 0 && !@commitlist) {
6312 print "<p>No match.</p>\n";
6314 git_search_grep_body
(\
@commitlist, 0, 99, $next_link);
6320 sub git_search_changes
{
6324 open my $fd, '-|', git_cmd
(), '--no-pager', 'log', @diff_opts,
6325 '--pretty=format:%H', '--no-abbrev', '--raw', "-S$searchtext",
6326 ($search_use_regexp ? '--pickaxe-regex' : ())
6327 or die_error
(500, "Open git-log failed");
6331 git_print_page_nav
('','', $hash,$co{'tree'},$hash);
6332 git_print_header_div
('commit', esc_html
($co{'title'}), $hash);
6334 print "<table class=\"pickaxe search\">\n";
6338 while (my $line = <$fd>) {
6342 my %set = parse_difftree_raw_line
($line);
6343 if (defined $set{'commit'}) {
6344 # finish previous commit
6347 "<td class=\"link\">" .
6348 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$co{'id'})},
6351 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$co{'tree'},
6352 hash_base
=>$co{'id'})},
6359 print "<tr class=\"dark\">\n";
6361 print "<tr class=\"light\">\n";
6364 %co = parse_commit
($set{'commit'});
6365 my $author = chop_and_escape_str
($co{'author_name'}, 15, 5);
6366 print "<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n" .
6367 "<td><i>$author</i></td>\n" .
6369 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$co{'id'}),
6370 -class => "list subject"},
6371 chop_and_escape_str
($co{'title'}, 50) . "<br/>");
6372 } elsif (defined $set{'to_id'}) {
6373 next if is_deleted
(\
%set);
6375 print $cgi->a({-href
=> href
(action
=>"blob", hash_base
=>$co{'id'},
6376 hash
=>$set{'to_id'}, file_name
=>$set{'to_file'}),
6378 "<span class=\"match\">" . esc_path
($set{'file'}) . "</span>") .
6384 # finish last commit (warning: repetition!)
6387 "<td class=\"link\">" .
6388 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$co{'id'})},
6391 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$co{'tree'},
6392 hash_base
=>$co{'id'})},
6403 sub git_search_files
{
6407 open my $fd, "-|", git_cmd
(), 'grep', '-n', '-z',
6408 $search_use_regexp ? ('-E', '-i') : '-F',
6409 $searchtext, $co{'tree'}
6410 or die_error
(500, "Open git-grep failed");
6414 git_print_page_nav
('','', $hash,$co{'tree'},$hash);
6415 git_print_header_div
('commit', esc_html
($co{'title'}), $hash);
6417 print "<table class=\"grep_search\">\n";
6422 while (my $line = <$fd>) {
6424 my ($file, $lno, $ltext, $binary);
6425 last if ($matches++ > 1000);
6426 if ($line =~ /^Binary file (.+) matches$/) {
6430 ($file, $lno, $ltext) = split(/\0/, $line, 3);
6431 $file =~ s/^$co{'tree'}://;
6433 if ($file ne $lastfile) {
6434 $lastfile and print "</td></tr>\n";
6436 print "<tr class=\"dark\">\n";
6438 print "<tr class=\"light\">\n";
6440 $file_href = href
(action
=>"blob", hash_base
=>$co{'id'},
6442 print "<td class=\"list\">".
6443 $cgi->a({-href
=> $file_href, -class => "list"}, esc_path
($file));
6444 print "</td><td>\n";
6448 print "<div class=\"binary\">Binary file</div>\n";
6450 $ltext = untabify
($ltext);
6451 if ($ltext =~ m/^(.*)($search_regexp)(.*)$/i) {
6452 $ltext = esc_html
($1, -nbsp
=>1);
6453 $ltext .= '<span class="match">';
6454 $ltext .= esc_html
($2, -nbsp
=>1);
6455 $ltext .= '</span>';
6456 $ltext .= esc_html
($3, -nbsp
=>1);
6458 $ltext = esc_html
($ltext, -nbsp
=>1);
6460 print "<div class=\"pre\">" .
6461 $cgi->a({-href
=> $file_href.'#l'.$lno,
6462 -class => "linenr"}, sprintf('%4i', $lno)) .
6463 ' ' . $ltext . "</div>\n";
6467 print "</td></tr>\n";
6468 if ($matches > 1000) {
6469 print "<div class=\"diff nodifferences\">Too many matches, listing trimmed</div>\n";
6472 print "<div class=\"diff nodifferences\">No matches found</div>\n";
6481 sub git_search_grep_body
{
6482 my ($commitlist, $from, $to, $extra) = @_;
6483 $from = 0 unless defined $from;
6484 $to = $#{$commitlist} if (!defined $to || $#{$commitlist} < $to);
6486 print "<table class=\"commit_search\">\n";
6488 for (my $i = $from; $i <= $to; $i++) {
6489 my %co = %{$commitlist->[$i]};
6493 my $commit = $co{'id'};
6495 print "<tr class=\"dark\">\n";
6497 print "<tr class=\"light\">\n";
6500 print "<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n" .
6501 format_author_html
('td', \
%co, 15, 5) .
6503 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$co{'id'}),
6504 -class => "list subject"},
6505 chop_and_escape_str
($co{'title'}, 50) . "<br/>");
6506 my $comment = $co{'comment'};
6507 foreach my $line (@$comment) {
6508 if ($line =~ m/^(.*?)($search_regexp)(.*)$/i) {
6509 my ($lead, $match, $trail) = ($1, $2, $3);
6510 $match = chop_str
($match, 70, 5, 'center');
6511 my $contextlen = int((80 - length($match))/2);
6512 $contextlen = 30 if ($contextlen > 30);
6513 $lead = chop_str
($lead, $contextlen, 10, 'left');
6514 $trail = chop_str
($trail, $contextlen, 10, 'right');
6516 $lead = esc_html
($lead);
6517 $match = esc_html
($match);
6518 $trail = esc_html
($trail);
6520 print "$lead<span class=\"match\">$match</span>$trail<br />";
6524 "<td class=\"link\">" .
6525 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$co{'id'})}, "commit") .
6527 $cgi->a({-href
=> href
(action
=>"commitdiff", hash
=>$co{'id'})}, "commitdiff") .
6529 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$co{'tree'}, hash_base
=>$co{'id'})}, "tree");
6533 if (defined $extra) {
6535 "<td colspan=\"3\">$extra</td>\n" .
6541 ## ======================================================================
6542 ## ======================================================================
6545 sub git_project_list
{
6546 my $order = $input_params{'order'};
6547 if (defined $order && $order !~ m/none|project|descr|owner|age/) {
6548 die_error
(400, "Unknown order parameter");
6551 my @list = git_get_projects_list
($project_filter, $strict_export);
6553 die_error
(404, "No projects found");
6557 if (defined $home_text && -f
$home_text) {
6558 print "<div class=\"index_include\">\n";
6559 insert_file
($home_text);
6563 git_project_search_form
($searchtext, $search_use_regexp);
6564 git_project_list_body
(\
@list, $order);
6569 my $order = $input_params{'order'};
6570 if (defined $order && $order !~ m/none|project|descr|owner|age/) {
6571 die_error
(400, "Unknown order parameter");
6574 my $filter = $project;
6575 $filter =~ s/\.git$//;
6576 my @list = git_get_projects_list
($filter);
6578 die_error
(404, "No forks found");
6582 git_print_page_nav
('','');
6583 git_print_header_div
('summary', "$project forks");
6584 git_project_list_body
(\
@list, $order);
6588 sub git_project_index
{
6589 my @projects = git_get_projects_list
($project_filter, $strict_export);
6591 die_error
(404, "No projects found");
6595 -type
=> 'text/plain',
6596 -charset
=> 'utf-8',
6597 -content_disposition
=> 'inline; filename="index.aux"');
6599 foreach my $pr (@projects) {
6600 if (!exists $pr->{'owner'}) {
6601 $pr->{'owner'} = git_get_project_owner
("$pr->{'path'}");
6604 my ($path, $owner) = ($pr->{'path'}, $pr->{'owner'});
6605 # quote as in CGI::Util::encode, but keep the slash, and use '+' for ' '
6606 $path =~ s/([^a-zA-Z0-9_.\-\/ ])/sprintf
("%%%02X", ord($1))/eg
;
6607 $owner =~ s/([^a-zA-Z0-9_.\-\/ ])/sprintf
("%%%02X", ord($1))/eg
;
6611 print "$path $owner\n";
6616 my $descr = git_get_project_description
($project) || "none";
6617 my %co = parse_commit
("HEAD");
6618 my %cd = %co ? parse_date
($co{'committer_epoch'}, $co{'committer_tz'}) : ();
6619 my $head = $co{'id'};
6620 my $remote_heads = gitweb_check_feature
('remote_heads');
6622 my $owner = git_get_project_owner
($project);
6624 my $refs = git_get_references
();
6625 # These get_*_list functions return one more to allow us to see if
6626 # there are more ...
6627 my @taglist = git_get_tags_list
(16);
6628 my @headlist = git_get_heads_list
(16);
6629 my %remotedata = $remote_heads ? git_get_remotes_list
() : ();
6631 my $check_forks = gitweb_check_feature
('forks');
6634 # find forks of a project
6635 my $filter = $project;
6636 $filter =~ s/\.git$//;
6637 @forklist = git_get_projects_list
($filter);
6638 # filter out forks of forks
6639 @forklist = filter_forks_from_projects_list
(\
@forklist)
6644 git_print_page_nav
('summary','', $head);
6646 print "<div class=\"title\"> </div>\n";
6647 print "<table class=\"projects_list\">\n" .
6648 "<tr id=\"metadata_desc\"><td>description</td><td>" . esc_html
($descr) . "</td></tr>\n";
6649 if ($owner and not $omit_owner) {
6650 print "<tr id=\"metadata_owner\"><td>owner</td><td>" . esc_html
($owner) . "</td></tr>\n";
6652 if (defined $cd{'rfc2822'}) {
6653 print "<tr id=\"metadata_lchange\"><td>last change</td>" .
6654 "<td>".format_timestamp_html
(\
%cd)."</td></tr>\n";
6657 # use per project git URL list in $projectroot/$project/cloneurl
6658 # or make project git URL from git base URL and project name
6659 my $url_tag = "URL";
6660 my @url_list = git_get_project_url_list
($project);
6661 @url_list = map { "$_/$project" } @git_base_url_list unless @url_list;
6662 foreach my $git_url (@url_list) {
6663 next unless $git_url;
6664 print format_repo_url
($url_tag, $git_url);
6669 my $show_ctags = gitweb_check_feature
('ctags');
6671 my $ctags = git_get_project_ctags
($project);
6673 # without ability to add tags, don't show if there are none
6674 my $cloud = git_populate_project_tagcloud
($ctags);
6675 print "<tr id=\"metadata_ctags\">" .
6676 "<td>content tags</td>" .
6677 "<td>".git_show_project_tagcloud
($cloud, 48)."</td>" .
6684 # If XSS prevention is on, we don't include README.html.
6685 # TODO: Allow a readme in some safe format.
6686 if (!$prevent_xss && -s
"$projectroot/$project/README.html") {
6687 print "<div class=\"title\">readme</div>\n" .
6688 "<div class=\"readme\">\n";
6689 insert_file
("$projectroot/$project/README.html");
6690 print "\n</div>\n"; # class="readme"
6693 # we need to request one more than 16 (0..15) to check if
6695 my @commitlist = $head ? parse_commits
($head, 17) : ();
6697 git_print_header_div
('shortlog');
6698 git_shortlog_body
(\
@commitlist, 0, 15, $refs,
6699 $#commitlist <= 15 ? undef :
6700 $cgi->a({-href
=> href
(action
=>"shortlog")}, "..."));
6704 git_print_header_div
('tags');
6705 git_tags_body
(\
@taglist, 0, 15,
6706 $#taglist <= 15 ? undef :
6707 $cgi->a({-href
=> href
(action
=>"tags")}, "..."));
6711 git_print_header_div
('heads');
6712 git_heads_body
(\
@headlist, $head, 0, 15,
6713 $#headlist <= 15 ? undef :
6714 $cgi->a({-href
=> href
(action
=>"heads")}, "..."));
6718 git_print_header_div
('remotes');
6719 git_remotes_body
(\
%remotedata, 15, $head);
6723 git_print_header_div
('forks');
6724 git_project_list_body
(\
@forklist, 'age', 0, 15,
6725 $#forklist <= 15 ? undef :
6726 $cgi->a({-href
=> href
(action
=>"forks")}, "..."),
6734 my %tag = parse_tag
($hash);
6737 die_error
(404, "Unknown tag object");
6740 my $head = git_get_head_hash
($project);
6742 git_print_page_nav
('','', $head,undef,$head);
6743 git_print_header_div
('commit', esc_html
($tag{'name'}), $hash);
6744 print "<div class=\"title_text\">\n" .
6745 "<table class=\"object_header\">\n" .
6747 "<td>object</td>\n" .
6748 "<td>" . $cgi->a({-class => "list", -href
=> href
(action
=>$tag{'type'}, hash
=>$tag{'object'})},
6749 $tag{'object'}) . "</td>\n" .
6750 "<td class=\"link\">" . $cgi->a({-href
=> href
(action
=>$tag{'type'}, hash
=>$tag{'object'})},
6751 $tag{'type'}) . "</td>\n" .
6753 if (defined($tag{'author'})) {
6754 git_print_authorship_rows
(\
%tag, 'author');
6756 print "</table>\n\n" .
6758 print "<div class=\"page_body\">";
6759 my $comment = $tag{'comment'};
6760 foreach my $line (@$comment) {
6762 print esc_html
($line, -nbsp
=>1) . "<br/>\n";
6768 sub git_blame_common
{
6769 my $format = shift || 'porcelain';
6770 if ($format eq 'porcelain' && $input_params{'javascript'}) {
6771 $format = 'incremental';
6772 $action = 'blame_incremental'; # for page title etc
6776 gitweb_check_feature
('blame')
6777 or die_error
(403, "Blame view not allowed");
6780 die_error
(400, "No file name given") unless $file_name;
6781 $hash_base ||= git_get_head_hash
($project);
6782 die_error
(404, "Couldn't find base commit") unless $hash_base;
6783 my %co = parse_commit
($hash_base)
6784 or die_error
(404, "Commit not found");
6786 if (!defined $hash) {
6787 $hash = git_get_hash_by_path
($hash_base, $file_name, "blob")
6788 or die_error
(404, "Error looking up file");
6790 $ftype = git_get_type
($hash);
6791 if ($ftype !~ "blob") {
6792 die_error
(400, "Object is not a blob");
6797 if ($format eq 'incremental') {
6798 # get file contents (as base)
6799 open $fd, "-|", git_cmd
(), 'cat-file', 'blob', $hash
6800 or die_error
(500, "Open git-cat-file failed");
6801 } elsif ($format eq 'data') {
6802 # run git-blame --incremental
6803 open $fd, "-|", git_cmd
(), "blame", "--incremental",
6804 $hash_base, "--", $file_name
6805 or die_error
(500, "Open git-blame --incremental failed");
6807 # run git-blame --porcelain
6808 open $fd, "-|", git_cmd
(), "blame", '-p',
6809 $hash_base, '--', $file_name
6810 or die_error
(500, "Open git-blame --porcelain failed");
6812 binmode $fd, ':utf8';
6814 # incremental blame data returns early
6815 if ($format eq 'data') {
6817 -type
=>"text/plain", -charset
=> "utf-8",
6818 -status
=> "200 OK");
6819 local $| = 1; # output autoflush
6820 while (my $line = <$fd>) {
6821 print to_utf8
($line);
6824 or print "ERROR $!\n";
6827 if (defined $t0 && gitweb_check_feature
('timed')) {
6829 tv_interval
($t0, [ gettimeofday
() ]).
6830 ' '.$number_of_git_cmds;
6840 $cgi->a({-href
=> href
(action
=>"blob", -replay
=>1)},
6843 if ($format eq 'incremental') {
6845 $cgi->a({-href
=> href
(action
=>"blame", javascript
=>0, -replay
=>1)},
6846 "blame") . " (non-incremental)";
6849 $cgi->a({-href
=> href
(action
=>"blame_incremental", -replay
=>1)},
6850 "blame") . " (incremental)";
6854 $cgi->a({-href
=> href
(action
=>"history", -replay
=>1)},
6857 $cgi->a({-href
=> href
(action
=>$action, file_name
=>$file_name)},
6859 git_print_page_nav
('','', $hash_base,$co{'tree'},$hash_base, $formats_nav);
6860 git_print_header_div
('commit', esc_html
($co{'title'}), $hash_base);
6861 git_print_page_path
($file_name, $ftype, $hash_base);
6864 if ($format eq 'incremental') {
6865 print "<noscript>\n<div class=\"error\"><center><b>\n".
6866 "This page requires JavaScript to run.\n Use ".
6867 $cgi->a({-href
=> href
(action
=>'blame',javascript
=>0,-replay
=>1)},
6870 "</b></center></div>\n</noscript>\n";
6872 print qq
!<div id
="progress_bar" style
="width: 100%; background-color: yellow"></div
>\n!;
6875 print qq
!<div
class="page_body">\n!;
6876 print qq
!<div id
="progress_info">... / ...</div
>\n!
6877 if ($format eq 'incremental');
6878 print qq
!<table id
="blame_table" class="blame" width
="100%">\n!.
6879 #qq!<col width="5.5em" /><col width="2.5em" /><col width="*" />\n!.
6881 qq
!<tr
><th
>Commit
</th><th>Line</th
><th
>Data
</th></tr
>\n!.
6885 my @rev_color = qw(light dark);
6886 my $num_colors = scalar(@rev_color);
6887 my $current_color = 0;
6889 if ($format eq 'incremental') {
6890 my $color_class = $rev_color[$current_color];
6895 while (my $line = <$fd>) {
6899 print qq
!<tr id
="l$linenr" class="$color_class">!.
6900 qq
!<td
class="sha1"><a href
=""> </a></td
>!.
6901 qq
!<td
class="linenr">!.
6902 qq
!<a
class="linenr" href
="">$linenr</a></td
>!;
6903 print qq
!<td
class="pre">! . esc_html
($line) . "</td>\n";
6907 } else { # porcelain, i.e. ordinary blame
6908 my %metainfo = (); # saves information about commits
6912 while (my $line = <$fd>) {
6914 # the header: <SHA-1> <src lineno> <dst lineno> [<lines in group>]
6915 # no <lines in group> for subsequent lines in group of lines
6916 my ($full_rev, $orig_lineno, $lineno, $group_size) =
6917 ($line =~ /^($oid_regex) (\d+) (\d+)(?: (\d+))?$/);
6918 if (!exists $metainfo{$full_rev}) {
6919 $metainfo{$full_rev} = { 'nprevious' => 0 };
6921 my $meta = $metainfo{$full_rev};
6923 while ($data = <$fd>) {
6925 last if ($data =~ s/^\t//); # contents of line
6926 if ($data =~ /^(\S+)(?: (.*))?$/) {
6927 $meta->{$1} = $2 unless exists $meta->{$1};
6929 if ($data =~ /^previous /) {
6930 $meta->{'nprevious'}++;
6933 my $short_rev = substr($full_rev, 0, 8);
6934 my $author = $meta->{'author'};
6936 parse_date
($meta->{'author-time'}, $meta->{'author-tz'});
6937 my $date = $date{'iso-tz'};
6939 $current_color = ($current_color + 1) % $num_colors;
6941 my $tr_class = $rev_color[$current_color];
6942 $tr_class .= ' boundary' if (exists $meta->{'boundary'});
6943 $tr_class .= ' no-previous' if ($meta->{'nprevious'} == 0);
6944 $tr_class .= ' multiple-previous' if ($meta->{'nprevious'} > 1);
6945 print "<tr id=\"l$lineno\" class=\"$tr_class\">\n";
6947 print "<td class=\"sha1\"";
6948 print " title=\"". esc_html
($author) . ", $date\"";
6949 print " rowspan=\"$group_size\"" if ($group_size > 1);
6951 print $cgi->a({-href
=> href
(action
=>"commit",
6953 file_name
=>$file_name)},
6954 esc_html
($short_rev));
6955 if ($group_size >= 2) {
6956 my @author_initials = ($author =~ /\b([[:upper:]])\B/g);
6957 if (@author_initials) {
6959 esc_html
(join('', @author_initials));
6965 # 'previous' <sha1 of parent commit> <filename at commit>
6966 if (exists $meta->{'previous'} &&
6967 $meta->{'previous'} =~ /^($oid_regex) (.*)$/) {
6968 $meta->{'parent'} = $1;
6969 $meta->{'file_parent'} = unquote
($2);
6972 exists($meta->{'parent'}) ?
6973 $meta->{'parent'} : $full_rev;
6974 my $linenr_filename =
6975 exists($meta->{'file_parent'}) ?
6976 $meta->{'file_parent'} : unquote
($meta->{'filename'});
6977 my $blamed = href
(action
=> 'blame',
6978 file_name
=> $linenr_filename,
6979 hash_base
=> $linenr_commit);
6980 print "<td class=\"linenr\">";
6981 print $cgi->a({ -href
=> "$blamed#l$orig_lineno",
6982 -class => "linenr" },
6985 print "<td class=\"pre\">" . esc_html
($data) . "</td>\n";
6993 "</table>\n"; # class="blame"
6994 print "</div>\n"; # class="blame_body"
6996 or print "Reading blob failed\n";
7005 sub git_blame_incremental
{
7006 git_blame_common
('incremental');
7009 sub git_blame_data
{
7010 git_blame_common
('data');
7014 my $head = git_get_head_hash
($project);
7016 git_print_page_nav
('','', $head,undef,$head,format_ref_views
('tags'));
7017 git_print_header_div
('summary', $project);
7019 my @tagslist = git_get_tags_list
();
7021 git_tags_body
(\
@tagslist);
7027 my $head = git_get_head_hash
($project);
7029 git_print_page_nav
('','', $head,undef,$head,format_ref_views
('heads'));
7030 git_print_header_div
('summary', $project);
7032 my @headslist = git_get_heads_list
();
7034 git_heads_body
(\
@headslist, $head);
7039 # used both for single remote view and for list of all the remotes
7041 gitweb_check_feature
('remote_heads')
7042 or die_error
(403, "Remote heads view is disabled");
7044 my $head = git_get_head_hash
($project);
7045 my $remote = $input_params{'hash'};
7047 my $remotedata = git_get_remotes_list
($remote);
7048 die_error
(500, "Unable to get remote information") unless defined $remotedata;
7050 unless (%$remotedata) {
7051 die_error
(404, defined $remote ?
7052 "Remote $remote not found" :
7053 "No remotes found");
7056 git_header_html
(undef, undef, -action_extra
=> $remote);
7057 git_print_page_nav
('', '', $head, undef, $head,
7058 format_ref_views
($remote ? '' : 'remotes'));
7060 fill_remote_heads
($remotedata);
7061 if (defined $remote) {
7062 git_print_header_div
('remotes', "$remote remote for $project");
7063 git_remote_block
($remote, $remotedata->{$remote}, undef, $head);
7065 git_print_header_div
('summary', "$project remotes");
7066 git_remotes_body
($remotedata, undef, $head);
7072 sub git_blob_plain
{
7076 if (!defined $hash) {
7077 if (defined $file_name) {
7078 my $base = $hash_base || git_get_head_hash
($project);
7079 $hash = git_get_hash_by_path
($base, $file_name, "blob")
7080 or die_error
(404, "Cannot find file");
7082 die_error
(400, "No file name defined");
7084 } elsif ($hash =~ m/^$oid_regex$/) {
7085 # blobs defined by non-textual hash id's can be cached
7089 open my $fd, "-|", git_cmd
(), "cat-file", "blob", $hash
7090 or die_error
(500, "Open git-cat-file blob '$hash' failed");
7092 # content-type (can include charset)
7093 $type = blob_contenttype
($fd, $file_name, $type);
7095 # "save as" filename, even when no $file_name is given
7096 my $save_as = "$hash";
7097 if (defined $file_name) {
7098 $save_as = $file_name;
7099 } elsif ($type =~ m/^text\//) {
7103 # With XSS prevention on, blobs of all types except a few known safe
7104 # ones are served with "Content-Disposition: attachment" to make sure
7105 # they don't run in our security domain. For certain image types,
7106 # blob view writes an <img> tag referring to blob_plain view, and we
7107 # want to be sure not to break that by serving the image as an
7108 # attachment (though Firefox 3 doesn't seem to care).
7109 my $sandbox = $prevent_xss &&
7110 $type !~ m!^(?:text/[a-z]+|image/(?:gif|png|jpeg))(?:[ ;]|$)!;
7112 # serve text/* as text/plain
7114 ($type =~ m!^text/[a-z]+\b(.*)$! ||
7115 ($type =~ m!^[a-z]+/[a-z]\+xml\b(.*)$! && -T
$fd))) {
7117 $rest = defined $rest ? $rest : '';
7118 $type = "text/plain$rest";
7123 -expires
=> $expires,
7124 -content_disposition
=>
7125 ($sandbox ? 'attachment' : 'inline')
7126 . '; filename="' . $save_as . '"');
7128 local *FCGI
::Stream
::PRINT
= $FCGI_Stream_PRINT_raw;
7129 binmode STDOUT
, ':raw';
7131 binmode STDOUT
, ':utf8'; # as set at the beginning of gitweb.cgi
7138 if (!defined $hash) {
7139 if (defined $file_name) {
7140 my $base = $hash_base || git_get_head_hash
($project);
7141 $hash = git_get_hash_by_path
($base, $file_name, "blob")
7142 or die_error
(404, "Cannot find file");
7144 die_error
(400, "No file name defined");
7146 } elsif ($hash =~ m/^$oid_regex$/) {
7147 # blobs defined by non-textual hash id's can be cached
7151 my $have_blame = gitweb_check_feature
('blame');
7152 open my $fd, "-|", git_cmd
(), "cat-file", "blob", $hash
7153 or die_error
(500, "Couldn't cat $file_name, $hash");
7154 my $mimetype = blob_mimetype
($fd, $file_name);
7155 # use 'blob_plain' (aka 'raw') view for files that cannot be displayed
7156 if ($mimetype !~ m!^(?:text/|image/(?:gif|png|jpeg)$)! && -B
$fd) {
7158 return git_blob_plain
($mimetype);
7160 # we can have blame only for text/* mimetype
7161 $have_blame &&= ($mimetype =~ m!^text/!);
7163 my $highlight = gitweb_check_feature
('highlight');
7164 my $syntax = guess_file_syntax
($highlight, $file_name);
7165 $fd = run_highlighter
($fd, $highlight, $syntax);
7167 git_header_html
(undef, $expires);
7168 my $formats_nav = '';
7169 if (defined $hash_base && (my %co = parse_commit
($hash_base))) {
7170 if (defined $file_name) {
7173 $cgi->a({-href
=> href
(action
=>"blame", -replay
=>1)},
7178 $cgi->a({-href
=> href
(action
=>"history", -replay
=>1)},
7181 $cgi->a({-href
=> href
(action
=>"blob_plain", -replay
=>1)},
7184 $cgi->a({-href
=> href
(action
=>"blob",
7185 hash_base
=>"HEAD", file_name
=>$file_name)},
7189 $cgi->a({-href
=> href
(action
=>"blob_plain", -replay
=>1)},
7192 git_print_page_nav
('','', $hash_base,$co{'tree'},$hash_base, $formats_nav);
7193 git_print_header_div
('commit', esc_html
($co{'title'}), $hash_base);
7195 print "<div class=\"page_nav\">\n" .
7196 "<br/><br/></div>\n" .
7197 "<div class=\"title\">".esc_html
($hash)."</div>\n";
7199 git_print_page_path
($file_name, "blob", $hash_base);
7200 print "<div class=\"page_body\">\n";
7201 if ($mimetype =~ m!^image/!) {
7202 print qq
!<img
class="blob" type
="!.esc_attr($mimetype).qq!"!;
7204 print qq
! alt
="!.esc_attr($file_name).qq!" title
="!.esc_attr($file_name).qq!"!;
7207 esc_attr(href(action=>"blob_plain
", hash=>$hash,
7208 hash_base=>$hash_base, file_name=>$file_name)) .
7212 while (my $line = <$fd>) {
7215 $line = untabify
($line);
7216 printf qq
!<div
class="pre"><a id
="l%i" href
="%s#l%i" class="linenr">%4i</a> %s</div
>\n!,
7217 $nr, esc_attr
(href
(-replay
=> 1)), $nr, $nr,
7218 $highlight ? sanitize
($line) : esc_html
($line, -nbsp
=>1);
7221 if (!close($fd) && ($? >> 8 != 141)) {
7222 print "Reading blob failed\n";
7229 if (!defined $hash_base) {
7230 $hash_base = "HEAD";
7232 if (!defined $hash) {
7233 if (defined $file_name) {
7234 $hash = git_get_hash_by_path
($hash_base, $file_name, "tree");
7239 die_error
(404, "No such tree") unless defined($hash);
7241 my $show_sizes = gitweb_check_feature
('show-sizes');
7242 my $have_blame = gitweb_check_feature
('blame');
7247 open my $fd, "-|", git_cmd
(), "ls-tree", '-z',
7248 ($show_sizes ? '-l' : ()), @extra_options, $hash
7249 or die_error
(500, "Open git-ls-tree failed");
7250 @entries = map { chomp; $_ } <$fd>;
7252 or die_error
(404, "Reading tree failed");
7255 my $refs = git_get_references
();
7256 my $ref = format_ref_marker
($refs, $hash_base);
7259 if (defined $hash_base && (my %co = parse_commit
($hash_base))) {
7261 if (defined $file_name) {
7263 $cgi->a({-href
=> href
(action
=>"history", -replay
=>1)},
7265 $cgi->a({-href
=> href
(action
=>"tree",
7266 hash_base
=>"HEAD", file_name
=>$file_name)},
7269 my $snapshot_links = format_snapshot_links
($hash);
7270 if (defined $snapshot_links) {
7271 # FIXME: Should be available when we have no hash base as well.
7272 push @views_nav, $snapshot_links;
7274 git_print_page_nav
('tree','', $hash_base, undef, undef,
7275 join(' | ', @views_nav));
7276 git_print_header_div
('commit', esc_html
($co{'title'}) . $ref, $hash_base);
7279 print "<div class=\"page_nav\">\n";
7280 print "<br/><br/></div>\n";
7281 print "<div class=\"title\">".esc_html
($hash)."</div>\n";
7283 if (defined $file_name) {
7284 $basedir = $file_name;
7285 if ($basedir ne '' && substr($basedir, -1) ne '/') {
7288 git_print_page_path
($file_name, 'tree', $hash_base);
7290 print "<div class=\"page_body\">\n";
7291 print "<table class=\"tree\">\n";
7293 # '..' (top directory) link if possible
7294 if (defined $hash_base &&
7295 defined $file_name && $file_name =~ m![^/]+$!) {
7297 print "<tr class=\"dark\">\n";
7299 print "<tr class=\"light\">\n";
7303 my $up = $file_name;
7304 $up =~ s!/?[^/]+$!!;
7305 undef $up unless $up;
7306 # based on git_print_tree_entry
7307 print '<td class="mode">' . mode_str
('040000') . "</td>\n";
7308 print '<td class="size"> </td>'."\n" if $show_sizes;
7309 print '<td class="list">';
7310 print $cgi->a({-href
=> href
(action
=>"tree",
7311 hash_base
=>$hash_base,
7315 print "<td class=\"link\"></td>\n";
7319 foreach my $line (@entries) {
7320 my %t = parse_ls_tree_line
($line, -z
=> 1, -l
=> $show_sizes);
7323 print "<tr class=\"dark\">\n";
7325 print "<tr class=\"light\">\n";
7329 git_print_tree_entry
(\
%t, $basedir, $hash_base, $have_blame);
7333 print "</table>\n" .
7338 sub sanitize_for_filename
{
7342 $name =~ s/[^[:alnum:]_.-]//g;
7348 my ($project, $hash) = @_;
7350 # path/to/project.git -> project
7351 # path/to/project/.git -> project
7352 my $name = to_utf8
($project);
7353 $name =~ s
,([^/])/*\
.git
$,$1,;
7354 $name = sanitize_for_filename
(basename
($name));
7357 if ($hash =~ /^[0-9a-fA-F]+$/) {
7358 # shorten SHA-1 hash
7359 my $full_hash = git_get_full_hash
($project, $hash);
7360 if ($full_hash =~ /^$hash/ && length($hash) > 7) {
7361 $ver = git_get_short_hash
($project, $hash);
7363 } elsif ($hash =~ m!^refs/tags/(.*)$!) {
7364 # tags don't need shortened SHA-1 hash
7367 # branches and other need shortened SHA-1 hash
7368 my $strip_refs = join '|', map { quotemeta } get_branch_refs
();
7369 if ($hash =~ m!^refs/($strip_refs|remotes)/(.*)$!) {
7370 my $ref_dir = (defined $1) ? $1 : '';
7373 $ref_dir = sanitize_for_filename
($ref_dir);
7374 # for refs neither in heads nor remotes we want to
7375 # add a ref dir to archive name
7376 if ($ref_dir ne '' and $ref_dir ne 'heads' and $ref_dir ne 'remotes') {
7377 $ver = $ref_dir . '-' . $ver;
7380 $ver .= '-' . git_get_short_hash
($project, $hash);
7382 # special case of sanitization for filename - we change
7383 # slashes to dots instead of dashes
7384 # in case of hierarchical branch names
7386 $ver =~ s/[^[:alnum:]_.-]//g;
7388 # name = project-version_string
7389 $name = "$name-$ver";
7391 return wantarray ? ($name, $name) : $name;
7394 sub exit_if_unmodified_since
{
7395 my ($latest_epoch) = @_;
7398 my $if_modified = $cgi->http('IF_MODIFIED_SINCE');
7399 if (defined $if_modified) {
7401 if (eval { require HTTP
::Date
; 1; }) {
7402 $since = HTTP
::Date
::str2time
($if_modified);
7403 } elsif (eval { require Time
::ParseDate
; 1; }) {
7404 $since = Time
::ParseDate
::parsedate
($if_modified, GMT
=> 1);
7406 if (defined $since && $latest_epoch <= $since) {
7407 my %latest_date = parse_date
($latest_epoch);
7409 -last_modified
=> $latest_date{'rfc2822'},
7410 -status
=> '304 Not Modified');
7417 my $format = $input_params{'snapshot_format'};
7418 if (!@snapshot_fmts) {
7419 die_error
(403, "Snapshots not allowed");
7421 # default to first supported snapshot format
7422 $format ||= $snapshot_fmts[0];
7423 if ($format !~ m/^[a-z0-9]+$/) {
7424 die_error
(400, "Invalid snapshot format parameter");
7425 } elsif (!exists($known_snapshot_formats{$format})) {
7426 die_error
(400, "Unknown snapshot format");
7427 } elsif ($known_snapshot_formats{$format}{'disabled'}) {
7428 die_error
(403, "Snapshot format not allowed");
7429 } elsif (!grep($_ eq $format, @snapshot_fmts)) {
7430 die_error
(403, "Unsupported snapshot format");
7433 my $type = git_get_type
("$hash^{}");
7435 die_error
(404, 'Object does not exist');
7436 } elsif ($type eq 'blob') {
7437 die_error
(400, 'Object is not a tree-ish');
7440 my ($name, $prefix) = snapshot_name
($project, $hash);
7441 my $filename = "$name$known_snapshot_formats{$format}{'suffix'}";
7443 my %co = parse_commit
($hash);
7444 exit_if_unmodified_since
($co{'committer_epoch'}) if %co;
7446 my $cmd = quote_command
(
7447 git_cmd
(), 'archive',
7448 "--format=$known_snapshot_formats{$format}{'format'}",
7449 "--prefix=$prefix/", $hash);
7450 if (exists $known_snapshot_formats{$format}{'compressor'}) {
7451 $cmd .= ' | ' . quote_command
(@{$known_snapshot_formats{$format}{'compressor'}});
7454 $filename =~ s/(["\\])/\\$1/g;
7457 %latest_date = parse_date
($co{'committer_epoch'}, $co{'committer_tz'});
7461 -type
=> $known_snapshot_formats{$format}{'type'},
7462 -content_disposition
=> 'inline; filename="' . $filename . '"',
7463 %co ? (-last_modified
=> $latest_date{'rfc2822'}) : (),
7464 -status
=> '200 OK');
7466 open my $fd, "-|", $cmd
7467 or die_error
(500, "Execute git-archive failed");
7468 local *FCGI
::Stream
::PRINT
= $FCGI_Stream_PRINT_raw;
7469 binmode STDOUT
, ':raw';
7471 binmode STDOUT
, ':utf8'; # as set at the beginning of gitweb.cgi
7475 sub git_log_generic
{
7476 my ($fmt_name, $body_subr, $base, $parent, $file_name, $file_hash) = @_;
7478 my $head = git_get_head_hash
($project);
7479 if (!defined $base) {
7482 if (!defined $page) {
7485 my $refs = git_get_references
();
7487 my $commit_hash = $base;
7488 if (defined $parent) {
7489 $commit_hash = "$parent..$base";
7492 parse_commits
($commit_hash, 101, (100 * $page),
7493 defined $file_name ? ($file_name, "--full-history") : ());
7496 if (!defined $file_hash && defined $file_name) {
7497 # some commits could have deleted file in question,
7498 # and not have it in tree, but one of them has to have it
7499 for (my $i = 0; $i < @commitlist; $i++) {
7500 $file_hash = git_get_hash_by_path
($commitlist[$i]{'id'}, $file_name);
7501 last if defined $file_hash;
7504 if (defined $file_hash) {
7505 $ftype = git_get_type
($file_hash);
7507 if (defined $file_name && !defined $ftype) {
7508 die_error
(500, "Unknown type of object");
7511 if (defined $file_name) {
7512 %co = parse_commit
($base)
7513 or die_error
(404, "Unknown commit object");
7517 my $paging_nav = format_paging_nav
($fmt_name, $page, $#commitlist >= 100);
7519 if ($#commitlist >= 100) {
7521 $cgi->a({-href
=> href
(-replay
=>1, page
=>$page+1),
7522 -accesskey
=> "n", -title
=> "Alt-n"}, "next");
7524 my $patch_max = gitweb_get_feature
('patches');
7525 if ($patch_max && !defined $file_name &&
7526 !gitweb_check_feature
('email-privacy')) {
7527 if ($patch_max < 0 || @commitlist <= $patch_max) {
7528 $paging_nav .= " ⋅ " .
7529 $cgi->a({-href
=> href
(action
=>"patches", -replay
=>1)},
7535 git_print_page_nav
($fmt_name,'', $hash,$hash,$hash, $paging_nav);
7536 if (defined $file_name) {
7537 git_print_header_div
('commit', esc_html
($co{'title'}), $base);
7539 git_print_header_div
('summary', $project)
7541 git_print_page_path
($file_name, $ftype, $hash_base)
7542 if (defined $file_name);
7544 $body_subr->(\
@commitlist, 0, 99, $refs, $next_link,
7545 $file_name, $file_hash, $ftype);
7551 git_log_generic
('log', \
&git_log_body
,
7552 $hash, $hash_parent);
7556 $hash ||= $hash_base || "HEAD";
7557 my %co = parse_commit
($hash)
7558 or die_error
(404, "Unknown commit object");
7560 my $parent = $co{'parent'};
7561 my $parents = $co{'parents'}; # listref
7563 # we need to prepare $formats_nav before any parameter munging
7565 if (!defined $parent) {
7567 $formats_nav .= '(initial)';
7568 } elsif (@$parents == 1) {
7569 # single parent commit
7572 $cgi->a({-href
=> href
(action
=>"commit",
7574 esc_html
(substr($parent, 0, 7))) .
7581 $cgi->a({-href
=> href
(action
=>"commit",
7583 esc_html
(substr($_, 0, 7)));
7587 if (gitweb_check_feature
('patches') && @$parents <= 1 &&
7588 !gitweb_check_feature
('email-privacy')) {
7589 $formats_nav .= " | " .
7590 $cgi->a({-href
=> href
(action
=>"patch", -replay
=>1)},
7594 if (!defined $parent) {
7598 open my $fd, "-|", git_cmd
(), "diff-tree", '-r', "--no-commit-id",
7600 (@$parents <= 1 ? $parent : '-c'),
7602 or die_error
(500, "Open git-diff-tree failed");
7603 @difftree = map { chomp; $_ } <$fd>;
7604 close $fd or die_error
(404, "Reading git-diff-tree failed");
7606 # non-textual hash id's can be cached
7608 if ($hash =~ m/^$oid_regex$/) {
7611 my $refs = git_get_references
();
7612 my $ref = format_ref_marker
($refs, $co{'id'});
7614 git_header_html
(undef, $expires);
7615 git_print_page_nav
('commit', '',
7616 $hash, $co{'tree'}, $hash,
7619 if (defined $co{'parent'}) {
7620 git_print_header_div
('commitdiff', esc_html
($co{'title'}) . $ref, $hash);
7622 git_print_header_div
('tree', esc_html
($co{'title'}) . $ref, $co{'tree'}, $hash);
7624 print "<div class=\"title_text\">\n" .
7625 "<table class=\"object_header\">\n";
7626 git_print_authorship_rows
(\
%co);
7627 print "<tr><td>commit</td><td class=\"sha1\">$co{'id'}</td></tr>\n";
7630 "<td class=\"sha1\">" .
7631 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$co{'tree'}, hash_base
=>$hash),
7632 class => "list"}, $co{'tree'}) .
7634 "<td class=\"link\">" .
7635 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$co{'tree'}, hash_base
=>$hash)},
7637 my $snapshot_links = format_snapshot_links
($hash);
7638 if (defined $snapshot_links) {
7639 print " | " . $snapshot_links;
7644 foreach my $par (@$parents) {
7647 "<td class=\"sha1\">" .
7648 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$par),
7649 class => "list"}, $par) .
7651 "<td class=\"link\">" .
7652 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$par)}, "commit") .
7654 $cgi->a({-href
=> href
(action
=>"commitdiff", hash
=>$hash, hash_parent
=>$par)}, "diff") .
7661 print "<div class=\"page_body\">\n";
7662 git_print_log
($co{'comment'});
7665 git_difftree_body
(\
@difftree, $hash, @$parents);
7671 # object is defined by:
7672 # - hash or hash_base alone
7673 # - hash_base and file_name
7676 # - hash or hash_base alone
7677 if ($hash || ($hash_base && !defined $file_name)) {
7678 my $object_id = $hash || $hash_base;
7680 open my $fd, "-|", quote_command
(
7681 git_cmd
(), 'cat-file', '-t', $object_id) . ' 2> /dev/null'
7682 or die_error
(404, "Object does not exist");
7684 defined $type && chomp $type;
7686 or die_error
(404, "Object does not exist");
7688 # - hash_base and file_name
7689 } elsif ($hash_base && defined $file_name) {
7690 $file_name =~ s
,/+$,,;
7692 system(git_cmd
(), "cat-file", '-e', $hash_base) == 0
7693 or die_error
(404, "Base object does not exist");
7695 # here errors should not happen
7696 open my $fd, "-|", git_cmd
(), "ls-tree", $hash_base, "--", $file_name
7697 or die_error
(500, "Open git-ls-tree failed");
7701 #'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'
7702 unless ($line && $line =~ m/^([0-9]+) (.+) ($oid_regex)\t/) {
7703 die_error
(404, "File or directory for given base does not exist");
7708 die_error
(400, "Not enough information to find object");
7711 print $cgi->redirect(-uri
=> href
(action
=>$type, -full
=>1,
7712 hash
=>$hash, hash_base
=>$hash_base,
7713 file_name
=>$file_name),
7714 -status
=> '302 Found');
7718 my $format = shift || 'html';
7719 my $diff_style = $input_params{'diff_style'} || 'inline';
7726 # preparing $fd and %diffinfo for git_patchset_body
7728 if (defined $hash_base && defined $hash_parent_base) {
7729 if (defined $file_name) {
7731 open $fd, "-|", git_cmd
(), "diff-tree", '-r', @diff_opts,
7732 $hash_parent_base, $hash_base,
7733 "--", (defined $file_parent ? $file_parent : ()), $file_name
7734 or die_error
(500, "Open git-diff-tree failed");
7735 @difftree = map { chomp; $_ } <$fd>;
7737 or die_error
(404, "Reading git-diff-tree failed");
7739 or die_error
(404, "Blob diff not found");
7741 } elsif (defined $hash &&
7742 $hash =~ $oid_regex) {
7743 # try to find filename from $hash
7745 # read filtered raw output
7746 open $fd, "-|", git_cmd
(), "diff-tree", '-r', @diff_opts,
7747 $hash_parent_base, $hash_base, "--"
7748 or die_error
(500, "Open git-diff-tree failed");
7750 # ':100644 100644 03b21826... 3b93d5e7... M ls-files.c'
7752 grep { /^:[0-7]{6} [0-7]{6} $oid_regex $hash/ }
7753 map { chomp; $_ } <$fd>;
7755 or die_error
(404, "Reading git-diff-tree failed");
7757 or die_error
(404, "Blob diff not found");
7760 die_error
(400, "Missing one of the blob diff parameters");
7763 if (@difftree > 1) {
7764 die_error
(400, "Ambiguous blob diff specification");
7767 %diffinfo = parse_difftree_raw_line
($difftree[0]);
7768 $file_parent ||= $diffinfo{'from_file'} || $file_name;
7769 $file_name ||= $diffinfo{'to_file'};
7771 $hash_parent ||= $diffinfo{'from_id'};
7772 $hash ||= $diffinfo{'to_id'};
7774 # non-textual hash id's can be cached
7775 if ($hash_base =~ m/^$oid_regex$/ &&
7776 $hash_parent_base =~ m/^$oid_regex$/) {
7781 open $fd, "-|", git_cmd
(), "diff-tree", '-r', @diff_opts,
7782 '-p', ($format eq 'html' ? "--full-index" : ()),
7783 $hash_parent_base, $hash_base,
7784 "--", (defined $file_parent ? $file_parent : ()), $file_name
7785 or die_error
(500, "Open git-diff-tree failed");
7788 # old/legacy style URI -- not generated anymore since 1.4.3.
7790 die_error
('404 Not Found', "Missing one of the blob diff parameters")
7794 if ($format eq 'html') {
7796 $cgi->a({-href
=> href
(action
=>"blobdiff_plain", -replay
=>1)},
7798 $formats_nav .= diff_style_nav
($diff_style);
7799 git_header_html
(undef, $expires);
7800 if (defined $hash_base && (my %co = parse_commit
($hash_base))) {
7801 git_print_page_nav
('','', $hash_base,$co{'tree'},$hash_base, $formats_nav);
7802 git_print_header_div
('commit', esc_html
($co{'title'}), $hash_base);
7804 print "<div class=\"page_nav\"><br/>$formats_nav<br/></div>\n";
7805 print "<div class=\"title\">".esc_html
("$hash vs $hash_parent")."</div>\n";
7807 if (defined $file_name) {
7808 git_print_page_path
($file_name, "blob", $hash_base);
7810 print "<div class=\"page_path\"></div>\n";
7813 } elsif ($format eq 'plain') {
7815 -type
=> 'text/plain',
7816 -charset
=> 'utf-8',
7817 -expires
=> $expires,
7818 -content_disposition
=> 'inline; filename="' . "$file_name" . '.patch"');
7820 print "X-Git-Url: " . $cgi->self_url() . "\n\n";
7823 die_error
(400, "Unknown blobdiff format");
7827 if ($format eq 'html') {
7828 print "<div class=\"page_body\">\n";
7830 git_patchset_body
($fd, $diff_style,
7831 [ \
%diffinfo ], $hash_base, $hash_parent_base);
7834 print "</div>\n"; # class="page_body"
7838 while (my $line = <$fd>) {
7839 $line =~ s!a/($hash|$hash_parent)!'a/'.esc_path($diffinfo{'from_file'})!eg;
7840 $line =~ s!b/($hash|$hash_parent)!'b/'.esc_path($diffinfo{'to_file'})!eg;
7844 last if $line =~ m!^\+\+\+!;
7852 sub git_blobdiff_plain
{
7853 git_blobdiff
('plain');
7856 # assumes that it is added as later part of already existing navigation,
7857 # so it returns "| foo | bar" rather than just "foo | bar"
7858 sub diff_style_nav
{
7859 my ($diff_style, $is_combined) = @_;
7860 $diff_style ||= 'inline';
7862 return "" if ($is_combined);
7864 my @styles = (inline
=> 'inline', 'sidebyside' => 'side by side');
7865 my %styles = @styles;
7867 @styles[ map { $_ * 2 } 0..$#styles/2 ];
7872 $_ eq $diff_style ? $styles{$_} :
7873 $cgi->a({-href
=> href
(-replay
=>1, diff_style
=> $_)}, $styles{$_})
7877 sub git_commitdiff
{
7879 my $format = $params{-format
} || 'html';
7880 my $diff_style = $input_params{'diff_style'} || 'inline';
7882 my ($patch_max) = gitweb_get_feature
('patches');
7883 if ($format eq 'patch') {
7884 die_error
(403, "Patch view not allowed") unless $patch_max;
7887 $hash ||= $hash_base || "HEAD";
7888 my %co = parse_commit
($hash)
7889 or die_error
(404, "Unknown commit object");
7891 # choose format for commitdiff for merge
7892 if (! defined $hash_parent && @{$co{'parents'}} > 1) {
7893 $hash_parent = '--cc';
7895 # we need to prepare $formats_nav before almost any parameter munging
7897 if ($format eq 'html') {
7899 $cgi->a({-href
=> href
(action
=>"commitdiff_plain", -replay
=>1)},
7901 if ($patch_max && @{$co{'parents'}} <= 1 &&
7902 !gitweb_check_feature
('email-privacy')) {
7903 $formats_nav .= " | " .
7904 $cgi->a({-href
=> href
(action
=>"patch", -replay
=>1)},
7907 $formats_nav .= diff_style_nav
($diff_style, @{$co{'parents'}} > 1);
7909 if (defined $hash_parent &&
7910 $hash_parent ne '-c' && $hash_parent ne '--cc') {
7911 # commitdiff with two commits given
7912 my $hash_parent_short = $hash_parent;
7913 if ($hash_parent =~ m/^$oid_regex$/) {
7914 $hash_parent_short = substr($hash_parent, 0, 7);
7918 for (my $i = 0; $i < @{$co{'parents'}}; $i++) {
7919 if ($co{'parents'}[$i] eq $hash_parent) {
7920 $formats_nav .= ' parent ' . ($i+1);
7924 $formats_nav .= ': ' .
7925 $cgi->a({-href
=> href
(-replay
=>1,
7926 hash
=>$hash_parent, hash_base
=>undef)},
7927 esc_html
($hash_parent_short)) .
7929 } elsif (!$co{'parent'}) {
7931 $formats_nav .= ' (initial)';
7932 } elsif (scalar @{$co{'parents'}} == 1) {
7933 # single parent commit
7936 $cgi->a({-href
=> href
(-replay
=>1,
7937 hash
=>$co{'parent'}, hash_base
=>undef)},
7938 esc_html
(substr($co{'parent'}, 0, 7))) .
7942 if ($hash_parent eq '--cc') {
7943 $formats_nav .= ' | ' .
7944 $cgi->a({-href
=> href
(-replay
=>1,
7945 hash
=>$hash, hash_parent
=>'-c')},
7947 } else { # $hash_parent eq '-c'
7948 $formats_nav .= ' | ' .
7949 $cgi->a({-href
=> href
(-replay
=>1,
7950 hash
=>$hash, hash_parent
=>'--cc')},
7956 $cgi->a({-href
=> href
(-replay
=>1,
7957 hash
=>$_, hash_base
=>undef)},
7958 esc_html
(substr($_, 0, 7)));
7959 } @{$co{'parents'}} ) .
7964 my $hash_parent_param = $hash_parent;
7965 if (!defined $hash_parent_param) {
7966 # --cc for multiple parents, --root for parentless
7967 $hash_parent_param =
7968 @{$co{'parents'}} > 1 ? '--cc' : $co{'parent'} || '--root';
7974 if ($format eq 'html') {
7975 open $fd, "-|", git_cmd
(), "diff-tree", '-r', @diff_opts,
7976 "--no-commit-id", "--patch-with-raw", "--full-index",
7977 $hash_parent_param, $hash, "--"
7978 or die_error
(500, "Open git-diff-tree failed");
7980 while (my $line = <$fd>) {
7982 # empty line ends raw part of diff-tree output
7984 push @difftree, scalar parse_difftree_raw_line
($line);
7987 } elsif ($format eq 'plain') {
7988 open $fd, "-|", git_cmd
(), "diff-tree", '-r', @diff_opts,
7989 '-p', $hash_parent_param, $hash, "--"
7990 or die_error
(500, "Open git-diff-tree failed");
7991 } elsif ($format eq 'patch') {
7992 # For commit ranges, we limit the output to the number of
7993 # patches specified in the 'patches' feature.
7994 # For single commits, we limit the output to a single patch,
7995 # diverging from the git-format-patch default.
7996 my @commit_spec = ();
7998 if ($patch_max > 0) {
7999 push @commit_spec, "-$patch_max";
8001 push @commit_spec, '-n', "$hash_parent..$hash";
8003 if ($params{-single
}) {
8004 push @commit_spec, '-1';
8006 if ($patch_max > 0) {
8007 push @commit_spec, "-$patch_max";
8009 push @commit_spec, "-n";
8011 push @commit_spec, '--root', $hash;
8013 open $fd, "-|", git_cmd
(), "format-patch", @diff_opts,
8014 '--encoding=utf8', '--stdout', @commit_spec
8015 or die_error
(500, "Open git-format-patch failed");
8017 die_error
(400, "Unknown commitdiff format");
8020 # non-textual hash id's can be cached
8022 if ($hash =~ m/^$oid_regex$/) {
8026 # write commit message
8027 if ($format eq 'html') {
8028 my $refs = git_get_references
();
8029 my $ref = format_ref_marker
($refs, $co{'id'});
8031 git_header_html
(undef, $expires);
8032 git_print_page_nav
('commitdiff','', $hash,$co{'tree'},$hash, $formats_nav);
8033 git_print_header_div
('commit', esc_html
($co{'title'}) . $ref, $hash);
8034 print "<div class=\"title_text\">\n" .
8035 "<table class=\"object_header\">\n";
8036 git_print_authorship_rows
(\
%co);
8039 print "<div class=\"page_body\">\n";
8040 if (@{$co{'comment'}} > 1) {
8041 print "<div class=\"log\">\n";
8042 git_print_log
($co{'comment'}, -final_empty_line
=> 1, -remove_title
=> 1);
8043 print "</div>\n"; # class="log"
8046 } elsif ($format eq 'plain') {
8047 my $refs = git_get_references
("tags");
8048 my $tagname = git_get_rev_name_tags
($hash);
8049 my $filename = basename
($project) . "-$hash.patch";
8052 -type
=> 'text/plain',
8053 -charset
=> 'utf-8',
8054 -expires
=> $expires,
8055 -content_disposition
=> 'inline; filename="' . "$filename" . '"');
8056 my %ad = parse_date
($co{'author_epoch'}, $co{'author_tz'});
8057 print "From: " . to_utf8
($co{'author'}) . "\n";
8058 print "Date: $ad{'rfc2822'} ($ad{'tz_local'})\n";
8059 print "Subject: " . to_utf8
($co{'title'}) . "\n";
8061 print "X-Git-Tag: $tagname\n" if $tagname;
8062 print "X-Git-Url: " . $cgi->self_url() . "\n\n";
8064 foreach my $line (@{$co{'comment'}}) {
8065 print to_utf8
($line) . "\n";
8068 } elsif ($format eq 'patch') {
8069 my $filename = basename
($project) . "-$hash.patch";
8072 -type
=> 'text/plain',
8073 -charset
=> 'utf-8',
8074 -expires
=> $expires,
8075 -content_disposition
=> 'inline; filename="' . "$filename" . '"');
8079 if ($format eq 'html') {
8080 my $use_parents = !defined $hash_parent ||
8081 $hash_parent eq '-c' || $hash_parent eq '--cc';
8082 git_difftree_body
(\
@difftree, $hash,
8083 $use_parents ? @{$co{'parents'}} : $hash_parent);
8086 git_patchset_body
($fd, $diff_style,
8088 $use_parents ? @{$co{'parents'}} : $hash_parent);
8090 print "</div>\n"; # class="page_body"
8093 } elsif ($format eq 'plain') {
8097 or print "Reading git-diff-tree failed\n";
8098 } elsif ($format eq 'patch') {
8102 or print "Reading git-format-patch failed\n";
8106 sub git_commitdiff_plain
{
8107 git_commitdiff
(-format
=> 'plain');
8110 # format-patch-style patches
8112 git_commitdiff
(-format
=> 'patch', -single
=> 1);
8116 git_commitdiff
(-format
=> 'patch');
8120 git_log_generic
('history', \
&git_history_body
,
8121 $hash_base, $hash_parent_base,
8126 $searchtype ||= 'commit';
8128 # check if appropriate features are enabled
8129 gitweb_check_feature
('search')
8130 or die_error
(403, "Search is disabled");
8131 if ($searchtype eq 'pickaxe') {
8132 # pickaxe may take all resources of your box and run for several minutes
8133 # with every query - so decide by yourself how public you make this feature
8134 gitweb_check_feature
('pickaxe')
8135 or die_error
(403, "Pickaxe search is disabled");
8137 if ($searchtype eq 'grep') {
8138 # grep search might be potentially CPU-intensive, too
8139 gitweb_check_feature
('grep')
8140 or die_error
(403, "Grep search is disabled");
8143 if (!defined $searchtext) {
8144 die_error
(400, "Text field is empty");
8146 if (!defined $hash) {
8147 $hash = git_get_head_hash
($project);
8149 my %co = parse_commit
($hash);
8151 die_error
(404, "Unknown commit object");
8153 if (!defined $page) {
8157 if ($searchtype eq 'commit' ||
8158 $searchtype eq 'author' ||
8159 $searchtype eq 'committer') {
8160 git_search_message
(%co);
8161 } elsif ($searchtype eq 'pickaxe') {
8162 git_search_changes
(%co);
8163 } elsif ($searchtype eq 'grep') {
8164 git_search_files
(%co);
8166 die_error
(400, "Unknown search type");
8170 sub git_search_help
{
8172 git_print_page_nav
('','', $hash,$hash,$hash);
8174 <p><strong>Pattern</strong> is by default a normal string that is matched precisely (but without
8175 regard to case, except in the case of pickaxe). However, when you check the <em>re</em> checkbox,
8176 the pattern entered is recognized as the POSIX extended
8177 <a href="https://en.wikipedia.org/wiki/Regular_expression">regular expression</a> (also case
8180 <dt><b>commit</b></dt>
8181 <dd>The commit messages and authorship information will be scanned for the given pattern.</dd>
8183 my $have_grep = gitweb_check_feature
('grep');
8186 <dt><b>grep</b></dt>
8187 <dd>All files in the currently selected tree (HEAD unless you are explicitly browsing
8188 a different one) are searched for the given pattern. On large trees, this search can take
8189 a while and put some strain on the server, so please use it with some consideration. Note that
8190 due to git-grep peculiarity, currently if regexp mode is turned off, the matches are
8191 case-sensitive.</dd>
8195 <dt><b>author</b></dt>
8196 <dd>Name and e-mail of the change author and date of birth of the patch will be scanned for the given pattern.</dd>
8197 <dt><b>committer</b></dt>
8198 <dd>Name and e-mail of the committer and date of commit will be scanned for the given pattern.</dd>
8200 my $have_pickaxe = gitweb_check_feature
('pickaxe');
8201 if ($have_pickaxe) {
8203 <dt><b>pickaxe</b></dt>
8204 <dd>All commits that caused the string to appear or disappear from any file (changes that
8205 added, removed or "modified" the string) will be listed. This search can take a while and
8206 takes a lot of strain on the server, so please use it wisely. Note that since you may be
8207 interested even in changes just changing the case as well, this search is case sensitive.</dd>
8215 git_log_generic
('shortlog', \
&git_shortlog_body
,
8216 $hash, $hash_parent);
8219 ## ......................................................................
8220 ## feeds (RSS, Atom; OPML)
8223 my $format = shift || 'atom';
8224 my $have_blame = gitweb_check_feature
('blame');
8226 # Atom: http://www.atomenabled.org/developers/syndication/
8227 # RSS: https://web.archive.org/web/20030729001534/http://www.notestips.com/80256B3A007F2692/1/NAMO5P9UPQ
8228 if ($format ne 'rss' && $format ne 'atom') {
8229 die_error
(400, "Unknown web feed format");
8232 # log/feed of current (HEAD) branch, log of given branch, history of file/directory
8233 my $head = $hash || 'HEAD';
8234 my @commitlist = parse_commits
($head, 150, 0, $file_name);
8238 my $content_type = "application/$format+xml";
8239 if (defined $cgi->http('HTTP_ACCEPT') &&
8240 $cgi->Accept('text/xml') > $cgi->Accept($content_type)) {
8241 # browser (feed reader) prefers text/xml
8242 $content_type = 'text/xml';
8244 if (defined($commitlist[0])) {
8245 %latest_commit = %{$commitlist[0]};
8246 my $latest_epoch = $latest_commit{'committer_epoch'};
8247 exit_if_unmodified_since
($latest_epoch);
8248 %latest_date = parse_date
($latest_epoch, $latest_commit{'committer_tz'});
8251 -type
=> $content_type,
8252 -charset
=> 'utf-8',
8253 %latest_date ? (-last_modified
=> $latest_date{'rfc2822'}) : (),
8254 -status
=> '200 OK');
8256 # Optimization: skip generating the body if client asks only
8257 # for Last-Modified date.
8258 return if ($cgi->request_method() eq 'HEAD');
8261 my $title = "$site_name - $project/$action";
8262 my $feed_type = 'log';
8263 if (defined $hash) {
8264 $title .= " - '$hash'";
8265 $feed_type = 'branch log';
8266 if (defined $file_name) {
8267 $title .= " :: $file_name";
8268 $feed_type = 'history';
8270 } elsif (defined $file_name) {
8271 $title .= " - $file_name";
8272 $feed_type = 'history';
8274 $title .= " $feed_type";
8275 $title = esc_html
($title);
8276 my $descr = git_get_project_description
($project);
8277 if (defined $descr) {
8278 $descr = esc_html
($descr);
8280 $descr = "$project " .
8281 ($format eq 'rss' ? 'RSS' : 'Atom') .
8284 my $owner = git_get_project_owner
($project);
8285 $owner = esc_html
($owner);
8289 if (defined $file_name) {
8290 $alt_url = href
(-full
=>1, action
=>"history", hash
=>$hash, file_name
=>$file_name);
8291 } elsif (defined $hash) {
8292 $alt_url = href
(-full
=>1, action
=>"log", hash
=>$hash);
8294 $alt_url = href
(-full
=>1, action
=>"summary");
8296 $alt_url = esc_attr
($alt_url);
8297 print qq
!<?xml version
="1.0" encoding
="utf-8"?>\n!;
8298 if ($format eq 'rss') {
8300 <rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/">
8303 print "<title>$title</title>\n" .
8304 "<link>$alt_url</link>\n" .
8305 "<description>$descr</description>\n" .
8306 "<language>en</language>\n" .
8307 # project owner is responsible for 'editorial' content
8308 "<managingEditor>$owner</managingEditor>\n";
8309 if (defined $logo || defined $favicon) {
8310 # prefer the logo to the favicon, since RSS
8311 # doesn't allow both
8312 my $img = esc_url
($logo || $favicon);
8314 "<url>$img</url>\n" .
8315 "<title>$title</title>\n" .
8316 "<link>$alt_url</link>\n" .
8320 print "<pubDate>$latest_date{'rfc2822'}</pubDate>\n";
8321 print "<lastBuildDate>$latest_date{'rfc2822'}</lastBuildDate>\n";
8323 print "<generator>gitweb v.$version/$git_version</generator>\n";
8324 } elsif ($format eq 'atom') {
8326 <feed xmlns="http://www.w3.org/2005/Atom">
8328 print "<title>$title</title>\n" .
8329 "<subtitle>$descr</subtitle>\n" .
8330 '<link rel="alternate" type="text/html" href="' .
8331 $alt_url . '" />' . "\n" .
8332 '<link rel="self" type="' . $content_type . '" href="' .
8333 $cgi->self_url() . '" />' . "\n" .
8334 "<id>" . esc_url
(href
(-full
=>1)) . "</id>\n" .
8335 # use project owner for feed author
8336 "<author><name>$owner</name></author>\n";
8337 if (defined $favicon) {
8338 print "<icon>" . esc_url
($favicon) . "</icon>\n";
8340 if (defined $logo) {
8341 # not twice as wide as tall: 72 x 27 pixels
8342 print "<logo>" . esc_url
($logo) . "</logo>\n";
8344 if (! %latest_date) {
8345 # dummy date to keep the feed valid until commits trickle in:
8346 print "<updated>1970-01-01T00:00:00Z</updated>\n";
8348 print "<updated>$latest_date{'iso-8601'}</updated>\n";
8350 print "<generator version='$version/$git_version'>gitweb</generator>\n";
8354 for (my $i = 0; $i <= $#commitlist; $i++) {
8355 my %co = %{$commitlist[$i]};
8356 my $commit = $co{'id'};
8357 # we read 150, we always show 30 and the ones more recent than 48 hours
8358 if (($i >= 20) && ((time - $co{'committer_epoch'}) > 48*60*60)) {
8361 my %cd = parse_date
($co{'committer_epoch'}, $co{'committer_tz'});
8363 # get list of changed files
8364 open my $fd, "-|", git_cmd
(), "diff-tree", '-r', @diff_opts,
8365 $co{'parent'} || "--root",
8366 $co{'id'}, "--", (defined $file_name ? $file_name : ())
8368 my @difftree = map { chomp; $_ } <$fd>;
8372 # print element (entry, item)
8373 my $co_url = href
(-full
=>1, action
=>"commitdiff", hash
=>$commit);
8374 if ($format eq 'rss') {
8376 "<title>" . esc_html
($co{'title'}) . "</title>\n" .
8377 "<author>" . esc_html
($co{'author'}) . "</author>\n" .
8378 "<pubDate>$cd{'rfc2822'}</pubDate>\n" .
8379 "<guid isPermaLink=\"true\">$co_url</guid>\n" .
8380 "<link>" . esc_html
($co_url) . "</link>\n" .
8381 "<description>" . esc_html
($co{'title'}) . "</description>\n" .
8382 "<content:encoded>" .
8384 } elsif ($format eq 'atom') {
8386 "<title type=\"html\">" . esc_html
($co{'title'}) . "</title>\n" .
8387 "<updated>$cd{'iso-8601'}</updated>\n" .
8389 " <name>" . esc_html
($co{'author_name'}) . "</name>\n";
8390 if ($co{'author_email'}) {
8391 print " <email>" . esc_html
($co{'author_email'}) . "</email>\n";
8393 print "</author>\n" .
8394 # use committer for contributor
8396 " <name>" . esc_html
($co{'committer_name'}) . "</name>\n";
8397 if ($co{'committer_email'}) {
8398 print " <email>" . esc_html
($co{'committer_email'}) . "</email>\n";
8400 print "</contributor>\n" .
8401 "<published>$cd{'iso-8601'}</published>\n" .
8402 "<link rel=\"alternate\" type=\"text/html\" href=\"" . esc_attr
($co_url) . "\" />\n" .
8403 "<id>" . esc_html
($co_url) . "</id>\n" .
8404 "<content type=\"xhtml\" xml:base=\"" . esc_url
($my_url) . "\">\n" .
8405 "<div xmlns=\"http://www.w3.org/1999/xhtml\">\n";
8407 my $comment = $co{'comment'};
8409 foreach my $line (@$comment) {
8410 $line = esc_html
($line);
8413 print "</pre><ul>\n";
8414 foreach my $difftree_line (@difftree) {
8415 my %difftree = parse_difftree_raw_line
($difftree_line);
8416 next if !$difftree{'from_id'};
8418 my $file = $difftree{'file'} || $difftree{'to_file'};
8422 $cgi->a({-href
=> href
(-full
=>1, action
=>"blobdiff",
8423 hash
=>$difftree{'to_id'}, hash_parent
=>$difftree{'from_id'},
8424 hash_base
=>$co{'id'}, hash_parent_base
=>$co{'parent'},
8425 file_name
=>$file, file_parent
=>$difftree{'from_file'}),
8426 -title
=> "diff"}, 'D');
8428 print $cgi->a({-href
=> href
(-full
=>1, action
=>"blame",
8429 file_name
=>$file, hash_base
=>$commit),
8430 -title
=> "blame"}, 'B');
8432 # if this is not a feed of a file history
8433 if (!defined $file_name || $file_name ne $file) {
8434 print $cgi->a({-href
=> href
(-full
=>1, action
=>"history",
8435 file_name
=>$file, hash
=>$commit),
8436 -title
=> "history"}, 'H');
8438 $file = esc_path
($file);
8442 if ($format eq 'rss') {
8443 print "</ul>]]>\n" .
8444 "</content:encoded>\n" .
8446 } elsif ($format eq 'atom') {
8447 print "</ul>\n</div>\n" .
8454 if ($format eq 'rss') {
8455 print "</channel>\n</rss>\n";
8456 } elsif ($format eq 'atom') {
8470 my @list = git_get_projects_list
($project_filter, $strict_export);
8472 die_error
(404, "No projects found");
8476 -type
=> 'text/xml',
8477 -charset
=> 'utf-8',
8478 -content_disposition
=> 'inline; filename="opml.xml"');
8480 my $title = esc_html
($site_name);
8481 my $filter = " within subdirectory ";
8482 if (defined $project_filter) {
8483 $filter .= esc_html
($project_filter);
8488 <?xml version="1.0" encoding="utf-8"?>
8489 <opml version="1.0">
8491 <title>$title OPML Export$filter</title>
8494 <outline text="git RSS feeds">
8497 foreach my $pr (@list) {
8499 my $head = git_get_head_hash
($proj{'path'});
8500 if (!defined $head) {
8503 $git_dir = "$projectroot/$proj{'path'}";
8504 my %co = parse_commit
($head);
8509 my $path = esc_html
(chop_str
($proj{'path'}, 25, 5));
8510 my $rss = esc_attr
(href
('project' => $proj{'path'}, 'action' => 'rss', -full
=> 1));
8511 my $html = esc_attr
(href
('project' => $proj{'path'}, 'action' => 'summary', -full
=> 1));
8512 print "<outline type=\"rss\" text=\"$path\" title=\"$path\" xmlUrl=\"$rss\" htmlUrl=\"$html\"/>\n";