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 = "++GIT_VERSION++";
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;
118 # URI of GIT logo (72x27 size)
119 our $logo = "++GITWEB_LOGO++";
120 # URI of GIT favicon, assumed to be image/png type
121 our $favicon = "++GITWEB_FAVICON++";
122 # URI of gitweb.js (JavaScript code for gitweb)
123 our $javascript = "++GITWEB_JS++";
125 # URI and label (title) of GIT logo link
126 #our $logo_url = "http://www.kernel.org/pub/software/scm/git/docs/";
127 #our $logo_label = "git documentation";
128 our $logo_url = "http://git-scm.com/";
129 our $logo_label = "git homepage";
131 # source of projects list
132 our $projects_list = "++GITWEB_LIST++";
134 # the width (in characters) of the projects list "Description" column
135 our $projects_list_description_width = 25;
137 # group projects by category on the projects list
138 # (enabled if this variable evaluates to true)
139 our $projects_list_group_categories = 0;
141 # default category if none specified
142 # (leave the empty string for no category)
143 our $project_list_default_category = "";
145 # default order of projects list
146 # valid values are none, project, descr, owner, and age
147 our $default_projects_order = "project";
149 # show repository only if this file exists
150 # (only effective if this variable evaluates to true)
151 our $export_ok = "++GITWEB_EXPORT_OK++";
153 # don't generate age column on the projects list page
154 our $omit_age_column = 0;
156 # don't generate information about owners of repositories
159 # show repository only if this subroutine returns true
160 # when given the path to the project, for example:
161 # sub { return -e "$_[0]/git-daemon-export-ok"; }
162 our $export_auth_hook = undef;
164 # only allow viewing of repositories also shown on the overview page
165 our $strict_export = "++GITWEB_STRICT_EXPORT++";
167 # list of git base URLs used for URL to where fetch project from,
168 # i.e. full URL is "$git_base_url/$project"
169 our @git_base_url_list = grep { $_ ne '' } ("++GITWEB_BASE_URL++");
171 # default blob_plain mimetype and default charset for text/plain blob
172 our $default_blob_plain_mimetype = 'text/plain';
173 our $default_text_plain_charset = undef;
175 # file to use for guessing MIME types before trying /etc/mime.types
176 # (relative to the current git repository)
177 our $mimetypes_file = undef;
179 # assume this charset if line contains non-UTF-8 characters;
180 # it should be valid encoding (see Encoding::Supported(3pm) for list),
181 # for which encoding all byte sequences are valid, for example
182 # 'iso-8859-1' aka 'latin1' (it is decoded without checking, so it
183 # could be even 'utf-8' for the old behavior)
184 our $fallback_encoding = 'latin1';
186 # rename detection options for git-diff and git-diff-tree
187 # - default is '-M', with the cost proportional to
188 # (number of removed files) * (number of new files).
189 # - more costly is '-C' (which implies '-M'), with the cost proportional to
190 # (number of changed files + number of removed files) * (number of new files)
191 # - even more costly is '-C', '--find-copies-harder' with cost
192 # (number of files in the original tree) * (number of new files)
193 # - one might want to include '-B' option, e.g. '-B', '-M'
194 our @diff_opts = ('-M'); # taken from git_commit
196 # Disables features that would allow repository owners to inject script into
198 our $prevent_xss = 0;
200 # Path to the highlight executable to use (must be the one from
201 # http://www.andre-simon.de due to assumptions about parameters and output).
202 # Useful if highlight is not installed on your webserver's PATH.
203 # [Default: highlight]
204 our $highlight_bin = "++HIGHLIGHT_BIN++";
206 # information about snapshot formats that gitweb is capable of serving
207 our %known_snapshot_formats = (
209 # 'display' => display name,
210 # 'type' => mime type,
211 # 'suffix' => filename suffix,
212 # 'format' => --format for git-archive,
213 # 'compressor' => [compressor command and arguments]
214 # (array reference, optional)
215 # 'disabled' => boolean (optional)}
218 'display' => 'tar.gz',
219 'type' => 'application/x-gzip',
220 'suffix' => '.tar.gz',
222 'compressor' => ['gzip', '-n']},
225 'display' => 'tar.bz2',
226 'type' => 'application/x-bzip2',
227 'suffix' => '.tar.bz2',
229 'compressor' => ['bzip2']},
232 'display' => 'tar.xz',
233 'type' => 'application/x-xz',
234 'suffix' => '.tar.xz',
236 'compressor' => ['xz'],
241 'type' => 'application/x-zip',
246 # Aliases so we understand old gitweb.snapshot values in repository
248 our %known_snapshot_format_aliases = (
253 # backward compatibility: legacy gitweb config support
254 'x-gzip' => undef, 'gz' => undef,
255 'x-bzip2' => undef, 'bz2' => undef,
256 'x-zip' => undef, '' => undef,
259 # Pixel sizes for icons and avatars. If the default font sizes or lineheights
260 # are changed, it may be appropriate to change these values too via
267 # Used to set the maximum load that we will still respond to gitweb queries.
268 # If server load exceed this value then return "503 server busy" error.
269 # If gitweb cannot determined server load, it is taken to be 0.
270 # Leave it undefined (or set to 'undef') to turn off load checking.
273 # configuration for 'highlight' (http://www.andre-simon.de/)
275 our %highlight_basename = (
278 'SConstruct' => 'py', # SCons equivalent of Makefile
279 'Makefile' => 'make',
282 our %highlight_ext = (
283 # main extensions, defining name of syntax;
284 # see files in /usr/share/highlight/langDefs/ directory
285 (map { $_ => $_ } qw(py rb java css js tex bib xml awk bat ini spec tcl sql)),
286 # alternate extensions, see /etc/highlight/filetypes.conf
287 (map { $_ => 'c' } qw(c h)),
288 (map { $_ => 'sh' } qw(sh bash zsh ksh)),
289 (map { $_ => 'cpp' } qw(cpp cxx c++ cc)),
290 (map { $_ => 'php' } qw(php php3 php4 php5 phps)),
291 (map { $_ => 'pl' } qw(pl perl pm)), # perhaps also 'cgi'
292 (map { $_ => 'make'} qw(make mak mk)),
293 (map { $_ => 'xml' } qw(xml xhtml html htm)),
296 # You define site-wide feature defaults here; override them with
297 # $GITWEB_CONFIG as necessary.
300 # 'sub' => feature-sub (subroutine),
301 # 'override' => allow-override (boolean),
302 # 'default' => [ default options...] (array reference)}
304 # if feature is overridable (it means that allow-override has true value),
305 # then feature-sub will be called with default options as parameters;
306 # return value of feature-sub indicates if to enable specified feature
308 # if there is no 'sub' key (no feature-sub), then feature cannot be
311 # use gitweb_get_feature(<feature>) to retrieve the <feature> value
312 # (an array) or gitweb_check_feature(<feature>) to check if <feature>
315 # Enable the 'blame' blob view, showing the last commit that modified
316 # each line in the file. This can be very CPU-intensive.
318 # To enable system wide have in $GITWEB_CONFIG
319 # $feature{'blame'}{'default'} = [1];
320 # To have project specific config enable override in $GITWEB_CONFIG
321 # $feature{'blame'}{'override'} = 1;
322 # and in project config gitweb.blame = 0|1;
324 'sub' => sub { feature_bool
('blame', @_) },
328 # Enable the 'snapshot' link, providing a compressed archive of any
329 # tree. This can potentially generate high traffic if you have large
332 # Value is a list of formats defined in %known_snapshot_formats that
334 # To disable system wide have in $GITWEB_CONFIG
335 # $feature{'snapshot'}{'default'} = [];
336 # To have project specific config enable override in $GITWEB_CONFIG
337 # $feature{'snapshot'}{'override'} = 1;
338 # and in project config, a comma-separated list of formats or "none"
339 # to disable. Example: gitweb.snapshot = tbz2,zip;
341 'sub' => \
&feature_snapshot
,
343 'default' => ['tgz']},
345 # Enable text search, which will list the commits which match author,
346 # committer or commit text to a given string. Enabled by default.
347 # Project specific override is not supported.
349 # Note that this controls all search features, which means that if
350 # it is disabled, then 'grep' and 'pickaxe' search would also be
356 # Enable grep search, which will list the files in currently selected
357 # tree containing the given string. Enabled by default. This can be
358 # potentially CPU-intensive, of course.
359 # Note that you need to have 'search' feature enabled too.
361 # To enable system wide have in $GITWEB_CONFIG
362 # $feature{'grep'}{'default'} = [1];
363 # To have project specific config enable override in $GITWEB_CONFIG
364 # $feature{'grep'}{'override'} = 1;
365 # and in project config gitweb.grep = 0|1;
367 'sub' => sub { feature_bool
('grep', @_) },
371 # Enable the pickaxe search, which will list the commits that modified
372 # a given string in a file. This can be practical and quite faster
373 # alternative to 'blame', but still potentially CPU-intensive.
374 # Note that you need to have 'search' feature enabled too.
376 # To enable system wide have in $GITWEB_CONFIG
377 # $feature{'pickaxe'}{'default'} = [1];
378 # To have project specific config enable override in $GITWEB_CONFIG
379 # $feature{'pickaxe'}{'override'} = 1;
380 # and in project config gitweb.pickaxe = 0|1;
382 'sub' => sub { feature_bool
('pickaxe', @_) },
386 # Enable showing size of blobs in a 'tree' view, in a separate
387 # column, similar to what 'ls -l' does. This cost a bit of IO.
389 # To disable system wide have in $GITWEB_CONFIG
390 # $feature{'show-sizes'}{'default'} = [0];
391 # To have project specific config enable override in $GITWEB_CONFIG
392 # $feature{'show-sizes'}{'override'} = 1;
393 # and in project config gitweb.showsizes = 0|1;
395 'sub' => sub { feature_bool
('showsizes', @_) },
399 # Make gitweb use an alternative format of the URLs which can be
400 # more readable and natural-looking: project name is embedded
401 # directly in the path and the query string contains other
402 # auxiliary information. All gitweb installations recognize
403 # URL in either format; this configures in which formats gitweb
406 # To enable system wide have in $GITWEB_CONFIG
407 # $feature{'pathinfo'}{'default'} = [1];
408 # Project specific override is not supported.
410 # Note that you will need to change the default location of CSS,
411 # favicon, logo and possibly other files to an absolute URL. Also,
412 # if gitweb.cgi serves as your indexfile, you will need to force
413 # $my_uri to contain the script name in your $GITWEB_CONFIG.
418 # Make gitweb consider projects in project root subdirectories
419 # to be forks of existing projects. Given project $projname.git,
420 # projects matching $projname/*.git will not be shown in the main
421 # projects list, instead a '+' mark will be added to $projname
422 # there and a 'forks' view will be enabled for the project, listing
423 # all the forks. If project list is taken from a file, forks have
424 # to be listed after the main project.
426 # To enable system wide have in $GITWEB_CONFIG
427 # $feature{'forks'}{'default'} = [1];
428 # Project specific override is not supported.
433 # Insert custom links to the action bar of all project pages.
434 # This enables you mainly to link to third-party scripts integrating
435 # into gitweb; e.g. git-browser for graphical history representation
436 # or custom web-based repository administration interface.
438 # The 'default' value consists of a list of triplets in the form
439 # (label, link, position) where position is the label after which
440 # to insert the link and link is a format string where %n expands
441 # to the project name, %f to the project path within the filesystem,
442 # %h to the current hash (h gitweb parameter) and %b to the current
443 # hash base (hb gitweb parameter); %% expands to %.
445 # To enable system wide have in $GITWEB_CONFIG e.g.
446 # $feature{'actions'}{'default'} = [('graphiclog',
447 # '/git-browser/by-commit.html?r=%n', 'summary')];
448 # Project specific override is not supported.
453 # Allow gitweb scan project content tags of project repository,
454 # and display the popular Web 2.0-ish "tag cloud" near the projects
455 # list. Note that this is something COMPLETELY different from the
458 # gitweb by itself can show existing tags, but it does not handle
459 # tagging itself; you need to do it externally, outside gitweb.
460 # The format is described in git_get_project_ctags() subroutine.
461 # You may want to install the HTML::TagCloud Perl module to get
462 # a pretty tag cloud instead of just a list of tags.
464 # To enable system wide have in $GITWEB_CONFIG
465 # $feature{'ctags'}{'default'} = [1];
466 # Project specific override is not supported.
468 # In the future whether ctags editing is enabled might depend
469 # on the value, but using 1 should always mean no editing of ctags.
474 # The maximum number of patches in a patchset generated in patch
475 # view. Set this to 0 or undef to disable patch view, or to a
476 # negative number to remove any limit.
478 # To disable system wide have in $GITWEB_CONFIG
479 # $feature{'patches'}{'default'} = [0];
480 # To have project specific config enable override in $GITWEB_CONFIG
481 # $feature{'patches'}{'override'} = 1;
482 # and in project config gitweb.patches = 0|n;
483 # where n is the maximum number of patches allowed in a patchset.
485 'sub' => \
&feature_patches
,
489 # Avatar support. When this feature is enabled, views such as
490 # shortlog or commit will display an avatar associated with
491 # the email of the committer(s) and/or author(s).
493 # Currently available providers are gravatar and picon.
494 # If an unknown provider is specified, the feature is disabled.
496 # Picon currently relies on the indiana.edu database.
498 # To enable system wide have in $GITWEB_CONFIG
499 # $feature{'avatar'}{'default'} = ['<provider>'];
500 # where <provider> is either gravatar or picon.
501 # To have project specific config enable override in $GITWEB_CONFIG
502 # $feature{'avatar'}{'override'} = 1;
503 # and in project config gitweb.avatar = <provider>;
505 'sub' => \
&feature_avatar
,
509 # Enable displaying how much time and how many git commands
510 # it took to generate and display page. Disabled by default.
511 # Project specific override is not supported.
516 # Enable turning some links into links to actions which require
517 # JavaScript to run (like 'blame_incremental'). Not enabled by
518 # default. Project specific override is currently not supported.
519 'javascript-actions' => {
523 # Enable and configure ability to change common timezone for dates
524 # in gitweb output via JavaScript. Enabled by default.
525 # Project specific override is not supported.
526 'javascript-timezone' => {
529 'local', # default timezone: 'utc', 'local', or '(-|+)HHMM' format,
530 # or undef to turn off this feature
531 'gitweb_tz', # name of cookie where to store selected timezone
532 'datetime', # CSS class used to mark up dates for manipulation
535 # Syntax highlighting support. This is based on Daniel Svensson's
536 # and Sham Chukoury's work in gitweb-xmms2.git.
537 # It requires the 'highlight' program present in $PATH,
538 # and therefore is disabled by default.
540 # To enable system wide have in $GITWEB_CONFIG
541 # $feature{'highlight'}{'default'} = [1];
544 'sub' => sub { feature_bool
('highlight', @_) },
548 # Enable displaying of remote heads in the heads list
550 # To enable system wide have in $GITWEB_CONFIG
551 # $feature{'remote_heads'}{'default'} = [1];
552 # To have project specific config enable override in $GITWEB_CONFIG
553 # $feature{'remote_heads'}{'override'} = 1;
554 # and in project config gitweb.remoteheads = 0|1;
556 'sub' => sub { feature_bool
('remote_heads', @_) },
560 # Enable showing branches under other refs in addition to heads
562 # To set system wide extra branch refs have in $GITWEB_CONFIG
563 # $feature{'extra-branch-refs'}{'default'} = ['dirs', 'of', 'choice'];
564 # To have project specific config enable override in $GITWEB_CONFIG
565 # $feature{'extra-branch-refs'}{'override'} = 1;
566 # and in project config gitweb.extrabranchrefs = dirs of choice
567 # Every directory is separated with whitespace.
569 'extra-branch-refs' => {
570 'sub' => \
&feature_extra_branch_refs
,
574 # Redact e-mail addresses.
576 # To enable system wide have in $GITWEB_CONFIG
577 # $feature{'email-privacy'}{'default'} = [1];
579 'sub' => sub { feature_bool
('email-privacy', @_) },
584 sub gitweb_get_feature
{
586 return unless exists $feature{$name};
587 my ($sub, $override, @defaults) = (
588 $feature{$name}{'sub'},
589 $feature{$name}{'override'},
590 @{$feature{$name}{'default'}});
591 # project specific override is possible only if we have project
592 our $git_dir; # global variable, declared later
593 if (!$override || !defined $git_dir) {
597 warn "feature $name is not overridable";
600 return $sub->(@defaults);
603 # A wrapper to check if a given feature is enabled.
604 # With this, you can say
606 # my $bool_feat = gitweb_check_feature('bool_feat');
607 # gitweb_check_feature('bool_feat') or somecode;
611 # my ($bool_feat) = gitweb_get_feature('bool_feat');
612 # (gitweb_get_feature('bool_feat'))[0] or somecode;
614 sub gitweb_check_feature
{
615 return (gitweb_get_feature
(@_))[0];
621 my ($val) = git_get_project_config
($key, '--bool');
625 } elsif ($val eq 'true') {
627 } elsif ($val eq 'false') {
632 sub feature_snapshot
{
635 my ($val) = git_get_project_config
('snapshot');
638 @fmts = ($val eq 'none' ? () : split /\s*[,\s]\s*/, $val);
644 sub feature_patches
{
645 my @val = (git_get_project_config
('patches', '--int'));
655 my @val = (git_get_project_config
('avatar'));
657 return @val ? @val : @_;
660 sub feature_extra_branch_refs
{
661 my (@branch_refs) = @_;
662 my $values = git_get_project_config
('extrabranchrefs');
665 $values = config_to_multi
($values);
667 foreach my $value (@{$values}) {
668 push @branch_refs, split /\s+/, $value;
675 # checking HEAD file with -e is fragile if the repository was
676 # initialized long time ago (i.e. symlink HEAD) and was pack-ref'ed
678 sub check_head_link
{
680 my $headfile = "$dir/HEAD";
681 return ((-e
$headfile) ||
682 (-l
$headfile && readlink($headfile) =~ /^refs\/heads\
//));
685 sub check_export_ok
{
687 return (check_head_link
($dir) &&
688 (!$export_ok || -e
"$dir/$export_ok") &&
689 (!$export_auth_hook || $export_auth_hook->($dir)));
692 # process alternate names for backward compatibility
693 # filter out unsupported (unknown) snapshot formats
694 sub filter_snapshot_fmts
{
698 exists $known_snapshot_format_aliases{$_} ?
699 $known_snapshot_format_aliases{$_} : $_} @fmts;
701 exists $known_snapshot_formats{$_} &&
702 !$known_snapshot_formats{$_}{'disabled'}} @fmts;
705 sub filter_and_validate_refs
{
707 my %unique_refs = ();
709 foreach my $ref (@refs) {
710 die_error
(500, "Invalid ref '$ref' in 'extra-branch-refs' feature") unless (is_valid_ref_format
($ref));
711 # 'heads' are added implicitly in get_branch_refs().
712 $unique_refs{$ref} = 1 if ($ref ne 'heads');
714 return sort keys %unique_refs;
717 # If it is set to code reference, it is code that it is to be run once per
718 # request, allowing updating configurations that change with each request,
719 # while running other code in config file only once.
721 # Otherwise, if it is false then gitweb would process config file only once;
722 # if it is true then gitweb config would be run for each request.
723 our $per_request_config = 1;
725 # read and parse gitweb config file given by its parameter.
726 # returns true on success, false on recoverable error, allowing
727 # to chain this subroutine, using first file that exists.
728 # dies on errors during parsing config file, as it is unrecoverable.
729 sub read_config_file
{
730 my $filename = shift;
731 return unless defined $filename;
732 # die if there are errors parsing config file
741 our ($GITWEB_CONFIG, $GITWEB_CONFIG_SYSTEM, $GITWEB_CONFIG_COMMON);
742 sub evaluate_gitweb_config
{
743 our $GITWEB_CONFIG = $ENV{'GITWEB_CONFIG'} || "++GITWEB_CONFIG++";
744 our $GITWEB_CONFIG_SYSTEM = $ENV{'GITWEB_CONFIG_SYSTEM'} || "++GITWEB_CONFIG_SYSTEM++";
745 our $GITWEB_CONFIG_COMMON = $ENV{'GITWEB_CONFIG_COMMON'} || "++GITWEB_CONFIG_COMMON++";
747 # Protect against duplications of file names, to not read config twice.
748 # Only one of $GITWEB_CONFIG and $GITWEB_CONFIG_SYSTEM is used, so
749 # there possibility of duplication of filename there doesn't matter.
750 $GITWEB_CONFIG = "" if ($GITWEB_CONFIG eq $GITWEB_CONFIG_COMMON);
751 $GITWEB_CONFIG_SYSTEM = "" if ($GITWEB_CONFIG_SYSTEM eq $GITWEB_CONFIG_COMMON);
753 # Common system-wide settings for convenience.
754 # Those settings can be overridden by GITWEB_CONFIG or GITWEB_CONFIG_SYSTEM.
755 read_config_file
($GITWEB_CONFIG_COMMON);
757 # Use first config file that exists. This means use the per-instance
758 # GITWEB_CONFIG if exists, otherwise use GITWEB_SYSTEM_CONFIG.
759 read_config_file
($GITWEB_CONFIG) and return;
760 read_config_file
($GITWEB_CONFIG_SYSTEM);
763 # Get loadavg of system, to compare against $maxload.
764 # Currently it requires '/proc/loadavg' present to get loadavg;
765 # if it is not present it returns 0, which means no load checking.
767 if( -e
'/proc/loadavg' ){
768 open my $fd, '<', '/proc/loadavg'
770 my @load = split(/\s+/, scalar <$fd>);
773 # The first three columns measure CPU and IO utilization of the last one,
774 # five, and 10 minute periods. The fourth column shows the number of
775 # currently running processes and the total number of processes in the m/n
776 # format. The last column displays the last process ID used.
777 return $load[0] || 0;
779 # additional checks for load average should go here for things that don't export
785 # version of the core git binary
787 sub evaluate_git_version
{
788 our $git_version = qx("$GIT" --version) =~ m/git version (.*)$/ ? $1 : "unknown";
789 $number_of_git_cmds++;
793 if (defined $maxload && get_loadavg
() > $maxload) {
794 die_error
(503, "The load average on the server is too high");
798 # ======================================================================
799 # input validation and dispatch
801 # Various hash size-related values.
803 my $sha256_extra_len = 24;
804 my $sha256_len = $sha1_len + $sha256_extra_len;
806 # A regex matching $len hex characters. $len may be a range (e.g. 7,64).
809 my $hchr = qr/[0-9a-fA-F]/;
810 return qr/(?:(?:$hchr){$len})/;
813 # A regex matching two sets of $nlen hex characters, prefixed by the literal
814 # string $prefix and with the literal string $infix between them.
815 sub oid_nlen_prefix_infix_regex
{
820 my $rx = oid_nlen_regex
($nlen);
822 return qr/^\Q$prefix\E$rx\Q$infix\E$rx$/;
825 # A regex matching a valid object ID.
828 my $x = oid_nlen_regex
($sha1_len);
829 my $y = oid_nlen_regex
($sha256_extra_len);
830 $oid_regex = qr/(?:$x(?:$y)?)/;
833 # input parameters can be collected from a variety of sources (presently, CGI
834 # and PATH_INFO), so we define an %input_params hash that collects them all
835 # together during validation: this allows subsequent uses (e.g. href()) to be
836 # agnostic of the parameter origin
838 our %input_params = ();
840 # input parameters are stored with the long parameter name as key. This will
841 # also be used in the href subroutine to convert parameters to their CGI
842 # equivalent, and since the href() usage is the most frequent one, we store
843 # the name -> CGI key mapping here, instead of the reverse.
845 # XXX: Warning: If you touch this, check the search form for updating,
848 our @cgi_param_mapping = (
856 hash_parent_base
=> "hpb",
861 snapshot_format
=> "sf",
862 extra_options
=> "opt",
863 search_use_regexp
=> "sr",
866 project_filter
=> "pf",
867 # this must be last entry (for manipulation from JavaScript)
870 our %cgi_param_mapping = @cgi_param_mapping;
872 # we will also need to know the possible actions, for validation
874 "blame" => \
&git_blame
,
875 "blame_incremental" => \
&git_blame_incremental
,
876 "blame_data" => \
&git_blame_data
,
877 "blobdiff" => \
&git_blobdiff
,
878 "blobdiff_plain" => \
&git_blobdiff_plain
,
879 "blob" => \
&git_blob
,
880 "blob_plain" => \
&git_blob_plain
,
881 "commitdiff" => \
&git_commitdiff
,
882 "commitdiff_plain" => \
&git_commitdiff_plain
,
883 "commit" => \
&git_commit
,
884 "forks" => \
&git_forks
,
885 "heads" => \
&git_heads
,
886 "history" => \
&git_history
,
888 "patch" => \
&git_patch
,
889 "patches" => \
&git_patches
,
890 "remotes" => \
&git_remotes
,
892 "atom" => \
&git_atom
,
893 "search" => \
&git_search
,
894 "search_help" => \
&git_search_help
,
895 "shortlog" => \
&git_shortlog
,
896 "summary" => \
&git_summary
,
898 "tags" => \
&git_tags
,
899 "tree" => \
&git_tree
,
900 "snapshot" => \
&git_snapshot
,
901 "object" => \
&git_object
,
902 # those below don't need $project
903 "opml" => \
&git_opml
,
904 "project_list" => \
&git_project_list
,
905 "project_index" => \
&git_project_index
,
908 # finally, we have the hash of allowed extra_options for the commands that
910 our %allowed_options = (
911 "--no-merges" => [ qw(rss atom log shortlog history) ],
914 # fill %input_params with the CGI parameters. All values except for 'opt'
915 # should be single values, but opt can be an array. We should probably
916 # build an array of parameters that can be multi-valued, but since for the time
917 # being it's only this one, we just single it out
918 sub evaluate_query_params
{
921 while (my ($name, $symbol) = each %cgi_param_mapping) {
922 if ($symbol eq 'opt') {
923 $input_params{$name} = [ map { decode_utf8
($_) } $cgi->multi_param($symbol) ];
925 $input_params{$name} = decode_utf8
($cgi->param($symbol));
930 # now read PATH_INFO and update the parameter list for missing parameters
931 sub evaluate_path_info
{
932 return if defined $input_params{'project'};
933 return if !$path_info;
934 $path_info =~ s
,^/+,,;
935 return if !$path_info;
937 # find which part of PATH_INFO is project
938 my $project = $path_info;
940 while ($project && !check_head_link
("$projectroot/$project")) {
941 $project =~ s
,/*[^/]*$,,;
943 return unless $project;
944 $input_params{'project'} = $project;
946 # do not change any parameters if an action is given using the query string
947 return if $input_params{'action'};
948 $path_info =~ s
,^\Q
$project\E
/*,,;
950 # next, check if we have an action
951 my $action = $path_info;
953 if (exists $actions{$action}) {
954 $path_info =~ s
,^$action/*,,;
955 $input_params{'action'} = $action;
958 # list of actions that want hash_base instead of hash, but can have no
959 # pathname (f) parameter
965 # we want to catch, among others
966 # [$hash_parent_base[:$file_parent]..]$hash_parent[:$file_name]
967 my ($parentrefname, $parentpathname, $refname, $pathname) =
968 ($path_info =~ /^(?:(.+?)(?::(.+))?\.\.)?([^:]+?)?(?::(.+))?$/);
970 # first, analyze the 'current' part
971 if (defined $pathname) {
972 # we got "branch:filename" or "branch:dir/"
973 # we could use git_get_type(branch:pathname), but:
974 # - it needs $git_dir
975 # - it does a git() call
976 # - the convention of terminating directories with a slash
977 # makes it superfluous
978 # - embedding the action in the PATH_INFO would make it even
980 $pathname =~ s
,^/+,,;
981 if (!$pathname || substr($pathname, -1) eq "/") {
982 $input_params{'action'} ||= "tree";
985 # the default action depends on whether we had parent info
987 if ($parentrefname) {
988 $input_params{'action'} ||= "blobdiff_plain";
990 $input_params{'action'} ||= "blob_plain";
993 $input_params{'hash_base'} ||= $refname;
994 $input_params{'file_name'} ||= $pathname;
995 } elsif (defined $refname) {
996 # we got "branch". In this case we have to choose if we have to
997 # set hash or hash_base.
999 # Most of the actions without a pathname only want hash to be
1000 # set, except for the ones specified in @wants_base that want
1001 # hash_base instead. It should also be noted that hand-crafted
1002 # links having 'history' as an action and no pathname or hash
1003 # set will fail, but that happens regardless of PATH_INFO.
1004 if (defined $parentrefname) {
1005 # if there is parent let the default be 'shortlog' action
1006 # (for http://git.example.com/repo.git/A..B links); if there
1007 # is no parent, dispatch will detect type of object and set
1008 # action appropriately if required (if action is not set)
1009 $input_params{'action'} ||= "shortlog";
1011 if ($input_params{'action'} &&
1012 grep { $_ eq $input_params{'action'} } @wants_base) {
1013 $input_params{'hash_base'} ||= $refname;
1015 $input_params{'hash'} ||= $refname;
1019 # next, handle the 'parent' part, if present
1020 if (defined $parentrefname) {
1021 # a missing pathspec defaults to the 'current' filename, allowing e.g.
1022 # someproject/blobdiff/oldrev..newrev:/filename
1023 if ($parentpathname) {
1024 $parentpathname =~ s
,^/+,,;
1025 $parentpathname =~ s
,/$,,;
1026 $input_params{'file_parent'} ||= $parentpathname;
1028 $input_params{'file_parent'} ||= $input_params{'file_name'};
1030 # we assume that hash_parent_base is wanted if a path was specified,
1031 # or if the action wants hash_base instead of hash
1032 if (defined $input_params{'file_parent'} ||
1033 grep { $_ eq $input_params{'action'} } @wants_base) {
1034 $input_params{'hash_parent_base'} ||= $parentrefname;
1036 $input_params{'hash_parent'} ||= $parentrefname;
1040 # for the snapshot action, we allow URLs in the form
1041 # $project/snapshot/$hash.ext
1042 # where .ext determines the snapshot and gets removed from the
1043 # passed $refname to provide the $hash.
1045 # To be able to tell that $refname includes the format extension, we
1046 # require the following two conditions to be satisfied:
1047 # - the hash input parameter MUST have been set from the $refname part
1048 # of the URL (i.e. they must be equal)
1049 # - the snapshot format MUST NOT have been defined already (e.g. from
1051 # It's also useless to try any matching unless $refname has a dot,
1052 # so we check for that too
1053 if (defined $input_params{'action'} &&
1054 $input_params{'action'} eq 'snapshot' &&
1055 defined $refname && index($refname, '.') != -1 &&
1056 $refname eq $input_params{'hash'} &&
1057 !defined $input_params{'snapshot_format'}) {
1058 # We loop over the known snapshot formats, checking for
1059 # extensions. Allowed extensions are both the defined suffix
1060 # (which includes the initial dot already) and the snapshot
1061 # format key itself, with a prepended dot
1062 while (my ($fmt, $opt) = each %known_snapshot_formats) {
1063 my $hash = $refname;
1064 unless ($hash =~ s/(\Q$opt->{'suffix'}\E|\Q.$fmt\E)$//) {
1068 # a valid suffix was found, so set the snapshot format
1069 # and reset the hash parameter
1070 $input_params{'snapshot_format'} = $fmt;
1071 $input_params{'hash'} = $hash;
1072 # we also set the format suffix to the one requested
1073 # in the URL: this way a request for e.g. .tgz returns
1074 # a .tgz instead of a .tar.gz
1075 $known_snapshot_formats{$fmt}{'suffix'} = $sfx;
1081 our ($action, $project, $file_name, $file_parent, $hash, $hash_parent, $hash_base,
1082 $hash_parent_base, @extra_options, $page, $searchtype, $search_use_regexp,
1083 $searchtext, $search_regexp, $project_filter);
1084 sub evaluate_and_validate_params
{
1085 our $action = $input_params{'action'};
1086 if (defined $action) {
1087 if (!is_valid_action
($action)) {
1088 die_error
(400, "Invalid action parameter");
1092 # parameters which are pathnames
1093 our $project = $input_params{'project'};
1094 if (defined $project) {
1095 if (!is_valid_project
($project)) {
1097 die_error
(404, "No such project");
1101 our $project_filter = $input_params{'project_filter'};
1102 if (defined $project_filter) {
1103 if (!is_valid_pathname
($project_filter)) {
1104 die_error
(404, "Invalid project_filter parameter");
1108 our $file_name = $input_params{'file_name'};
1109 if (defined $file_name) {
1110 if (!is_valid_pathname
($file_name)) {
1111 die_error
(400, "Invalid file parameter");
1115 our $file_parent = $input_params{'file_parent'};
1116 if (defined $file_parent) {
1117 if (!is_valid_pathname
($file_parent)) {
1118 die_error
(400, "Invalid file parent parameter");
1122 # parameters which are refnames
1123 our $hash = $input_params{'hash'};
1124 if (defined $hash) {
1125 if (!is_valid_refname
($hash)) {
1126 die_error
(400, "Invalid hash parameter");
1130 our $hash_parent = $input_params{'hash_parent'};
1131 if (defined $hash_parent) {
1132 if (!is_valid_refname
($hash_parent)) {
1133 die_error
(400, "Invalid hash parent parameter");
1137 our $hash_base = $input_params{'hash_base'};
1138 if (defined $hash_base) {
1139 if (!is_valid_refname
($hash_base)) {
1140 die_error
(400, "Invalid hash base parameter");
1144 our @extra_options = @{$input_params{'extra_options'}};
1145 # @extra_options is always defined, since it can only be (currently) set from
1146 # CGI, and $cgi->param() returns the empty array in array context if the param
1148 foreach my $opt (@extra_options) {
1149 if (not exists $allowed_options{$opt}) {
1150 die_error
(400, "Invalid option parameter");
1152 if (not grep(/^$action$/, @{$allowed_options{$opt}})) {
1153 die_error
(400, "Invalid option parameter for this action");
1157 our $hash_parent_base = $input_params{'hash_parent_base'};
1158 if (defined $hash_parent_base) {
1159 if (!is_valid_refname
($hash_parent_base)) {
1160 die_error
(400, "Invalid hash parent base parameter");
1165 our $page = $input_params{'page'};
1166 if (defined $page) {
1167 if ($page =~ m/[^0-9]/) {
1168 die_error
(400, "Invalid page parameter");
1172 our $searchtype = $input_params{'searchtype'};
1173 if (defined $searchtype) {
1174 if ($searchtype =~ m/[^a-z]/) {
1175 die_error
(400, "Invalid searchtype parameter");
1179 our $search_use_regexp = $input_params{'search_use_regexp'};
1181 our $searchtext = $input_params{'searchtext'};
1182 our $search_regexp = undef;
1183 if (defined $searchtext) {
1184 if (length($searchtext) < 2) {
1185 die_error
(403, "At least two characters are required for search parameter");
1187 if ($search_use_regexp) {
1188 $search_regexp = $searchtext;
1189 if (!eval { qr/$search_regexp/; 1; }) {
1190 (my $error = $@) =~ s/ at \S+ line \d+.*\n?//;
1191 die_error
(400, "Invalid search regexp '$search_regexp'",
1195 $search_regexp = quotemeta $searchtext;
1200 # path to the current git repository
1202 sub evaluate_git_dir
{
1203 our $git_dir = "$projectroot/$project" if $project;
1206 our (@snapshot_fmts, $git_avatar, @extra_branch_refs);
1207 sub configure_gitweb_features
{
1208 # list of supported snapshot formats
1209 our @snapshot_fmts = gitweb_get_feature
('snapshot');
1210 @snapshot_fmts = filter_snapshot_fmts
(@snapshot_fmts);
1212 our ($git_avatar) = gitweb_get_feature
('avatar');
1213 $git_avatar = '' unless $git_avatar =~ /^(?:gravatar|picon)$/s;
1215 our @extra_branch_refs = gitweb_get_feature
('extra-branch-refs');
1216 @extra_branch_refs = filter_and_validate_refs
(@extra_branch_refs);
1219 sub get_branch_refs
{
1220 return ('heads', @extra_branch_refs);
1223 # custom error handler: 'die <message>' is Internal Server Error
1224 sub handle_errors_html
{
1225 my $msg = shift; # it is already HTML escaped
1227 # to avoid infinite loop where error occurs in die_error,
1228 # change handler to default handler, disabling handle_errors_html
1229 set_message
("Error occurred when inside die_error:\n$msg");
1231 # you cannot jump out of die_error when called as error handler;
1232 # the subroutine set via CGI::Carp::set_message is called _after_
1233 # HTTP headers are already written, so it cannot write them itself
1234 die_error
(undef, undef, $msg, -error_handler
=> 1, -no_http_header
=> 1);
1236 set_message
(\
&handle_errors_html
);
1240 if (!defined $action) {
1241 if (defined $hash) {
1242 $action = git_get_type
($hash);
1243 $action or die_error
(404, "Object does not exist");
1244 } elsif (defined $hash_base && defined $file_name) {
1245 $action = git_get_type
("$hash_base:$file_name");
1246 $action or die_error
(404, "File or directory does not exist");
1247 } elsif (defined $project) {
1248 $action = 'summary';
1250 $action = 'project_list';
1253 if (!defined($actions{$action})) {
1254 die_error
(400, "Unknown action");
1256 if ($action !~ m/^(?:opml|project_list|project_index)$/ &&
1258 die_error
(400, "Project needed");
1260 $actions{$action}->();
1264 our $t0 = [ gettimeofday
() ]
1266 our $number_of_git_cmds = 0;
1269 our $first_request = 1;
1274 if ($first_request) {
1275 evaluate_gitweb_config
();
1276 evaluate_git_version
();
1278 if ($per_request_config) {
1279 if (ref($per_request_config) eq 'CODE') {
1280 $per_request_config->();
1281 } elsif (!$first_request) {
1282 evaluate_gitweb_config
();
1287 # $projectroot and $projects_list might be set in gitweb config file
1288 $projects_list ||= $projectroot;
1290 evaluate_query_params
();
1291 evaluate_path_info
();
1292 evaluate_and_validate_params
();
1295 configure_gitweb_features
();
1300 our $is_last_request = sub { 1 };
1301 our ($pre_dispatch_hook, $post_dispatch_hook, $pre_listen_hook);
1304 our $FCGI_Stream_PRINT_raw = \
&FCGI
::Stream
::PRINT
;
1305 sub configure_as_fcgi
{
1307 our $CGI = 'CGI::Fast';
1308 # FCGI is not Unicode aware hence the UTF-8 encoding must be done manually.
1309 # However no encoding must be done within git_blob_plain() and git_snapshot()
1310 # which must still output in raw binary mode.
1311 no warnings
'redefine';
1312 my $enc = Encode
::find_encoding
('UTF-8');
1313 *FCGI
::Stream
::PRINT
= sub {
1315 for (my $i = 1; $i < @_; $i++) {
1316 $OUTPUT[$i] = $enc->encode($_[$i], Encode
::FB_CROAK
|Encode
::LEAVE_SRC
);
1319 goto $FCGI_Stream_PRINT_raw;
1322 my $request_number = 0;
1323 # let each child service 100 requests
1324 our $is_last_request = sub { ++$request_number > 100 };
1327 my $script_name = $ENV{'SCRIPT_NAME'} || $ENV{'SCRIPT_FILENAME'} || __FILE__
;
1329 if $script_name =~ /\.fcgi$/;
1331 return unless (@ARGV);
1333 require Getopt
::Long
;
1334 Getopt
::Long
::GetOptions
(
1335 'fastcgi|fcgi|f' => \
&configure_as_fcgi
,
1336 'nproc|n=i' => sub {
1337 my ($arg, $val) = @_;
1338 return unless eval { require FCGI
::ProcManager
; 1; };
1339 my $proc_manager = FCGI
::ProcManager-
>new({
1340 n_processes
=> $val,
1342 our $pre_listen_hook = sub { $proc_manager->pm_manage() };
1343 our $pre_dispatch_hook = sub { $proc_manager->pm_pre_dispatch() };
1344 our $post_dispatch_hook = sub { $proc_manager->pm_post_dispatch() };
1353 $pre_listen_hook->()
1354 if $pre_listen_hook;
1357 while ($cgi = $CGI->new()) {
1358 $pre_dispatch_hook->()
1359 if $pre_dispatch_hook;
1363 $post_dispatch_hook->()
1364 if $post_dispatch_hook;
1367 last REQUEST
if ($is_last_request->());
1376 if (defined caller) {
1377 # wrapped in a subroutine processing requests,
1378 # e.g. mod_perl with ModPerl::Registry, or PSGI with Plack::App::WrapCGI
1381 # pure CGI script, serving single request
1385 ## ======================================================================
1388 # possible values of extra options
1389 # -full => 0|1 - use absolute/full URL ($my_uri/$my_url as base)
1390 # -replay => 1 - start from a current view (replay with modifications)
1391 # -path_info => 0|1 - don't use/use path_info URL (if possible)
1392 # -anchor => ANCHOR - add #ANCHOR to end of URL, implies -replay if used alone
1395 # default is to use -absolute url() i.e. $my_uri
1396 my $href = $params{-full
} ? $my_url : $my_uri;
1398 # implicit -replay, must be first of implicit params
1399 $params{-replay
} = 1 if (keys %params == 1 && $params{-anchor
});
1401 $params{'project'} = $project unless exists $params{'project'};
1403 if ($params{-replay
}) {
1404 while (my ($name, $symbol) = each %cgi_param_mapping) {
1405 if (!exists $params{$name}) {
1406 $params{$name} = $input_params{$name};
1411 my $use_pathinfo = gitweb_check_feature
('pathinfo');
1412 if (defined $params{'project'} &&
1413 (exists $params{-path_info
} ? $params{-path_info
} : $use_pathinfo)) {
1414 # try to put as many parameters as possible in PATH_INFO:
1417 # - hash_parent or hash_parent_base:/file_parent
1418 # - hash or hash_base:/filename
1419 # - the snapshot_format as an appropriate suffix
1421 # When the script is the root DirectoryIndex for the domain,
1422 # $href here would be something like http://gitweb.example.com/
1423 # Thus, we strip any trailing / from $href, to spare us double
1424 # slashes in the final URL
1427 # Then add the project name, if present
1428 $href .= "/".esc_path_info
($params{'project'});
1429 delete $params{'project'};
1431 # since we destructively absorb parameters, we keep this
1432 # boolean that remembers if we're handling a snapshot
1433 my $is_snapshot = $params{'action'} eq 'snapshot';
1435 # Summary just uses the project path URL, any other action is
1437 if (defined $params{'action'}) {
1438 $href .= "/".esc_path_info
($params{'action'})
1439 unless $params{'action'} eq 'summary';
1440 delete $params{'action'};
1443 # Next, we put hash_parent_base:/file_parent..hash_base:/file_name,
1444 # stripping nonexistent or useless pieces
1445 $href .= "/" if ($params{'hash_base'} || $params{'hash_parent_base'}
1446 || $params{'hash_parent'} || $params{'hash'});
1447 if (defined $params{'hash_base'}) {
1448 if (defined $params{'hash_parent_base'}) {
1449 $href .= esc_path_info
($params{'hash_parent_base'});
1450 # skip the file_parent if it's the same as the file_name
1451 if (defined $params{'file_parent'}) {
1452 if (defined $params{'file_name'} && $params{'file_parent'} eq $params{'file_name'}) {
1453 delete $params{'file_parent'};
1454 } elsif ($params{'file_parent'} !~ /\.\./) {
1455 $href .= ":/".esc_path_info
($params{'file_parent'});
1456 delete $params{'file_parent'};
1460 delete $params{'hash_parent'};
1461 delete $params{'hash_parent_base'};
1462 } elsif (defined $params{'hash_parent'}) {
1463 $href .= esc_path_info
($params{'hash_parent'}). "..";
1464 delete $params{'hash_parent'};
1467 $href .= esc_path_info
($params{'hash_base'});
1468 if (defined $params{'file_name'} && $params{'file_name'} !~ /\.\./) {
1469 $href .= ":/".esc_path_info
($params{'file_name'});
1470 delete $params{'file_name'};
1472 delete $params{'hash'};
1473 delete $params{'hash_base'};
1474 } elsif (defined $params{'hash'}) {
1475 $href .= esc_path_info
($params{'hash'});
1476 delete $params{'hash'};
1479 # If the action was a snapshot, we can absorb the
1480 # snapshot_format parameter too
1482 my $fmt = $params{'snapshot_format'};
1483 # snapshot_format should always be defined when href()
1484 # is called, but just in case some code forgets, we
1485 # fall back to the default
1486 $fmt ||= $snapshot_fmts[0];
1487 $href .= $known_snapshot_formats{$fmt}{'suffix'};
1488 delete $params{'snapshot_format'};
1492 # now encode the parameters explicitly
1494 for (my $i = 0; $i < @cgi_param_mapping; $i += 2) {
1495 my ($name, $symbol) = ($cgi_param_mapping[$i], $cgi_param_mapping[$i+1]);
1496 if (defined $params{$name}) {
1497 if (ref($params{$name}) eq "ARRAY") {
1498 foreach my $par (@{$params{$name}}) {
1499 push @result, $symbol . "=" . esc_param
($par);
1502 push @result, $symbol . "=" . esc_param
($params{$name});
1506 $href .= "?" . join(';', @result) if scalar @result;
1508 # final transformation: trailing spaces must be escaped (URI-encoded)
1509 $href =~ s/(\s+)$/CGI::escape($1)/e;
1511 if ($params{-anchor
}) {
1512 $href .= "#".esc_param
($params{-anchor
});
1519 ## ======================================================================
1520 ## validation, quoting/unquoting and escaping
1522 sub is_valid_action
{
1524 return undef unless exists $actions{$input};
1528 sub is_valid_project
{
1531 return unless defined $input;
1532 if (!is_valid_pathname
($input) ||
1533 !(-d
"$projectroot/$input") ||
1534 !check_export_ok
("$projectroot/$input") ||
1535 ($strict_export && !project_in_list
($input))) {
1542 sub is_valid_pathname
{
1545 return undef unless defined $input;
1546 # no '.' or '..' as elements of path, i.e. no '.' or '..'
1547 # at the beginning, at the end, and between slashes.
1548 # also this catches doubled slashes
1549 if ($input =~ m!(^|/)(|\.|\.\.)(/|$)!) {
1552 # no null characters
1553 if ($input =~ m!\0!) {
1559 sub is_valid_ref_format
{
1562 return undef unless defined $input;
1563 # restrictions on ref name according to git-check-ref-format
1564 if ($input =~ m!(/\.|\.\.|[\000-\040\177 ~^:?*\[]|/$)!) {
1570 sub is_valid_refname
{
1573 return undef unless defined $input;
1574 # textual hashes are O.K.
1575 if ($input =~ m/^$oid_regex$/) {
1578 # it must be correct pathname
1579 is_valid_pathname
($input) or return undef;
1580 # check git-check-ref-format restrictions
1581 is_valid_ref_format
($input) or return undef;
1585 # decode sequences of octets in utf8 into Perl's internal form,
1586 # which is utf-8 with utf8 flag set if needed. gitweb writes out
1587 # in utf-8 thanks to "binmode STDOUT, ':utf8'" at beginning
1590 return undef unless defined $str;
1592 if (utf8
::is_utf8
($str) || utf8
::decode
($str)) {
1595 return decode
($fallback_encoding, $str, Encode
::FB_DEFAULT
);
1599 # quote unsafe chars, but keep the slash, even when it's not
1600 # correct, but quoted slashes look too horrible in bookmarks
1603 return undef unless defined $str;
1604 $str =~ s/([^A-Za-z0-9\-_.~()\/:@ ]+)/CGI
::escape
($1)/eg
;
1609 # the quoting rules for path_info fragment are slightly different
1612 return undef unless defined $str;
1614 # path_info doesn't treat '+' as space (specially), but '?' must be escaped
1615 $str =~ s/([^A-Za-z0-9\-_.~();\/;:@&= +]+)/CGI
::escape
($1)/eg
;
1620 # quote unsafe chars in whole URL, so some characters cannot be quoted
1623 return undef unless defined $str;
1624 $str =~ s/([^A-Za-z0-9\-_.~();\/;?:@&= ]+)/CGI
::escape
($1)/eg
;
1629 # quote unsafe characters in HTML attributes
1632 # for XHTML conformance escaping '"' to '"' is not enough
1633 return esc_html
(@_);
1636 # replace invalid utf8 character with SUBSTITUTION sequence
1641 return undef unless defined $str;
1643 $str = to_utf8
($str);
1644 $str = $cgi->escapeHTML($str);
1645 if ($opts{'-nbsp'}) {
1646 $str =~ s/ / /g;
1648 $str =~ s
|([[:cntrl
:]])|(($1 ne "\t") ? quot_cec
($1) : $1)|eg
;
1652 # quote control characters and escape filename to HTML
1657 return undef unless defined $str;
1659 $str = to_utf8
($str);
1660 $str = $cgi->escapeHTML($str);
1661 if ($opts{'-nbsp'}) {
1662 $str =~ s/ / /g;
1664 $str =~ s
|([[:cntrl
:]])|quot_cec
($1)|eg
;
1668 # Sanitize for use in XHTML + application/xml+xhtml (valid XML 1.0)
1672 return undef unless defined $str;
1674 $str = to_utf8
($str);
1675 $str =~ s
|([[:cntrl
:]])|(index("\t\n\r", $1) != -1 ? $1 : quot_cec
($1))|eg
;
1679 # Make control characters "printable", using character escape codes (CEC)
1683 my %es = ( # character escape codes, aka escape sequences
1684 "\t" => '\t', # tab (HT)
1685 "\n" => '\n', # line feed (LF)
1686 "\r" => '\r', # carriage return (CR)
1687 "\f" => '\f', # form feed (FF)
1688 "\b" => '\b', # backspace (BS)
1689 "\a" => '\a', # alarm (bell) (BEL)
1690 "\e" => '\e', # escape (ESC)
1691 "\013" => '\v', # vertical tab (VT)
1692 "\000" => '\0', # nul character (NUL)
1694 my $chr = ( (exists $es{$cntrl})
1696 : sprintf('\%2x', ord($cntrl)) );
1697 if ($opts{-nohtml
}) {
1700 return "<span class=\"cntrl\">$chr</span>";
1704 # Alternatively use unicode control pictures codepoints,
1705 # Unicode "printable representation" (PR)
1710 my $chr = sprintf('&#%04d;', 0x2400+ord($cntrl));
1711 if ($opts{-nohtml
}) {
1714 return "<span class=\"cntrl\">$chr</span>";
1718 # git may return quoted and escaped filenames
1724 my %es = ( # character escape codes, aka escape sequences
1725 't' => "\t", # tab (HT, TAB)
1726 'n' => "\n", # newline (NL)
1727 'r' => "\r", # return (CR)
1728 'f' => "\f", # form feed (FF)
1729 'b' => "\b", # backspace (BS)
1730 'a' => "\a", # alarm (bell) (BEL)
1731 'e' => "\e", # escape (ESC)
1732 'v' => "\013", # vertical tab (VT)
1735 if ($seq =~ m/^[0-7]{1,3}$/) {
1736 # octal char sequence
1737 return chr(oct($seq));
1738 } elsif (exists $es{$seq}) {
1739 # C escape sequence, aka character escape code
1742 # quoted ordinary character
1746 if ($str =~ m/^"(.*)"$/) {
1749 $str =~ s/\\([^0-7]|[0-7]{1,3})/unq($1)/eg;
1754 # escape tabs (convert tabs to spaces)
1758 while ((my $pos = index($line, "\t")) != -1) {
1759 if (my $count = (8 - ($pos % 8))) {
1760 my $spaces = ' ' x
$count;
1761 $line =~ s/\t/$spaces/;
1768 sub project_in_list
{
1769 my $project = shift;
1770 my @list = git_get_projects_list
();
1771 return @list && scalar(grep { $_->{'path'} eq $project } @list);
1774 ## ----------------------------------------------------------------------
1775 ## HTML aware string manipulation
1777 # Try to chop given string on a word boundary between position
1778 # $len and $len+$add_len. If there is no word boundary there,
1779 # chop at $len+$add_len. Do not chop if chopped part plus ellipsis
1780 # (marking chopped part) would be longer than given string.
1784 my $add_len = shift || 10;
1785 my $where = shift || 'right'; # 'left' | 'center' | 'right'
1787 # Make sure perl knows it is utf8 encoded so we don't
1788 # cut in the middle of a utf8 multibyte char.
1789 $str = to_utf8
($str);
1791 # allow only $len chars, but don't cut a word if it would fit in $add_len
1792 # if it doesn't fit, cut it if it's still longer than the dots we would add
1793 # remove chopped character entities entirely
1795 # when chopping in the middle, distribute $len into left and right part
1796 # return early if chopping wouldn't make string shorter
1797 if ($where eq 'center') {
1798 return $str if ($len + 5 >= length($str)); # filler is length 5
1801 return $str if ($len + 4 >= length($str)); # filler is length 4
1804 # regexps: ending and beginning with word part up to $add_len
1805 my $endre = qr/.{$len}\w{0,$add_len}/;
1806 my $begre = qr/\w{0,$add_len}.{$len}/;
1808 if ($where eq 'left') {
1809 $str =~ m/^(.*?)($begre)$/;
1810 my ($lead, $body) = ($1, $2);
1811 if (length($lead) > 4) {
1814 return "$lead$body";
1816 } elsif ($where eq 'center') {
1817 $str =~ m/^($endre)(.*)$/;
1818 my ($left, $str) = ($1, $2);
1819 $str =~ m/^(.*?)($begre)$/;
1820 my ($mid, $right) = ($1, $2);
1821 if (length($mid) > 5) {
1824 return "$left$mid$right";
1827 $str =~ m/^($endre)(.*)$/;
1830 if (length($tail) > 4) {
1833 return "$body$tail";
1837 # takes the same arguments as chop_str, but also wraps a <span> around the
1838 # result with a title attribute if it does get chopped. Additionally, the
1839 # string is HTML-escaped.
1840 sub chop_and_escape_str
{
1843 my $chopped = chop_str
(@_);
1844 $str = to_utf8
($str);
1845 if ($chopped eq $str) {
1846 return esc_html
($chopped);
1848 $str =~ s/[[:cntrl:]]/?/g;
1849 return $cgi->span({-title
=>$str}, esc_html
($chopped));
1853 # Highlight selected fragments of string, using given CSS class,
1854 # and escape HTML. It is assumed that fragments do not overlap.
1855 # Regions are passed as list of pairs (array references).
1857 # Example: esc_html_hl_regions("foobar", "mark", [ 0, 3 ]) returns
1858 # '<span class="mark">foo</span>bar'
1859 sub esc_html_hl_regions
{
1860 my ($str, $css_class, @sel) = @_;
1861 my %opts = grep { ref($_) ne 'ARRAY' } @sel;
1862 @sel = grep { ref($_) eq 'ARRAY' } @sel;
1863 return esc_html
($str, %opts) unless @sel;
1869 my ($begin, $end) = @$s;
1871 # Don't create empty <span> elements.
1872 next if $end <= $begin;
1874 my $escaped = esc_html
(substr($str, $begin, $end - $begin),
1877 $out .= esc_html
(substr($str, $pos, $begin - $pos), %opts)
1878 if ($begin - $pos > 0);
1879 $out .= $cgi->span({-class => $css_class}, $escaped);
1883 $out .= esc_html
(substr($str, $pos), %opts)
1884 if ($pos < length($str));
1889 # return positions of beginning and end of each match
1891 my ($str, $regexp) = @_;
1892 return unless (defined $str && defined $regexp);
1895 while ($str =~ /$regexp/g) {
1896 push @matches, [$-[0], $+[0]];
1901 # highlight match (if any), and escape HTML
1902 sub esc_html_match_hl
{
1903 my ($str, $regexp) = @_;
1904 return esc_html
($str) unless defined $regexp;
1906 my @matches = matchpos_list
($str, $regexp);
1907 return esc_html
($str) unless @matches;
1909 return esc_html_hl_regions
($str, 'match', @matches);
1913 # highlight match (if any) of shortened string, and escape HTML
1914 sub esc_html_match_hl_chopped
{
1915 my ($str, $chopped, $regexp) = @_;
1916 return esc_html_match_hl
($str, $regexp) unless defined $chopped;
1918 my @matches = matchpos_list
($str, $regexp);
1919 return esc_html
($chopped) unless @matches;
1921 # filter matches so that we mark chopped string
1922 my $tail = "... "; # see chop_str
1923 unless ($chopped =~ s/\Q$tail\E$//) {
1926 my $chop_len = length($chopped);
1927 my $tail_len = length($tail);
1930 for my $m (@matches) {
1931 if ($m->[0] > $chop_len) {
1932 push @filtered, [ $chop_len, $chop_len + $tail_len ] if ($tail_len > 0);
1934 } elsif ($m->[1] > $chop_len) {
1935 push @filtered, [ $m->[0], $chop_len + $tail_len ];
1941 return esc_html_hl_regions
($chopped . $tail, 'match', @filtered);
1944 ## ----------------------------------------------------------------------
1945 ## functions returning short strings
1947 # CSS class for given age value (in seconds)
1951 if (!defined $age) {
1953 } elsif ($age < 60*60*2) {
1955 } elsif ($age < 60*60*24*2) {
1962 # convert age in seconds to "nn units ago" string
1967 if ($age > 60*60*24*365*2) {
1968 $age_str = (int $age/60/60/24/365);
1969 $age_str .= " years ago";
1970 } elsif ($age > 60*60*24*(365/12)*2) {
1971 $age_str = int $age/60/60/24/(365/12);
1972 $age_str .= " months ago";
1973 } elsif ($age > 60*60*24*7*2) {
1974 $age_str = int $age/60/60/24/7;
1975 $age_str .= " weeks ago";
1976 } elsif ($age > 60*60*24*2) {
1977 $age_str = int $age/60/60/24;
1978 $age_str .= " days ago";
1979 } elsif ($age > 60*60*2) {
1980 $age_str = int $age/60/60;
1981 $age_str .= " hours ago";
1982 } elsif ($age > 60*2) {
1983 $age_str = int $age/60;
1984 $age_str .= " min ago";
1985 } elsif ($age > 2) {
1986 $age_str = int $age;
1987 $age_str .= " sec ago";
1989 $age_str .= " right now";
1995 S_IFINVALID
=> 0030000,
1996 S_IFGITLINK
=> 0160000,
1999 # submodule/subproject, a commit object reference
2003 return (($mode & S_IFMT
) == S_IFGITLINK
)
2006 # convert file mode in octal to symbolic file mode string
2008 my $mode = oct shift;
2010 if (S_ISGITLINK
($mode)) {
2011 return 'm---------';
2012 } elsif (S_ISDIR
($mode & S_IFMT
)) {
2013 return 'drwxr-xr-x';
2014 } elsif (S_ISLNK
($mode)) {
2015 return 'lrwxrwxrwx';
2016 } elsif (S_ISREG
($mode)) {
2017 # git cares only about the executable bit
2018 if ($mode & S_IXUSR
) {
2019 return '-rwxr-xr-x';
2021 return '-rw-r--r--';
2024 return '----------';
2028 # convert file mode in octal to file type string
2032 if ($mode !~ m/^[0-7]+$/) {
2038 if (S_ISGITLINK
($mode)) {
2040 } elsif (S_ISDIR
($mode & S_IFMT
)) {
2042 } elsif (S_ISLNK
($mode)) {
2044 } elsif (S_ISREG
($mode)) {
2051 # convert file mode in octal to file type description string
2052 sub file_type_long
{
2055 if ($mode !~ m/^[0-7]+$/) {
2061 if (S_ISGITLINK
($mode)) {
2063 } elsif (S_ISDIR
($mode & S_IFMT
)) {
2065 } elsif (S_ISLNK
($mode)) {
2067 } elsif (S_ISREG
($mode)) {
2068 if ($mode & S_IXUSR
) {
2069 return "executable";
2079 ## ----------------------------------------------------------------------
2080 ## functions returning short HTML fragments, or transforming HTML fragments
2081 ## which don't belong to other sections
2083 # format line of commit message.
2084 sub format_log_line_html
{
2087 # Potentially abbreviated OID.
2088 my $regex = oid_nlen_regex
("7,64");
2090 $line = esc_html
($line, -nbsp
=>1);
2094 # The output of "git describe", e.g. v2.10.0-297-gf6727b0
2095 # or hadoop-20160921-113441-20-g094fb7d
2096 (?<!-) # see strbuf_check_tag_ref(). Tags can't start with -
2098 (?!\
.) # refs can't end with ".", see check_refname_format()
2101 # Just a normal looking Git SHA1
2106 $cgi->a({-href
=> href
(action
=>"object", hash
=>$1),
2107 -class => "text"}, $1);
2113 # format marker of refs pointing to given object
2115 # the destination action is chosen based on object type and current context:
2116 # - for annotated tags, we choose the tag view unless it's the current view
2117 # already, in which case we go to shortlog view
2118 # - for other refs, we keep the current view if we're in history, shortlog or
2119 # log view, and select shortlog otherwise
2120 sub format_ref_marker
{
2121 my ($refs, $id) = @_;
2124 if (defined $refs->{$id}) {
2125 foreach my $ref (@{$refs->{$id}}) {
2126 # this code exploits the fact that non-lightweight tags are the
2127 # only indirect objects, and that they are the only objects for which
2128 # we want to use tag instead of shortlog as action
2129 my ($type, $name) = qw();
2130 my $indirect = ($ref =~ s/\^\{\}$//);
2131 # e.g. tags/v2.6.11 or heads/next
2132 if ($ref =~ m!^(.*?)s?/(.*)$!) {
2141 $class .= " indirect" if $indirect;
2143 my $dest_action = "shortlog";
2146 $dest_action = "tag" unless $action eq "tag";
2147 } elsif ($action =~ /^(history|(short)?log)$/) {
2148 $dest_action = $action;
2152 $dest .= "refs/" unless $ref =~ m
!^refs
/!;
2155 my $link = $cgi->a({
2157 action
=>$dest_action,
2159 )}, esc_html
($name));
2161 $markers .= " <span class=\"".esc_attr
($class)."\" title=\"".esc_attr
($ref)."\">" .
2167 return ' <span class="refs">'. $markers . '</span>';
2173 # format, perhaps shortened and with markers, title line
2174 sub format_subject_html
{
2175 my ($long, $short, $href, $extra) = @_;
2176 $extra = '' unless defined($extra);
2178 if (length($short) < length($long)) {
2179 $long =~ s/[[:cntrl:]]/?/g;
2180 return $cgi->a({-href
=> $href, -class => "list subject",
2181 -title
=> to_utf8
($long)},
2182 esc_html
($short)) . $extra;
2184 return $cgi->a({-href
=> $href, -class => "list subject"},
2185 esc_html
($long)) . $extra;
2189 # Rather than recomputing the url for an email multiple times, we cache it
2190 # after the first hit. This gives a visible benefit in views where the avatar
2191 # for the same email is used repeatedly (e.g. shortlog).
2192 # The cache is shared by all avatar engines (currently gravatar only), which
2193 # are free to use it as preferred. Since only one avatar engine is used for any
2194 # given page, there's no risk for cache conflicts.
2195 our %avatar_cache = ();
2197 # Compute the picon url for a given email, by using the picon search service over at
2198 # http://www.cs.indiana.edu/picons/search.html
2200 my $email = lc shift;
2201 if (!$avatar_cache{$email}) {
2202 my ($user, $domain) = split('@', $email);
2203 $avatar_cache{$email} =
2204 "//www.cs.indiana.edu/cgi-pub/kinzler/piconsearch.cgi/" .
2206 "users+domains+unknown/up/single";
2208 return $avatar_cache{$email};
2211 # Compute the gravatar url for a given email, if it's not in the cache already.
2212 # Gravatar stores only the part of the URL before the size, since that's the
2213 # one computationally more expensive. This also allows reuse of the cache for
2214 # different sizes (for this particular engine).
2216 my $email = lc shift;
2218 $avatar_cache{$email} ||=
2219 "//www.gravatar.com/avatar/" .
2220 md5_hex
($email) . "?s=";
2221 return $avatar_cache{$email} . $size;
2224 # Insert an avatar for the given $email at the given $size if the feature
2226 sub git_get_avatar
{
2227 my ($email, %opts) = @_;
2228 my $pre_white = ($opts{-pad_before
} ? " " : "");
2229 my $post_white = ($opts{-pad_after
} ? " " : "");
2230 $opts{-size
} ||= 'default';
2231 my $size = $avatar_size{$opts{-size
}} || $avatar_size{'default'};
2233 if ($git_avatar eq 'gravatar') {
2234 $url = gravatar_url
($email, $size);
2235 } elsif ($git_avatar eq 'picon') {
2236 $url = picon_url
($email);
2238 # Other providers can be added by extending the if chain, defining $url
2239 # as needed. If no variant puts something in $url, we assume avatars
2240 # are completely disabled/unavailable.
2243 "<img width=\"$size\" " .
2244 "class=\"avatar\" " .
2245 "src=\"".esc_url
($url)."\" " .
2253 sub format_search_author
{
2254 my ($author, $searchtype, $displaytext) = @_;
2255 my $have_search = gitweb_check_feature
('search');
2259 if ($searchtype eq 'author') {
2260 $performed = "authored";
2261 } elsif ($searchtype eq 'committer') {
2262 $performed = "committed";
2265 return $cgi->a({-href
=> href
(action
=>"search", hash
=>$hash,
2266 searchtext
=>$author,
2267 searchtype
=>$searchtype), class=>"list",
2268 title
=>"Search for commits $performed by $author"},
2272 return $displaytext;
2276 # format the author name of the given commit with the given tag
2277 # the author name is chopped and escaped according to the other
2278 # optional parameters (see chop_str).
2279 sub format_author_html
{
2282 my $author = chop_and_escape_str
($co->{'author_name'}, @_);
2283 return "<$tag class=\"author\">" .
2284 format_search_author
($co->{'author_name'}, "author",
2285 git_get_avatar
($co->{'author_email'}, -pad_after
=> 1) .
2290 # format git diff header line, i.e. "diff --(git|combined|cc) ..."
2291 sub format_git_diff_header_line
{
2293 my $diffinfo = shift;
2294 my ($from, $to) = @_;
2296 if ($diffinfo->{'nparents'}) {
2298 $line =~ s!^(diff (.*?) )"?.*$!$1!;
2299 if ($to->{'href'}) {
2300 $line .= $cgi->a({-href
=> $to->{'href'}, -class => "path"},
2301 esc_path
($to->{'file'}));
2302 } else { # file was deleted (no href)
2303 $line .= esc_path
($to->{'file'});
2307 $line =~ s!^(diff (.*?) )"?a/.*$!$1!;
2308 if ($from->{'href'}) {
2309 $line .= $cgi->a({-href
=> $from->{'href'}, -class => "path"},
2310 'a/' . esc_path
($from->{'file'}));
2311 } else { # file was added (no href)
2312 $line .= 'a/' . esc_path
($from->{'file'});
2315 if ($to->{'href'}) {
2316 $line .= $cgi->a({-href
=> $to->{'href'}, -class => "path"},
2317 'b/' . esc_path
($to->{'file'}));
2318 } else { # file was deleted
2319 $line .= 'b/' . esc_path
($to->{'file'});
2323 return "<div class=\"diff header\">$line</div>\n";
2326 # format extended diff header line, before patch itself
2327 sub format_extended_diff_header_line
{
2329 my $diffinfo = shift;
2330 my ($from, $to) = @_;
2333 if ($line =~ s!^((copy|rename) from ).*$!$1! && $from->{'href'}) {
2334 $line .= $cgi->a({-href
=>$from->{'href'}, -class=>"path"},
2335 esc_path
($from->{'file'}));
2337 if ($line =~ s!^((copy|rename) to ).*$!$1! && $to->{'href'}) {
2338 $line .= $cgi->a({-href
=>$to->{'href'}, -class=>"path"},
2339 esc_path
($to->{'file'}));
2341 # match single <mode>
2342 if ($line =~ m/\s(\d{6})$/) {
2343 $line .= '<span class="info"> (' .
2344 file_type_long
($1) .
2348 if ($line =~ oid_nlen_prefix_infix_regex
($sha1_len, "index ", ",") |
2349 $line =~ oid_nlen_prefix_infix_regex
($sha256_len, "index ", ",")) {
2350 # can match only for combined diff
2352 for (my $i = 0; $i < $diffinfo->{'nparents'}; $i++) {
2353 if ($from->{'href'}[$i]) {
2354 $line .= $cgi->a({-href
=>$from->{'href'}[$i],
2356 substr($diffinfo->{'from_id'}[$i],0,7));
2361 $line .= ',' if ($i < $diffinfo->{'nparents'} - 1);
2364 if ($to->{'href'}) {
2365 $line .= $cgi->a({-href
=>$to->{'href'}, -class=>"hash"},
2366 substr($diffinfo->{'to_id'},0,7));
2371 } elsif ($line =~ oid_nlen_prefix_infix_regex
($sha1_len, "index ", "..") |
2372 $line =~ oid_nlen_prefix_infix_regex
($sha256_len, "index ", "..")) {
2373 # can match only for ordinary diff
2374 my ($from_link, $to_link);
2375 if ($from->{'href'}) {
2376 $from_link = $cgi->a({-href
=>$from->{'href'}, -class=>"hash"},
2377 substr($diffinfo->{'from_id'},0,7));
2379 $from_link = '0' x
7;
2381 if ($to->{'href'}) {
2382 $to_link = $cgi->a({-href
=>$to->{'href'}, -class=>"hash"},
2383 substr($diffinfo->{'to_id'},0,7));
2387 my ($from_id, $to_id) = ($diffinfo->{'from_id'}, $diffinfo->{'to_id'});
2388 $line =~ s!$from_id\.\.$to_id!$from_link..$to_link!;
2391 return $line . "<br/>\n";
2394 # format from-file/to-file diff header
2395 sub format_diff_from_to_header
{
2396 my ($from_line, $to_line, $diffinfo, $from, $to, @parents) = @_;
2401 #assert($line =~ m/^---/) if DEBUG;
2402 # no extra formatting for "^--- /dev/null"
2403 if (! $diffinfo->{'nparents'}) {
2404 # ordinary (single parent) diff
2405 if ($line =~ m!^--- "?a/!) {
2406 if ($from->{'href'}) {
2408 $cgi->a({-href
=>$from->{'href'}, -class=>"path"},
2409 esc_path
($from->{'file'}));
2412 esc_path
($from->{'file'});
2415 $result .= qq
!<div
class="diff from_file">$line</div
>\n!;
2418 # combined diff (merge commit)
2419 for (my $i = 0; $i < $diffinfo->{'nparents'}; $i++) {
2420 if ($from->{'href'}[$i]) {
2422 $cgi->a({-href
=>href
(action
=>"blobdiff",
2423 hash_parent
=>$diffinfo->{'from_id'}[$i],
2424 hash_parent_base
=>$parents[$i],
2425 file_parent
=>$from->{'file'}[$i],
2426 hash
=>$diffinfo->{'to_id'},
2428 file_name
=>$to->{'file'}),
2430 -title
=>"diff" . ($i+1)},
2433 $cgi->a({-href
=>$from->{'href'}[$i], -class=>"path"},
2434 esc_path
($from->{'file'}[$i]));
2436 $line = '--- /dev/null';
2438 $result .= qq
!<div
class="diff from_file">$line</div
>\n!;
2443 #assert($line =~ m/^\+\+\+/) if DEBUG;
2444 # no extra formatting for "^+++ /dev/null"
2445 if ($line =~ m!^\+\+\+ "?b/!) {
2446 if ($to->{'href'}) {
2448 $cgi->a({-href
=>$to->{'href'}, -class=>"path"},
2449 esc_path
($to->{'file'}));
2452 esc_path
($to->{'file'});
2455 $result .= qq
!<div
class="diff to_file">$line</div
>\n!;
2460 # create note for patch simplified by combined diff
2461 sub format_diff_cc_simplified
{
2462 my ($diffinfo, @parents) = @_;
2465 $result .= "<div class=\"diff header\">" .
2467 if (!is_deleted
($diffinfo)) {
2468 $result .= $cgi->a({-href
=> href
(action
=>"blob",
2470 hash
=>$diffinfo->{'to_id'},
2471 file_name
=>$diffinfo->{'to_file'}),
2473 esc_path
($diffinfo->{'to_file'}));
2475 $result .= esc_path
($diffinfo->{'to_file'});
2477 $result .= "</div>\n" . # class="diff header"
2478 "<div class=\"diff nodifferences\">" .
2480 "</div>\n"; # class="diff nodifferences"
2485 sub diff_line_class
{
2486 my ($line, $from, $to) = @_;
2491 if ($from && $to && ref($from->{'href'}) eq "ARRAY") {
2492 $num_sign = scalar @{$from->{'href'}};
2495 my @diff_line_classifier = (
2496 { regexp
=> qr/^\@\@{$num_sign} /, class => "chunk_header"},
2497 { regexp
=> qr/^\\/, class => "incomplete" },
2498 { regexp
=> qr/^ {$num_sign}/, class => "ctx" },
2499 # classifier for context must come before classifier add/rem,
2500 # or we would have to use more complicated regexp, for example
2501 # qr/(?= {0,$m}\+)[+ ]{$num_sign}/, where $m = $num_sign - 1;
2502 { regexp
=> qr/^[+ ]{$num_sign}/, class => "add" },
2503 { regexp
=> qr/^[- ]{$num_sign}/, class => "rem" },
2505 for my $clsfy (@diff_line_classifier) {
2506 return $clsfy->{'class'}
2507 if ($line =~ $clsfy->{'regexp'});
2514 # assumes that $from and $to are defined and correctly filled,
2515 # and that $line holds a line of chunk header for unified diff
2516 sub format_unidiff_chunk_header
{
2517 my ($line, $from, $to) = @_;
2519 my ($from_text, $from_start, $from_lines, $to_text, $to_start, $to_lines, $section) =
2520 $line =~ m/^\@{2} (-(\d+)(?:,(\d+))?) (\+(\d+)(?:,(\d+))?) \@{2}(.*)$/;
2522 $from_lines = 0 unless defined $from_lines;
2523 $to_lines = 0 unless defined $to_lines;
2525 if ($from->{'href'}) {
2526 $from_text = $cgi->a({-href
=>"$from->{'href'}#l$from_start",
2527 -class=>"list"}, $from_text);
2529 if ($to->{'href'}) {
2530 $to_text = $cgi->a({-href
=>"$to->{'href'}#l$to_start",
2531 -class=>"list"}, $to_text);
2533 $line = "<span class=\"chunk_info\">@@ $from_text $to_text @@</span>" .
2534 "<span class=\"section\">" . esc_html
($section, -nbsp
=>1) . "</span>";
2538 # assumes that $from and $to are defined and correctly filled,
2539 # and that $line holds a line of chunk header for combined diff
2540 sub format_cc_diff_chunk_header
{
2541 my ($line, $from, $to) = @_;
2543 my ($prefix, $ranges, $section) = $line =~ m/^(\@+) (.*?) \@+(.*)$/;
2544 my (@from_text, @from_start, @from_nlines, $to_text, $to_start, $to_nlines);
2546 @from_text = split(' ', $ranges);
2547 for (my $i = 0; $i < @from_text; ++$i) {
2548 ($from_start[$i], $from_nlines[$i]) =
2549 (split(',', substr($from_text[$i], 1)), 0);
2552 $to_text = pop @from_text;
2553 $to_start = pop @from_start;
2554 $to_nlines = pop @from_nlines;
2556 $line = "<span class=\"chunk_info\">$prefix ";
2557 for (my $i = 0; $i < @from_text; ++$i) {
2558 if ($from->{'href'}[$i]) {
2559 $line .= $cgi->a({-href
=>"$from->{'href'}[$i]#l$from_start[$i]",
2560 -class=>"list"}, $from_text[$i]);
2562 $line .= $from_text[$i];
2566 if ($to->{'href'}) {
2567 $line .= $cgi->a({-href
=>"$to->{'href'}#l$to_start",
2568 -class=>"list"}, $to_text);
2572 $line .= " $prefix</span>" .
2573 "<span class=\"section\">" . esc_html
($section, -nbsp
=>1) . "</span>";
2577 # process patch (diff) line (not to be used for diff headers),
2578 # returning HTML-formatted (but not wrapped) line.
2579 # If the line is passed as a reference, it is treated as HTML and not
2581 sub format_diff_line
{
2582 my ($line, $diff_class, $from, $to) = @_;
2588 $line = untabify
($line);
2590 if ($from && $to && $line =~ m/^\@{2} /) {
2591 $line = format_unidiff_chunk_header
($line, $from, $to);
2592 } elsif ($from && $to && $line =~ m/^\@{3}/) {
2593 $line = format_cc_diff_chunk_header
($line, $from, $to);
2595 $line = esc_html
($line, -nbsp
=>1);
2599 my $diff_classes = "diff";
2600 $diff_classes .= " $diff_class" if ($diff_class);
2601 $line = "<div class=\"$diff_classes\">$line</div>\n";
2606 # Generates undef or something like "_snapshot_" or "snapshot (_tbz2_ _zip_)",
2607 # linked. Pass the hash of the tree/commit to snapshot.
2608 sub format_snapshot_links
{
2610 my $num_fmts = @snapshot_fmts;
2611 if ($num_fmts > 1) {
2612 # A parenthesized list of links bearing format names.
2613 # e.g. "snapshot (_tar.gz_ _zip_)"
2614 return "snapshot (" . join(' ', map
2621 }, $known_snapshot_formats{$_}{'display'})
2622 , @snapshot_fmts) . ")";
2623 } elsif ($num_fmts == 1) {
2624 # A single "snapshot" link whose tooltip bears the format name.
2626 my ($fmt) = @snapshot_fmts;
2632 snapshot_format
=>$fmt
2634 -title
=> "in format: $known_snapshot_formats{$fmt}{'display'}"
2636 } else { # $num_fmts == 0
2641 ## ......................................................................
2642 ## functions returning values to be passed, perhaps after some
2643 ## transformation, to other functions; e.g. returning arguments to href()
2645 # returns hash to be passed to href to generate gitweb URL
2646 # in -title key it returns description of link
2648 my $format = shift || 'Atom';
2649 my %res = (action
=> lc($format));
2650 my $matched_ref = 0;
2652 # feed links are possible only for project views
2653 return unless (defined $project);
2654 # some views should link to OPML, or to generic project feed,
2655 # or don't have specific feed yet (so they should use generic)
2656 return if (!$action || $action =~ /^(?:tags|heads|forks|tag|search)$/x);
2659 # branches refs uses 'refs/' + $get_branch_refs()[x] + '/' prefix
2660 # (fullname) to differentiate from tag links; this also makes
2661 # possible to detect branch links
2662 for my $ref (get_branch_refs
()) {
2663 if ((defined $hash_base && $hash_base =~ m!^refs/\Q$ref\E/(.*)$!) ||
2664 (defined $hash && $hash =~ m!^refs/\Q$ref\E/(.*)$!)) {
2666 $matched_ref = $ref;
2670 # find log type for feed description (title)
2672 if (defined $file_name) {
2673 $type = "history of $file_name";
2674 $type .= "/" if ($action eq 'tree');
2675 $type .= " on '$branch'" if (defined $branch);
2677 $type = "log of $branch" if (defined $branch);
2680 $res{-title
} = $type;
2681 $res{'hash'} = (defined $branch ? "refs/$matched_ref/$branch" : undef);
2682 $res{'file_name'} = $file_name;
2687 ## ----------------------------------------------------------------------
2688 ## git utility subroutines, invoking git commands
2690 # returns path to the core git executable and the --git-dir parameter as list
2692 $number_of_git_cmds++;
2693 return $GIT, '--git-dir='.$git_dir;
2696 # quote the given arguments for passing them to the shell
2697 # quote_command("command", "arg 1", "arg with ' and ! characters")
2698 # => "'command' 'arg 1' 'arg with '\'' and '\!' characters'"
2699 # Try to avoid using this function wherever possible.
2702 map { my $a = $_; $a =~ s/(['!])/'\\$1'/g; "'$a'" } @_ );
2705 # get HEAD ref of given project as hash
2706 sub git_get_head_hash
{
2707 return git_get_full_hash
(shift, 'HEAD');
2710 sub git_get_full_hash
{
2711 return git_get_hash
(@_);
2714 sub git_get_short_hash
{
2715 return git_get_hash
(@_, '--short=7');
2719 my ($project, $hash, @options) = @_;
2720 my $o_git_dir = $git_dir;
2722 $git_dir = "$projectroot/$project";
2723 if (open my $fd, '-|', git_cmd
(), 'rev-parse',
2724 '--verify', '-q', @options, $hash) {
2726 chomp $retval if defined $retval;
2729 if (defined $o_git_dir) {
2730 $git_dir = $o_git_dir;
2735 # get type of given object
2739 open my $fd, "-|", git_cmd
(), "cat-file", '-t', $hash or return;
2741 close $fd or return;
2746 # repository configuration
2747 our $config_file = '';
2750 # store multiple values for single key as anonymous array reference
2751 # single values stored directly in the hash, not as [ <value> ]
2752 sub hash_set_multi
{
2753 my ($hash, $key, $value) = @_;
2755 if (!exists $hash->{$key}) {
2756 $hash->{$key} = $value;
2757 } elsif (!ref $hash->{$key}) {
2758 $hash->{$key} = [ $hash->{$key}, $value ];
2760 push @{$hash->{$key}}, $value;
2764 # return hash of git project configuration
2765 # optionally limited to some section, e.g. 'gitweb'
2766 sub git_parse_project_config
{
2767 my $section_regexp = shift;
2772 open my $fh, "-|", git_cmd
(), "config", '-z', '-l',
2775 while (my $keyval = <$fh>) {
2777 my ($key, $value) = split(/\n/, $keyval, 2);
2779 hash_set_multi
(\
%config, $key, $value)
2780 if (!defined $section_regexp || $key =~ /^(?:$section_regexp)\./o);
2787 # convert config value to boolean: 'true' or 'false'
2788 # no value, number > 0, 'true' and 'yes' values are true
2789 # rest of values are treated as false (never as error)
2790 sub config_to_bool
{
2793 return 1 if !defined $val; # section.key
2795 # strip leading and trailing whitespace
2799 return (($val =~ /^\d+$/ && $val) || # section.key = 1
2800 ($val =~ /^(?:true|yes)$/i)); # section.key = true
2803 # convert config value to simple decimal number
2804 # an optional value suffix of 'k', 'm', or 'g' will cause the value
2805 # to be multiplied by 1024, 1048576, or 1073741824
2809 # strip leading and trailing whitespace
2813 if (my ($num, $unit) = ($val =~ /^([0-9]*)([kmg])$/i)) {
2815 # unknown unit is treated as 1
2816 return $num * ($unit eq 'g' ? 1073741824 :
2817 $unit eq 'm' ? 1048576 :
2818 $unit eq 'k' ? 1024 : 1);
2823 # convert config value to array reference, if needed
2824 sub config_to_multi
{
2827 return ref($val) ? $val : (defined($val) ? [ $val ] : []);
2830 sub git_get_project_config
{
2831 my ($key, $type) = @_;
2833 return unless defined $git_dir;
2836 return unless ($key);
2837 # only subsection, if exists, is case sensitive,
2838 # and not lowercased by 'git config -z -l'
2839 if (my ($hi, $mi, $lo) = ($key =~ /^([^.]*)\.(.*)\.([^.]*)$/)) {
2841 $key = join(".", lc($hi), $mi, lc($lo));
2842 return if ($lo =~ /\W/ || $hi =~ /\W/);
2846 return if ($key =~ /\W/);
2848 $key =~ s/^gitweb\.//;
2851 if (defined $type) {
2854 unless ($type eq 'bool' || $type eq 'int');
2858 if (!defined $config_file ||
2859 $config_file ne "$git_dir/config") {
2860 %config = git_parse_project_config
('gitweb');
2861 $config_file = "$git_dir/config";
2864 # check if config variable (key) exists
2865 return unless exists $config{"gitweb.$key"};
2868 if (!defined $type) {
2869 return $config{"gitweb.$key"};
2870 } elsif ($type eq 'bool') {
2871 # backward compatibility: 'git config --bool' returns true/false
2872 return config_to_bool
($config{"gitweb.$key"}) ? 'true' : 'false';
2873 } elsif ($type eq 'int') {
2874 return config_to_int
($config{"gitweb.$key"});
2876 return $config{"gitweb.$key"};
2879 # get hash of given path at given ref
2880 sub git_get_hash_by_path
{
2882 my $path = shift || return undef;
2887 open my $fd, "-|", git_cmd
(), "ls-tree", $base, "--", $path
2888 or die_error
(500, "Open git-ls-tree failed");
2890 close $fd or return undef;
2892 if (!defined $line) {
2893 # there is no tree or hash given by $path at $base
2897 #'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'
2898 $line =~ m/^([0-9]+) (.+) ($oid_regex)\t/;
2899 if (defined $type && $type ne $2) {
2900 # type doesn't match
2906 # get path of entry with given hash at given tree-ish (ref)
2907 # used to get 'from' filename for combined diff (merge commit) for renames
2908 sub git_get_path_by_hash
{
2909 my $base = shift || return;
2910 my $hash = shift || return;
2914 open my $fd, "-|", git_cmd
(), "ls-tree", '-r', '-t', '-z', $base
2916 while (my $line = <$fd>) {
2919 #'040000 tree 595596a6a9117ddba9fe379b6b012b558bac8423 gitweb'
2920 #'100644 blob e02e90f0429be0d2a69b76571101f20b8f75530f gitweb/README'
2921 if ($line =~ m/(?:[0-9]+) (?:.+) $hash\t(.+)$/) {
2930 ## ......................................................................
2931 ## git utility functions, directly accessing git repository
2933 # get the value of config variable either from file named as the variable
2934 # itself in the repository ($GIT_DIR/$name file), or from gitweb.$name
2935 # configuration variable in the repository config file.
2936 sub git_get_file_or_project_config
{
2937 my ($path, $name) = @_;
2939 $git_dir = "$projectroot/$path";
2940 open my $fd, '<', "$git_dir/$name"
2941 or return git_get_project_config
($name);
2944 if (defined $conf) {
2950 sub git_get_project_description
{
2952 return git_get_file_or_project_config
($path, 'description');
2955 sub git_get_project_category
{
2957 return git_get_file_or_project_config
($path, 'category');
2961 # supported formats:
2962 # * $GIT_DIR/ctags/<tagname> file (in 'ctags' subdirectory)
2963 # - if its contents is a number, use it as tag weight,
2964 # - otherwise add a tag with weight 1
2965 # * $GIT_DIR/ctags file, each line is a tag (with weight 1)
2966 # the same value multiple times increases tag weight
2967 # * `gitweb.ctag' multi-valued repo config variable
2968 sub git_get_project_ctags
{
2969 my $project = shift;
2972 $git_dir = "$projectroot/$project";
2973 if (opendir my $dh, "$git_dir/ctags") {
2974 my @files = grep { -f
$_ } map { "$git_dir/ctags/$_" } readdir($dh);
2975 foreach my $tagfile (@files) {
2976 open my $ct, '<', $tagfile
2982 (my $ctag = $tagfile) =~ s
#.*/##;
2983 if ($val =~ /^\d+$/) {
2984 $ctags->{$ctag} = $val;
2986 $ctags->{$ctag} = 1;
2991 } elsif (open my $fh, '<', "$git_dir/ctags") {
2992 while (my $line = <$fh>) {
2994 $ctags->{$line}++ if $line;
2999 my $taglist = config_to_multi
(git_get_project_config
('ctag'));
3000 foreach my $tag (@$taglist) {
3008 # return hash, where keys are content tags ('ctags'),
3009 # and values are sum of weights of given tag in every project
3010 sub git_gather_all_ctags
{
3011 my $projects = shift;
3014 foreach my $p (@$projects) {
3015 foreach my $ct (keys %{$p->{'ctags'}}) {
3016 $ctags->{$ct} += $p->{'ctags'}->{$ct};
3023 sub git_populate_project_tagcloud
{
3026 # First, merge different-cased tags; tags vote on casing
3028 foreach (keys %$ctags) {
3029 $ctags_lc{lc $_}->{count
} += $ctags->{$_};
3030 if (not $ctags_lc{lc $_}->{topcount
}
3031 or $ctags_lc{lc $_}->{topcount
} < $ctags->{$_}) {
3032 $ctags_lc{lc $_}->{topcount
} = $ctags->{$_};
3033 $ctags_lc{lc $_}->{topname
} = $_;
3038 my $matched = $input_params{'ctag'};
3039 if (eval { require HTML
::TagCloud
; 1; }) {
3040 $cloud = HTML
::TagCloud-
>new;
3041 foreach my $ctag (sort keys %ctags_lc) {
3042 # Pad the title with spaces so that the cloud looks
3044 my $title = esc_html
($ctags_lc{$ctag}->{topname
});
3045 $title =~ s/ / /g;
3046 $title =~ s/^/ /g;
3047 $title =~ s/$/ /g;
3048 if (defined $matched && $matched eq $ctag) {
3049 $title = qq(<span class="match">$title</span>);
3051 $cloud->add($title, href
(project
=>undef, ctag
=>$ctag),
3052 $ctags_lc{$ctag}->{count
});
3056 foreach my $ctag (keys %ctags_lc) {
3057 my $title = esc_html
($ctags_lc{$ctag}->{topname
}, -nbsp
=>1);
3058 if (defined $matched && $matched eq $ctag) {
3059 $title = qq(<span class="match">$title</span>);
3061 $cloud->{$ctag}{count
} = $ctags_lc{$ctag}->{count
};
3062 $cloud->{$ctag}{ctag
} =
3063 $cgi->a({-href
=>href
(project
=>undef, ctag
=>$ctag)}, $title);
3069 sub git_show_project_tagcloud
{
3070 my ($cloud, $count) = @_;
3071 if (ref $cloud eq 'HTML::TagCloud') {
3072 return $cloud->html_and_css($count);
3074 my @tags = sort { $cloud->{$a}->{'count'} <=> $cloud->{$b}->{'count'} } keys %$cloud;
3076 '<div id="htmltagcloud"'.($project ? '' : ' align="center"').'>' .
3078 $cloud->{$_}->{'ctag'}
3079 } splice(@tags, 0, $count)) .
3084 sub git_get_project_url_list
{
3087 $git_dir = "$projectroot/$path";
3088 open my $fd, '<', "$git_dir/cloneurl"
3089 or return wantarray ?
3090 @{ config_to_multi
(git_get_project_config
('url')) } :
3091 config_to_multi
(git_get_project_config
('url'));
3092 my @git_project_url_list = map { chomp; $_ } <$fd>;
3095 return wantarray ? @git_project_url_list : \
@git_project_url_list;
3098 sub git_get_projects_list
{
3099 my $filter = shift || '';
3100 my $paranoid = shift;
3103 if (-d
$projects_list) {
3104 # search in directory
3105 my $dir = $projects_list;
3106 # remove the trailing "/"
3108 my $pfxlen = length("$dir");
3109 my $pfxdepth = ($dir =~ tr!/!!);
3110 # when filtering, search only given subdirectory
3111 if ($filter && !$paranoid) {
3117 follow_fast
=> 1, # follow symbolic links
3118 follow_skip
=> 2, # ignore duplicates
3119 dangling_symlinks
=> 0, # ignore dangling symlinks, silently
3122 our $project_maxdepth;
3124 # skip project-list toplevel, if we get it.
3125 return if (m!^[/.]$!);
3126 # only directories can be git repositories
3127 return unless (-d
$_);
3128 # need search permission
3129 return unless (-x
$_);
3130 # don't traverse too deep (Find is super slow on os x)
3131 # $project_maxdepth excludes depth of $projectroot
3132 if (($File::Find
::name
=~ tr!/!!) - $pfxdepth > $project_maxdepth) {
3133 $File::Find
::prune
= 1;
3137 my $path = substr($File::Find
::name
, $pfxlen + 1);
3138 # paranoidly only filter here
3139 if ($paranoid && $filter && $path !~ m!^\Q$filter\E/!) {
3142 # we check related file in $projectroot
3143 if (check_export_ok
("$projectroot/$path")) {
3144 push @list, { path
=> $path };
3145 $File::Find
::prune
= 1;
3150 } elsif (-f
$projects_list) {
3151 # read from file(url-encoded):
3152 # 'git%2Fgit.git Linus+Torvalds'
3153 # 'libs%2Fklibc%2Fklibc.git H.+Peter+Anvin'
3154 # 'linux%2Fhotplug%2Fudev.git Greg+Kroah-Hartman'
3155 open my $fd, '<', $projects_list or return;
3157 while (my $line = <$fd>) {
3159 my ($path, $owner) = split ' ', $line;
3160 $path = unescape
($path);
3161 $owner = unescape
($owner);
3162 if (!defined $path) {
3165 # if $filter is rpovided, check if $path begins with $filter
3166 if ($filter && $path !~ m!^\Q$filter\E/!) {
3169 if (check_export_ok
("$projectroot/$path")) {
3174 $pr->{'owner'} = to_utf8
($owner);
3184 # written with help of Tree::Trie module (Perl Artistic License, GPL compatible)
3185 # as side effects it sets 'forks' field to list of forks for forked projects
3186 sub filter_forks_from_projects_list
{
3187 my $projects = shift;
3189 my %trie; # prefix tree of directories (path components)
3190 # generate trie out of those directories that might contain forks
3191 foreach my $pr (@$projects) {
3192 my $path = $pr->{'path'};
3193 $path =~ s/\.git$//; # forks of 'repo.git' are in 'repo/' directory
3194 next if ($path =~ m!/$!); # skip non-bare repositories, e.g. 'repo/.git'
3195 next unless ($path); # skip '.git' repository: tests, git-instaweb
3196 next unless (-d
"$projectroot/$path"); # containing directory exists
3197 $pr->{'forks'} = []; # there can be 0 or more forks of project
3200 my @dirs = split('/', $path);
3201 # walk the trie, until either runs out of components or out of trie
3203 while (scalar @dirs &&
3204 exists($ref->{$dirs[0]})) {
3205 $ref = $ref->{shift @dirs};
3207 # create rest of trie structure from rest of components
3208 foreach my $dir (@dirs) {
3209 $ref = $ref->{$dir} = {};
3211 # create end marker, store $pr as a data
3212 $ref->{''} = $pr if (!exists $ref->{''});
3215 # filter out forks, by finding shortest prefix match for paths
3218 foreach my $pr (@$projects) {
3222 foreach my $dir (split('/', $pr->{'path'})) {
3223 if (exists $ref->{''}) {
3224 # found [shortest] prefix, is a fork - skip it
3225 push @{$ref->{''}{'forks'}}, $pr;
3228 if (!exists $ref->{$dir}) {
3229 # not in trie, cannot have prefix, not a fork
3230 push @filtered, $pr;
3233 # If the dir is there, we just walk one step down the trie.
3234 $ref = $ref->{$dir};
3236 # we ran out of trie
3237 # (shouldn't happen: it's either no match, or end marker)
3238 push @filtered, $pr;
3244 # note: fill_project_list_info must be run first,
3245 # for 'descr_long' and 'ctags' to be filled
3246 sub search_projects_list
{
3247 my ($projlist, %opts) = @_;
3248 my $tagfilter = $opts{'tagfilter'};
3249 my $search_re = $opts{'search_regexp'};
3252 unless ($tagfilter || $search_re);
3254 # searching projects require filling to be run before it;
3255 fill_project_list_info
($projlist,
3256 $tagfilter ? 'ctags' : (),
3257 $search_re ? ('path', 'descr') : ());
3260 foreach my $pr (@$projlist) {
3263 next unless ref($pr->{'ctags'}) eq 'HASH';
3265 grep { lc($_) eq lc($tagfilter) } keys %{$pr->{'ctags'}};
3270 $pr->{'path'} =~ /$search_re/ ||
3271 $pr->{'descr_long'} =~ /$search_re/;
3274 push @projects, $pr;
3280 our $gitweb_project_owner = undef;
3281 sub git_get_project_list_from_file
{
3283 return if (defined $gitweb_project_owner);
3285 $gitweb_project_owner = {};
3286 # read from file (url-encoded):
3287 # 'git%2Fgit.git Linus+Torvalds'
3288 # 'libs%2Fklibc%2Fklibc.git H.+Peter+Anvin'
3289 # 'linux%2Fhotplug%2Fudev.git Greg+Kroah-Hartman'
3290 if (-f
$projects_list) {
3291 open(my $fd, '<', $projects_list);
3292 while (my $line = <$fd>) {
3294 my ($pr, $ow) = split ' ', $line;
3295 $pr = unescape
($pr);
3296 $ow = unescape
($ow);
3297 $gitweb_project_owner->{$pr} = to_utf8
($ow);
3303 sub git_get_project_owner
{
3304 my $project = shift;
3307 return undef unless $project;
3308 $git_dir = "$projectroot/$project";
3310 if (!defined $gitweb_project_owner) {
3311 git_get_project_list_from_file
();
3314 if (exists $gitweb_project_owner->{$project}) {
3315 $owner = $gitweb_project_owner->{$project};
3317 if (!defined $owner){
3318 $owner = git_get_project_config
('owner');
3320 if (!defined $owner) {
3321 $owner = get_file_owner
("$git_dir");
3327 sub git_get_last_activity
{
3331 $git_dir = "$projectroot/$path";
3332 open($fd, "-|", git_cmd
(), 'for-each-ref',
3333 '--format=%(committer)',
3334 '--sort=-committerdate',
3336 map { "refs/$_" } get_branch_refs
()) or return;
3337 my $most_recent = <$fd>;
3338 close $fd or return;
3339 if (defined $most_recent &&
3340 $most_recent =~ / (\d+) [-+][01]\d\d\d$/) {
3342 my $age = time - $timestamp;
3343 return ($age, age_string
($age));
3345 return (undef, undef);
3348 # Implementation note: when a single remote is wanted, we cannot use 'git
3349 # remote show -n' because that command always work (assuming it's a remote URL
3350 # if it's not defined), and we cannot use 'git remote show' because that would
3351 # try to make a network roundtrip. So the only way to find if that particular
3352 # remote is defined is to walk the list provided by 'git remote -v' and stop if
3353 # and when we find what we want.
3354 sub git_get_remotes_list
{
3358 open my $fd, '-|' , git_cmd
(), 'remote', '-v';
3360 while (my $remote = <$fd>) {
3362 $remote =~ s!\t(.*?)\s+\((\w+)\)$!!;
3363 next if $wanted and not $remote eq $wanted;
3364 my ($url, $key) = ($1, $2);
3366 $remotes{$remote} ||= { 'heads' => () };
3367 $remotes{$remote}{$key} = $url;
3369 close $fd or return;
3370 return wantarray ? %remotes : \
%remotes;
3373 # Takes a hash of remotes as first parameter and fills it by adding the
3374 # available remote heads for each of the indicated remotes.
3375 sub fill_remote_heads
{
3376 my $remotes = shift;
3377 my @heads = map { "remotes/$_" } keys %$remotes;
3378 my @remoteheads = git_get_heads_list
(undef, @heads);
3379 foreach my $remote (keys %$remotes) {
3380 $remotes->{$remote}{'heads'} = [ grep {
3381 $_->{'name'} =~ s!^$remote/!!
3386 sub git_get_references
{
3387 my $type = shift || "";
3389 # 5dc01c595e6c6ec9ccda4f6f69c131c0dd945f8c refs/tags/v2.6.11
3390 # c39ae07f393806ccf406ef966e9a15afc43cc36a refs/tags/v2.6.11^{}
3391 open my $fd, "-|", git_cmd
(), "show-ref", "--dereference",
3392 ($type ? ("--", "refs/$type") : ()) # use -- <pattern> if $type
3395 while (my $line = <$fd>) {
3397 if ($line =~ m!^($oid_regex)\srefs/($type.*)$!) {
3398 if (defined $refs{$1}) {
3399 push @{$refs{$1}}, $2;
3405 close $fd or return;
3409 sub git_get_rev_name_tags
{
3410 my $hash = shift || return undef;
3412 open my $fd, "-|", git_cmd
(), "name-rev", "--tags", $hash
3414 my $name_rev = <$fd>;
3417 if ($name_rev =~ m
|^$hash tags
/(.*)$|) {
3420 # catches also '$hash undefined' output
3425 ## ----------------------------------------------------------------------
3426 ## parse to hash functions
3430 my $tz = shift || "-0000";
3433 my @months = ("Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec");
3434 my @days = ("Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat");
3435 my ($sec, $min, $hour, $mday, $mon, $year, $wday, $yday) = gmtime($epoch);
3436 $date{'hour'} = $hour;
3437 $date{'minute'} = $min;
3438 $date{'mday'} = $mday;
3439 $date{'day'} = $days[$wday];
3440 $date{'month'} = $months[$mon];
3441 $date{'rfc2822'} = sprintf "%s, %d %s %4d %02d:%02d:%02d +0000",
3442 $days[$wday], $mday, $months[$mon], 1900+$year, $hour ,$min, $sec;
3443 $date{'mday-time'} = sprintf "%d %s %02d:%02d",
3444 $mday, $months[$mon], $hour ,$min;
3445 $date{'iso-8601'} = sprintf "%04d-%02d-%02dT%02d:%02d:%02dZ",
3446 1900+$year, 1+$mon, $mday, $hour ,$min, $sec;
3448 my ($tz_sign, $tz_hour, $tz_min) =
3449 ($tz =~ m/^([-+])(\d\d)(\d\d)$/);
3450 $tz_sign = ($tz_sign eq '-' ? -1 : +1);
3451 my $local = $epoch + $tz_sign*((($tz_hour*60) + $tz_min)*60);
3452 ($sec, $min, $hour, $mday, $mon, $year, $wday, $yday) = gmtime($local);
3453 $date{'hour_local'} = $hour;
3454 $date{'minute_local'} = $min;
3455 $date{'tz_local'} = $tz;
3456 $date{'iso-tz'} = sprintf("%04d-%02d-%02d %02d:%02d:%02d %s",
3457 1900+$year, $mon+1, $mday,
3458 $hour, $min, $sec, $tz);
3462 sub hide_mailaddrs_if_private
{
3464 return $line unless gitweb_check_feature
('email-privacy');
3465 $line =~ s/<[^@>]+@[^>]+>/<redacted>/g;
3474 open my $fd, "-|", git_cmd
(), "cat-file", "tag", $tag_id or return;
3475 $tag{'id'} = $tag_id;
3476 while (my $line = <$fd>) {
3478 if ($line =~ m/^object ($oid_regex)$/) {
3479 $tag{'object'} = $1;
3480 } elsif ($line =~ m/^type (.+)$/) {
3482 } elsif ($line =~ m/^tag (.+)$/) {
3484 } elsif ($line =~ m/^tagger (.*) ([0-9]+) (.*)$/) {
3485 $tag{'author'} = hide_mailaddrs_if_private
($1);
3486 $tag{'author_epoch'} = $2;
3487 $tag{'author_tz'} = $3;
3488 if ($tag{'author'} =~ m/^([^<]+) <([^>]*)>/) {
3489 $tag{'author_name'} = $1;
3490 $tag{'author_email'} = $2;
3492 $tag{'author_name'} = $tag{'author'};
3494 } elsif ($line =~ m/--BEGIN/) {
3495 push @comment, $line;
3497 } elsif ($line eq "") {
3501 push @comment, <$fd>;
3502 $tag{'comment'} = \
@comment;
3503 close $fd or return;
3504 if (!defined $tag{'name'}) {
3510 sub parse_commit_text
{
3511 my ($commit_text, $withparents) = @_;
3512 my @commit_lines = split '\n', $commit_text;
3515 pop @commit_lines; # Remove '\0'
3517 if (! @commit_lines) {
3521 my $header = shift @commit_lines;
3522 if ($header !~ m/^$oid_regex/) {
3525 ($co{'id'}, my @parents) = split ' ', $header;
3526 while (my $line = shift @commit_lines) {
3527 last if $line eq "\n";
3528 if ($line =~ m/^tree ($oid_regex)$/) {
3530 } elsif ((!defined $withparents) && ($line =~ m/^parent ($oid_regex)$/)) {
3532 } elsif ($line =~ m/^author (.*) ([0-9]+) (.*)$/) {
3533 $co{'author'} = hide_mailaddrs_if_private
(to_utf8
($1));
3534 $co{'author_epoch'} = $2;
3535 $co{'author_tz'} = $3;
3536 if ($co{'author'} =~ m/^([^<]+) <([^>]*)>/) {
3537 $co{'author_name'} = $1;
3538 $co{'author_email'} = $2;
3540 $co{'author_name'} = $co{'author'};
3542 } elsif ($line =~ m/^committer (.*) ([0-9]+) (.*)$/) {
3543 $co{'committer'} = hide_mailaddrs_if_private
(to_utf8
($1));
3544 $co{'committer_epoch'} = $2;
3545 $co{'committer_tz'} = $3;
3546 if ($co{'committer'} =~ m/^([^<]+) <([^>]*)>/) {
3547 $co{'committer_name'} = $1;
3548 $co{'committer_email'} = $2;
3550 $co{'committer_name'} = $co{'committer'};
3554 if (!defined $co{'tree'}) {
3557 $co{'parents'} = \
@parents;
3558 $co{'parent'} = $parents[0];
3560 foreach my $title (@commit_lines) {
3563 $co{'title'} = chop_str
($title, 80, 5);
3564 # remove leading stuff of merges to make the interesting part visible
3565 if (length($title) > 50) {
3566 $title =~ s/^Automatic //;
3567 $title =~ s/^merge (of|with) /Merge ... /i;
3568 if (length($title) > 50) {
3569 $title =~ s/(http|rsync):\/\///;
3571 if (length($title) > 50) {
3572 $title =~ s/(master|www|rsync)\.//;
3574 if (length($title) > 50) {
3575 $title =~ s/kernel.org:?//;
3577 if (length($title) > 50) {
3578 $title =~ s/\/pub\/scm//;
3581 $co{'title_short'} = chop_str
($title, 50, 5);
3585 if (! defined $co{'title'} || $co{'title'} eq "") {
3586 $co{'title'} = $co{'title_short'} = '(no commit message)';
3588 # remove added spaces, redact e-mail addresses if applicable.
3589 foreach my $line (@commit_lines) {
3591 $line = hide_mailaddrs_if_private
($line);
3593 $co{'comment'} = \
@commit_lines;
3595 my $age = time - $co{'committer_epoch'};
3597 $co{'age_string'} = age_string
($age);
3598 my ($sec, $min, $hour, $mday, $mon, $year, $wday, $yday) = gmtime($co{'committer_epoch'});
3599 if ($age > 60*60*24*7*2) {
3600 $co{'age_string_date'} = sprintf "%4i-%02u-%02i", 1900 + $year, $mon+1, $mday;
3601 $co{'age_string_age'} = $co{'age_string'};
3603 $co{'age_string_date'} = $co{'age_string'};
3604 $co{'age_string_age'} = sprintf "%4i-%02u-%02i", 1900 + $year, $mon+1, $mday;
3610 my ($commit_id) = @_;
3615 open my $fd, "-|", git_cmd
(), "rev-list",
3621 or die_error
(500, "Open git-rev-list failed");
3622 %co = parse_commit_text
(<$fd>, 1);
3629 my ($commit_id, $maxcount, $skip, $filename, @args) = @_;
3637 open my $fd, "-|", git_cmd
(), "rev-list",
3640 ("--max-count=" . $maxcount),
3641 ("--skip=" . $skip),
3645 ($filename ? ($filename) : ())
3646 or die_error
(500, "Open git-rev-list failed");
3647 while (my $line = <$fd>) {
3648 my %co = parse_commit_text
($line);
3653 return wantarray ? @cos : \
@cos;
3656 # parse line of git-diff-tree "raw" output
3657 sub parse_difftree_raw_line
{
3661 # ':100644 100644 03b218260e99b78c6df0ed378e59ed9205ccc96d 3b93d5e7cc7f7dd4ebed13a5cc1a4ad976fc94d8 M ls-files.c'
3662 # ':100644 100644 7f9281985086971d3877aca27704f2aaf9c448ce bc190ebc71bbd923f2b728e505408f5e54bd073a M rev-tree.c'
3663 if ($line =~ m/^:([0-7]{6}) ([0-7]{6}) ($oid_regex) ($oid_regex) (.)([0-9]{0,3})\t(.*)$/) {
3664 $res{'from_mode'} = $1;
3665 $res{'to_mode'} = $2;
3666 $res{'from_id'} = $3;
3668 $res{'status'} = $5;
3669 $res{'similarity'} = $6;
3670 if ($res{'status'} eq 'R' || $res{'status'} eq 'C') { # renamed or copied
3671 ($res{'from_file'}, $res{'to_file'}) = map { unquote
($_) } split("\t", $7);
3673 $res{'from_file'} = $res{'to_file'} = $res{'file'} = unquote
($7);
3676 # '::100755 100755 100755 60e79ca1b01bc8b057abe17ddab484699a7f5fdb 94067cc5f73388f33722d52ae02f44692bc07490 94067cc5f73388f33722d52ae02f44692bc07490 MR git-gui/git-gui.sh'
3677 # combined diff (for merge commit)
3678 elsif ($line =~ s/^(::+)((?:[0-7]{6} )+)((?:$oid_regex )+)([a-zA-Z]+)\t(.*)$//) {
3679 $res{'nparents'} = length($1);
3680 $res{'from_mode'} = [ split(' ', $2) ];
3681 $res{'to_mode'} = pop @{$res{'from_mode'}};
3682 $res{'from_id'} = [ split(' ', $3) ];
3683 $res{'to_id'} = pop @{$res{'from_id'}};
3684 $res{'status'} = [ split('', $4) ];
3685 $res{'to_file'} = unquote
($5);
3687 # 'c512b523472485aef4fff9e57b229d9d243c967f'
3688 elsif ($line =~ m/^($oid_regex)$/) {
3689 $res{'commit'} = $1;
3692 return wantarray ? %res : \
%res;
3695 # wrapper: return parsed line of git-diff-tree "raw" output
3696 # (the argument might be raw line, or parsed info)
3697 sub parsed_difftree_line
{
3698 my $line_or_ref = shift;
3700 if (ref($line_or_ref) eq "HASH") {
3701 # pre-parsed (or generated by hand)
3702 return $line_or_ref;
3704 return parse_difftree_raw_line
($line_or_ref);
3708 # parse line of git-ls-tree output
3709 sub parse_ls_tree_line
{
3715 #'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa 16717 panic.c'
3716 $line =~ m/^([0-9]+) (.+) ($oid_regex) +(-|[0-9]+)\t(.+)$/s;
3725 $res{'name'} = unquote
($5);
3728 #'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'
3729 $line =~ m/^([0-9]+) (.+) ($oid_regex)\t(.+)$/s;
3737 $res{'name'} = unquote
($4);
3741 return wantarray ? %res : \
%res;
3744 # generates _two_ hashes, references to which are passed as 2 and 3 argument
3745 sub parse_from_to_diffinfo
{
3746 my ($diffinfo, $from, $to, @parents) = @_;
3748 if ($diffinfo->{'nparents'}) {
3750 $from->{'file'} = [];
3751 $from->{'href'} = [];
3752 fill_from_file_info
($diffinfo, @parents)
3753 unless exists $diffinfo->{'from_file'};
3754 for (my $i = 0; $i < $diffinfo->{'nparents'}; $i++) {
3755 $from->{'file'}[$i] =
3756 defined $diffinfo->{'from_file'}[$i] ?
3757 $diffinfo->{'from_file'}[$i] :
3758 $diffinfo->{'to_file'};
3759 if ($diffinfo->{'status'}[$i] ne "A") { # not new (added) file
3760 $from->{'href'}[$i] = href
(action
=>"blob",
3761 hash_base
=>$parents[$i],
3762 hash
=>$diffinfo->{'from_id'}[$i],
3763 file_name
=>$from->{'file'}[$i]);
3765 $from->{'href'}[$i] = undef;
3769 # ordinary (not combined) diff
3770 $from->{'file'} = $diffinfo->{'from_file'};
3771 if ($diffinfo->{'status'} ne "A") { # not new (added) file
3772 $from->{'href'} = href
(action
=>"blob", hash_base
=>$hash_parent,
3773 hash
=>$diffinfo->{'from_id'},
3774 file_name
=>$from->{'file'});
3776 delete $from->{'href'};
3780 $to->{'file'} = $diffinfo->{'to_file'};
3781 if (!is_deleted
($diffinfo)) { # file exists in result
3782 $to->{'href'} = href
(action
=>"blob", hash_base
=>$hash,
3783 hash
=>$diffinfo->{'to_id'},
3784 file_name
=>$to->{'file'});
3786 delete $to->{'href'};
3790 ## ......................................................................
3791 ## parse to array of hashes functions
3793 sub git_get_heads_list
{
3794 my ($limit, @classes) = @_;
3795 @classes = get_branch_refs
() unless @classes;
3796 my @patterns = map { "refs/$_" } @classes;
3799 open my $fd, '-|', git_cmd
(), 'for-each-ref',
3800 ($limit ? '--count='.($limit+1) : ()),
3801 '--sort=-HEAD', '--sort=-committerdate',
3802 '--format=%(objectname) %(refname) %(subject)%00%(committer)',
3805 while (my $line = <$fd>) {
3809 my ($refinfo, $committerinfo) = split(/\0/, $line);
3810 my ($hash, $name, $title) = split(' ', $refinfo, 3);
3811 my ($committer, $epoch, $tz) =
3812 ($committerinfo =~ /^(.*) ([0-9]+) (.*)$/);
3813 $ref_item{'fullname'} = $name;
3814 my $strip_refs = join '|', map { quotemeta } get_branch_refs
();
3815 $name =~ s!^refs/($strip_refs|remotes)/!!;
3816 $ref_item{'name'} = $name;
3817 # for refs neither in 'heads' nor 'remotes' we want to
3818 # show their ref dir
3819 my $ref_dir = (defined $1) ? $1 : '';
3820 if ($ref_dir ne '' and $ref_dir ne 'heads' and $ref_dir ne 'remotes') {
3821 $ref_item{'name'} .= ' (' . $ref_dir . ')';
3824 $ref_item{'id'} = $hash;
3825 $ref_item{'title'} = $title || '(no commit message)';
3826 $ref_item{'epoch'} = $epoch;
3828 $ref_item{'age'} = age_string
(time - $ref_item{'epoch'});
3830 $ref_item{'age'} = "unknown";
3833 push @headslist, \
%ref_item;
3837 return wantarray ? @headslist : \
@headslist;
3840 sub git_get_tags_list
{
3844 open my $fd, '-|', git_cmd
(), 'for-each-ref',
3845 ($limit ? '--count='.($limit+1) : ()), '--sort=-creatordate',
3846 '--format=%(objectname) %(objecttype) %(refname) '.
3847 '%(*objectname) %(*objecttype) %(subject)%00%(creator)',
3850 while (my $line = <$fd>) {
3854 my ($refinfo, $creatorinfo) = split(/\0/, $line);
3855 my ($id, $type, $name, $refid, $reftype, $title) = split(' ', $refinfo, 6);
3856 my ($creator, $epoch, $tz) =
3857 ($creatorinfo =~ /^(.*) ([0-9]+) (.*)$/);
3858 $ref_item{'fullname'} = $name;
3859 $name =~ s!^refs/tags/!!;
3861 $ref_item{'type'} = $type;
3862 $ref_item{'id'} = $id;
3863 $ref_item{'name'} = $name;
3864 if ($type eq "tag") {
3865 $ref_item{'subject'} = $title;
3866 $ref_item{'reftype'} = $reftype;
3867 $ref_item{'refid'} = $refid;
3869 $ref_item{'reftype'} = $type;
3870 $ref_item{'refid'} = $id;
3873 if ($type eq "tag" || $type eq "commit") {
3874 $ref_item{'epoch'} = $epoch;
3876 $ref_item{'age'} = age_string
(time - $ref_item{'epoch'});
3878 $ref_item{'age'} = "unknown";
3882 push @tagslist, \
%ref_item;
3886 return wantarray ? @tagslist : \
@tagslist;
3889 ## ----------------------------------------------------------------------
3890 ## filesystem-related functions
3892 sub get_file_owner
{
3895 my ($dev, $ino, $mode, $nlink, $st_uid, $st_gid, $rdev, $size) = stat($path);
3896 my ($name, $passwd, $uid, $gid, $quota, $comment, $gcos, $dir, $shell) = getpwuid($st_uid);
3897 if (!defined $gcos) {
3901 $owner =~ s/[,;].*$//;
3902 return to_utf8
($owner);
3905 # assume that file exists
3907 my $filename = shift;
3909 open my $fd, '<', $filename;
3910 print map { to_utf8
($_) } <$fd>;
3914 ## ......................................................................
3915 ## mimetype related functions
3917 sub mimetype_guess_file
{
3918 my $filename = shift;
3919 my $mimemap = shift;
3920 -r
$mimemap or return undef;
3923 open(my $mh, '<', $mimemap) or return undef;
3925 next if m/^#/; # skip comments
3926 my ($mimetype, @exts) = split(/\s+/);
3927 foreach my $ext (@exts) {
3928 $mimemap{$ext} = $mimetype;
3933 $filename =~ /\.([^.]*)$/;
3934 return $mimemap{$1};
3937 sub mimetype_guess
{
3938 my $filename = shift;
3940 $filename =~ /\./ or return undef;
3942 if ($mimetypes_file) {
3943 my $file = $mimetypes_file;
3944 if ($file !~ m!^/!) { # if it is relative path
3945 # it is relative to project
3946 $file = "$projectroot/$project/$file";
3948 $mime = mimetype_guess_file
($filename, $file);
3950 $mime ||= mimetype_guess_file
($filename, '/etc/mime.types');
3956 my $filename = shift;
3959 my $mime = mimetype_guess
($filename);
3960 $mime and return $mime;
3964 return $default_blob_plain_mimetype unless $fd;
3967 return 'text/plain';
3968 } elsif (! $filename) {
3969 return 'application/octet-stream';
3970 } elsif ($filename =~ m/\.png$/i) {
3972 } elsif ($filename =~ m/\.gif$/i) {
3974 } elsif ($filename =~ m/\.jpe?g$/i) {
3975 return 'image/jpeg';
3977 return 'application/octet-stream';
3981 sub blob_contenttype
{
3982 my ($fd, $file_name, $type) = @_;
3984 $type ||= blob_mimetype
($fd, $file_name);
3985 if ($type eq 'text/plain' && defined $default_text_plain_charset) {
3986 $type .= "; charset=$default_text_plain_charset";
3992 # guess file syntax for syntax highlighting; return undef if no highlighting
3993 # the name of syntax can (in the future) depend on syntax highlighter used
3994 sub guess_file_syntax
{
3995 my ($highlight, $file_name) = @_;
3996 return undef unless ($highlight && defined $file_name);
3997 my $basename = basename
($file_name, '.in');
3998 return $highlight_basename{$basename}
3999 if exists $highlight_basename{$basename};
4001 $basename =~ /\.([^.]*)$/;
4002 my $ext = $1 or return undef;
4003 return $highlight_ext{$ext}
4004 if exists $highlight_ext{$ext};
4009 # run highlighter and return FD of its output,
4010 # or return original FD if no highlighting
4011 sub run_highlighter
{
4012 my ($fd, $highlight, $syntax) = @_;
4013 return $fd unless ($highlight);
4016 my $syntax_arg = (defined $syntax) ? "--syntax $syntax" : "--force";
4017 open $fd, quote_command
(git_cmd
(), "cat-file", "blob", $hash)." | ".
4018 quote_command
($^X, '-CO', '-MEncode=decode,FB_DEFAULT', '-pse',
4019 '$_ = decode($fe, $_, FB_DEFAULT) if !utf8::decode($_);',
4020 '--', "-fe=$fallback_encoding")." | ".
4021 quote_command
($highlight_bin).
4022 " --replace-tabs=8 --fragment $syntax_arg |"
4023 or die_error
(500, "Couldn't open file or run syntax highlighter");
4027 ## ======================================================================
4028 ## functions printing HTML: header, footer, error page
4030 sub get_page_title
{
4031 my $title = to_utf8
($site_name);
4033 unless (defined $project) {
4034 if (defined $project_filter) {
4035 $title .= " - projects in '" . esc_path
($project_filter) . "'";
4039 $title .= " - " . to_utf8
($project);
4041 return $title unless (defined $action);
4042 $title .= "/$action"; # $action is US-ASCII (7bit ASCII)
4044 return $title unless (defined $file_name);
4045 $title .= " - " . esc_path
($file_name);
4046 if ($action eq "tree" && $file_name !~ m
|/$|) {
4053 sub get_content_type_html
{
4054 # require explicit support from the UA if we are to send the page as
4055 # 'application/xhtml+xml', otherwise send it as plain old 'text/html'.
4056 # we have to do this because MSIE sometimes globs '*/*', pretending to
4057 # support xhtml+xml but choking when it gets what it asked for.
4058 if (defined $cgi->http('HTTP_ACCEPT') &&
4059 $cgi->http('HTTP_ACCEPT') =~ m/(,|;|\s|^)application\/xhtml\
+xml
(,|;|\s
|$)/ &&
4060 $cgi->Accept('application/xhtml+xml') != 0) {
4061 return 'application/xhtml+xml';
4067 sub print_feed_meta
{
4068 if (defined $project) {
4069 my %href_params = get_feed_info
();
4070 if (!exists $href_params{'-title'}) {
4071 $href_params{'-title'} = 'log';
4074 foreach my $format (qw(RSS Atom)) {
4075 my $type = lc($format);
4077 '-rel' => 'alternate',
4078 '-title' => esc_attr
("$project - $href_params{'-title'} - $format feed"),
4079 '-type' => "application/$type+xml"
4082 $href_params{'extra_options'} = undef;
4083 $href_params{'action'} = $type;
4084 $link_attr{'-href'} = esc_attr
(href
(%href_params));
4086 "rel=\"$link_attr{'-rel'}\" ".
4087 "title=\"$link_attr{'-title'}\" ".
4088 "href=\"$link_attr{'-href'}\" ".
4089 "type=\"$link_attr{'-type'}\" ".
4092 $href_params{'extra_options'} = '--no-merges';
4093 $link_attr{'-href'} = esc_attr
(href
(%href_params));
4094 $link_attr{'-title'} .= ' (no merges)';
4096 "rel=\"$link_attr{'-rel'}\" ".
4097 "title=\"$link_attr{'-title'}\" ".
4098 "href=\"$link_attr{'-href'}\" ".
4099 "type=\"$link_attr{'-type'}\" ".
4104 printf('<link rel="alternate" title="%s projects list" '.
4105 'href="%s" type="text/plain; charset=utf-8" />'."\n",
4106 esc_attr
($site_name),
4107 esc_attr
(href
(project
=>undef, action
=>"project_index")));
4108 printf('<link rel="alternate" title="%s projects feeds" '.
4109 'href="%s" type="text/x-opml" />'."\n",
4110 esc_attr
($site_name),
4111 esc_attr
(href
(project
=>undef, action
=>"opml")));
4115 sub print_header_links
{
4118 # print out each stylesheet that exist, providing backwards capability
4119 # for those people who defined $stylesheet in a config file
4120 if (defined $stylesheet) {
4121 print '<link rel="stylesheet" type="text/css" href="'.esc_url
($stylesheet).'"/>'."\n";
4123 foreach my $stylesheet (@stylesheets) {
4124 next unless $stylesheet;
4125 print '<link rel="stylesheet" type="text/css" href="'.esc_url
($stylesheet).'"/>'."\n";
4129 if ($status eq '200 OK');
4130 if (defined $favicon) {
4131 print qq(<link rel="shortcut icon" href=").esc_url
($favicon).qq(" type="image/png" />\n);
4135 sub print_nav_breadcrumbs_path
{
4136 my $dirprefix = undef;
4137 while (my $part = shift) {
4138 $dirprefix .= "/" if defined $dirprefix;
4139 $dirprefix .= $part;
4140 print $cgi->a({-href
=> href
(project
=> undef,
4141 project_filter
=> $dirprefix,
4142 action
=> "project_list")},
4143 esc_html
($part)) . " / ";
4147 sub print_nav_breadcrumbs
{
4150 for my $crumb (@extra_breadcrumbs, [ $home_link_str => $home_link ]) {
4151 print $cgi->a({-href
=> esc_url
($crumb->[1])}, $crumb->[0]) . " / ";
4153 if (defined $project) {
4154 my @dirname = split '/', $project;
4155 my $projectbasename = pop @dirname;
4156 print_nav_breadcrumbs_path
(@dirname);
4157 print $cgi->a({-href
=> href
(action
=>"summary")}, esc_html
($projectbasename));
4158 if (defined $action) {
4159 my $action_print = $action ;
4160 if (defined $opts{-action_extra
}) {
4161 $action_print = $cgi->a({-href
=> href
(action
=>$action)},
4164 print " / $action_print";
4166 if (defined $opts{-action_extra
}) {
4167 print " / $opts{-action_extra}";
4170 } elsif (defined $project_filter) {
4171 print_nav_breadcrumbs_path
(split '/', $project_filter);
4175 sub print_search_form
{
4176 if (!defined $searchtext) {
4180 if (defined $hash_base) {
4181 $search_hash = $hash_base;
4182 } elsif (defined $hash) {
4183 $search_hash = $hash;
4185 $search_hash = "HEAD";
4187 my $action = $my_uri;
4188 my $use_pathinfo = gitweb_check_feature
('pathinfo');
4189 if ($use_pathinfo) {
4190 $action .= "/".esc_url
($project);
4192 print $cgi->start_form(-method => "get", -action
=> $action) .
4193 "<div class=\"search\">\n" .
4195 $cgi->input({-name
=>"p", -value
=>$project, -type
=>"hidden"}) . "\n") .
4196 $cgi->input({-name
=>"a", -value
=>"search", -type
=>"hidden"}) . "\n" .
4197 $cgi->input({-name
=>"h", -value
=>$search_hash, -type
=>"hidden"}) . "\n" .
4198 $cgi->popup_menu(-name
=> 'st', -default => 'commit',
4199 -values => ['commit', 'grep', 'author', 'committer', 'pickaxe']) .
4200 " " . $cgi->a({-href
=> href
(action
=>"search_help"),
4201 -title
=> "search help" }, "?") . " search:\n",
4202 $cgi->textfield(-name
=> "s", -value
=> $searchtext, -override
=> 1) . "\n" .
4203 "<span title=\"Extended regular expression\">" .
4204 $cgi->checkbox(-name
=> 'sr', -value
=> 1, -label
=> 're',
4205 -checked
=> $search_use_regexp) .
4208 $cgi->end_form() . "\n";
4211 sub git_header_html
{
4212 my $status = shift || "200 OK";
4213 my $expires = shift;
4216 my $title = get_page_title
();
4217 my $content_type = get_content_type_html
();
4218 print $cgi->header(-type
=>$content_type, -charset
=> 'utf-8',
4219 -status
=> $status, -expires
=> $expires)
4220 unless ($opts{'-no_http_header'});
4221 my $mod_perl_version = $ENV{'MOD_PERL'} ? " $ENV{'MOD_PERL'}" : '';
4223 <?xml version="1.0" encoding="utf-8"?>
4224 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4225 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" lang="en-US">
4226 <!-- git web interface version $version, (C) 2005-2006, Kay Sievers <kay.sievers\@vrfy.org>, Christian Gierke -->
4227 <!-- git core binaries version $git_version -->
4229 <meta http-equiv="content-type" content="$content_type; charset=utf-8"/>
4230 <meta name="generator" content="gitweb/$version git/$git_version$mod_perl_version"/>
4231 <meta name="robots" content="index, nofollow"/>
4232 <title>$title</title>
4234 # the stylesheet, favicon etc urls won't work correctly with path_info
4235 # unless we set the appropriate base URL
4236 if ($ENV{'PATH_INFO'}) {
4237 print "<base href=\"".esc_url
($base_url)."\" />\n";
4239 print_header_links
($status);
4241 if (defined $site_html_head_string) {
4242 print to_utf8
($site_html_head_string);
4248 if (defined $site_header && -f
$site_header) {
4249 insert_file
($site_header);
4252 print "<div class=\"page_header\">\n";
4253 if (defined $logo) {
4254 print $cgi->a({-href
=> esc_url
($logo_url),
4255 -title
=> $logo_label},
4256 $cgi->img({-src
=> esc_url
($logo),
4257 -width
=> 72, -height
=> 27,
4259 -class => "logo"}));
4261 print_nav_breadcrumbs
(%opts);
4264 my $have_search = gitweb_check_feature
('search');
4265 if (defined $project && $have_search) {
4266 print_search_form
();
4270 sub git_footer_html
{
4271 my $feed_class = 'rss_logo';
4273 print "<div class=\"page_footer\">\n";
4274 if (defined $project) {
4275 my $descr = git_get_project_description
($project);
4276 if (defined $descr) {
4277 print "<div class=\"page_footer_text\">" . esc_html
($descr) . "</div>\n";
4280 my %href_params = get_feed_info
();
4281 if (!%href_params) {
4282 $feed_class .= ' generic';
4284 $href_params{'-title'} ||= 'log';
4286 foreach my $format (qw(RSS Atom)) {
4287 $href_params{'action'} = lc($format);
4288 print $cgi->a({-href
=> href
(%href_params),
4289 -title
=> "$href_params{'-title'} $format feed",
4290 -class => $feed_class}, $format)."\n";
4294 print $cgi->a({-href
=> href
(project
=>undef, action
=>"opml",
4295 project_filter
=> $project_filter),
4296 -class => $feed_class}, "OPML") . " ";
4297 print $cgi->a({-href
=> href
(project
=>undef, action
=>"project_index",
4298 project_filter
=> $project_filter),
4299 -class => $feed_class}, "TXT") . "\n";
4301 print "</div>\n"; # class="page_footer"
4303 if (defined $t0 && gitweb_check_feature
('timed')) {
4304 print "<div id=\"generating_info\">\n";
4305 print 'This page took '.
4306 '<span id="generating_time" class="time_span">'.
4307 tv_interval
($t0, [ gettimeofday
() ]).
4310 '<span id="generating_cmd">'.
4311 $number_of_git_cmds.
4312 '</span> git commands '.
4314 print "</div>\n"; # class="page_footer"
4317 if (defined $site_footer && -f
$site_footer) {
4318 insert_file
($site_footer);
4321 print qq
!<script type
="text/javascript" src
="!.esc_url($javascript).qq!"></script
>\n!;
4322 if (defined $action &&
4323 $action eq 'blame_incremental') {
4324 print qq
!<script type
="text/javascript">\n!.
4325 qq
!startBlame
("!. esc_attr(href(action=>"blame_data
", -replay=>1)) .qq!",\n!.
4326 qq
! "!. esc_attr(href()) .qq!");\n!.
4329 my ($jstimezone, $tz_cookie, $datetime_class) =
4330 gitweb_get_feature
('javascript-timezone');
4332 print qq
!<script type
="text/javascript">\n!.
4333 qq
!window
.onload
= function
() {\n!;
4334 if (gitweb_check_feature
('javascript-actions')) {
4335 print qq
! fixLinks
();\n!;
4337 if ($jstimezone && $tz_cookie && $datetime_class) {
4338 print qq
! var tz_cookie
= { name
: '$tz_cookie', expires
: 14, path
: '/' };\n!. # in days
4339 qq
! onloadTZSetup
('$jstimezone', tz_cookie
, '$datetime_class');\n!;
4349 # die_error(<http_status_code>, <error_message>[, <detailed_html_description>])
4350 # Example: die_error(404, 'Hash not found')
4351 # By convention, use the following status codes (as defined in RFC 2616):
4352 # 400: Invalid or missing CGI parameters, or
4353 # requested object exists but has wrong type.
4354 # 403: Requested feature (like "pickaxe" or "snapshot") not enabled on
4355 # this server or project.
4356 # 404: Requested object/revision/project doesn't exist.
4357 # 500: The server isn't configured properly, or
4358 # an internal error occurred (e.g. failed assertions caused by bugs), or
4359 # an unknown error occurred (e.g. the git binary died unexpectedly).
4360 # 503: The server is currently unavailable (because it is overloaded,
4361 # or down for maintenance). Generally, this is a temporary state.
4363 my $status = shift || 500;
4364 my $error = esc_html
(shift) || "Internal Server Error";
4368 my %http_responses = (
4369 400 => '400 Bad Request',
4370 403 => '403 Forbidden',
4371 404 => '404 Not Found',
4372 500 => '500 Internal Server Error',
4373 503 => '503 Service Unavailable',
4375 git_header_html
($http_responses{$status}, undef, %opts);
4377 <div class="page_body">
4382 if (defined $extra) {
4390 unless ($opts{'-error_handler'});
4393 ## ----------------------------------------------------------------------
4394 ## functions printing or outputting HTML: navigation
4396 sub git_print_page_nav
{
4397 my ($current, $suppress, $head, $treehead, $treebase, $extra) = @_;
4398 $extra = '' if !defined $extra; # pager or formats
4400 my @navs = qw(summary shortlog log commit commitdiff tree);
4402 @navs = grep { $_ ne $suppress } @navs;
4405 my %arg = map { $_ => {action
=>$_} } @navs;
4406 if (defined $head) {
4407 for (qw(commit commitdiff)) {
4408 $arg{$_}{'hash'} = $head;
4410 if ($current =~ m/^(tree | log | shortlog | commit | commitdiff | search)$/x) {
4411 for (qw(shortlog log)) {
4412 $arg{$_}{'hash'} = $head;
4417 $arg{'tree'}{'hash'} = $treehead if defined $treehead;
4418 $arg{'tree'}{'hash_base'} = $treebase if defined $treebase;
4420 my @actions = gitweb_get_feature
('actions');
4423 'n' => $project, # project name
4424 'f' => $git_dir, # project path within filesystem
4425 'h' => $treehead || '', # current hash ('h' parameter)
4426 'b' => $treebase || '', # hash base ('hb' parameter)
4429 my ($label, $link, $pos) = splice(@actions,0,3);
4431 @navs = map { $_ eq $pos ? ($_, $label) : $_ } @navs;
4433 $link =~ s/%([%nfhb])/$repl{$1}/g;
4434 $arg{$label}{'_href'} = $link;
4437 print "<div class=\"page_nav\">\n" .
4439 map { $_ eq $current ?
4440 $_ : $cgi->a({-href
=> ($arg{$_}{_href
} ? $arg{$_}{_href
} : href
(%{$arg{$_}}))}, "$_")
4442 print "<br/>\n$extra<br/>\n" .
4446 # returns a submenu for the navigation of the refs views (tags, heads,
4447 # remotes) with the current view disabled and the remotes view only
4448 # available if the feature is enabled
4449 sub format_ref_views
{
4451 my @ref_views = qw{tags heads};
4452 push @ref_views, 'remotes' if gitweb_check_feature
('remote_heads');
4453 return join " | ", map {
4454 $_ eq $current ? $_ :
4455 $cgi->a({-href
=> href
(action
=>$_)}, $_)
4459 sub format_paging_nav
{
4460 my ($action, $page, $has_next_link) = @_;
4466 $cgi->a({-href
=> href
(-replay
=>1, page
=>undef)}, "first") .
4468 $cgi->a({-href
=> href
(-replay
=>1, page
=>$page-1),
4469 -accesskey
=> "p", -title
=> "Alt-p"}, "prev");
4471 $paging_nav .= "first ⋅ prev";
4474 if ($has_next_link) {
4475 $paging_nav .= " ⋅ " .
4476 $cgi->a({-href
=> href
(-replay
=>1, page
=>$page+1),
4477 -accesskey
=> "n", -title
=> "Alt-n"}, "next");
4479 $paging_nav .= " ⋅ next";
4485 ## ......................................................................
4486 ## functions printing or outputting HTML: div
4488 sub git_print_header_div
{
4489 my ($action, $title, $hash, $hash_base) = @_;
4492 $args{'action'} = $action;
4493 $args{'hash'} = $hash if $hash;
4494 $args{'hash_base'} = $hash_base if $hash_base;
4496 print "<div class=\"header\">\n" .
4497 $cgi->a({-href
=> href
(%args), -class => "title"},
4498 $title ? $title : $action) .
4502 sub format_repo_url
{
4503 my ($name, $url) = @_;
4504 return "<tr class=\"metadata_url\"><td>$name</td><td>$url</td></tr>\n";
4507 # Group output by placing it in a DIV element and adding a header.
4508 # Options for start_div() can be provided by passing a hash reference as the
4509 # first parameter to the function.
4510 # Options to git_print_header_div() can be provided by passing an array
4511 # reference. This must follow the options to start_div if they are present.
4512 # The content can be a scalar, which is output as-is, a scalar reference, which
4513 # is output after html escaping, an IO handle passed either as *handle or
4514 # *handle{IO}, or a function reference. In the latter case all following
4515 # parameters will be taken as argument to the content function call.
4516 sub git_print_section
{
4517 my ($div_args, $header_args, $content);
4519 if (ref($arg) eq 'HASH') {
4523 if (ref($arg) eq 'ARRAY') {
4524 $header_args = $arg;
4529 print $cgi->start_div($div_args);
4530 git_print_header_div
(@$header_args);
4532 if (ref($content) eq 'CODE') {
4534 } elsif (ref($content) eq 'SCALAR') {
4535 print esc_html
($$content);
4536 } elsif (ref($content) eq 'GLOB' or ref($content) eq 'IO::Handle') {
4538 } elsif (!ref($content) && defined($content)) {
4542 print $cgi->end_div;
4545 sub format_timestamp_html
{
4547 my $strtime = $date->{'rfc2822'};
4549 my (undef, undef, $datetime_class) =
4550 gitweb_get_feature
('javascript-timezone');
4551 if ($datetime_class) {
4552 $strtime = qq
!<span
class="$datetime_class">$strtime</span
>!;
4555 my $localtime_format = '(%02d:%02d %s)';
4556 if ($date->{'hour_local'} < 6) {
4557 $localtime_format = '(<span class="atnight">%02d:%02d</span> %s)';
4560 sprintf($localtime_format,
4561 $date->{'hour_local'}, $date->{'minute_local'}, $date->{'tz_local'});
4566 # Outputs the author name and date in long form
4567 sub git_print_authorship
{
4570 my $tag = $opts{-tag
} || 'div';
4571 my $author = $co->{'author_name'};
4573 my %ad = parse_date
($co->{'author_epoch'}, $co->{'author_tz'});
4574 print "<$tag class=\"author_date\">" .
4575 format_search_author
($author, "author", esc_html
($author)) .
4576 " [".format_timestamp_html
(\
%ad)."]".
4577 git_get_avatar
($co->{'author_email'}, -pad_before
=> 1) .
4581 # Outputs table rows containing the full author or committer information,
4582 # in the format expected for 'commit' view (& similar).
4583 # Parameters are a commit hash reference, followed by the list of people
4584 # to output information for. If the list is empty it defaults to both
4585 # author and committer.
4586 sub git_print_authorship_rows
{
4588 # too bad we can't use @people = @_ || ('author', 'committer')
4590 @people = ('author', 'committer') unless @people;
4591 foreach my $who (@people) {
4592 my %wd = parse_date
($co->{"${who}_epoch"}, $co->{"${who}_tz"});
4593 print "<tr><td>$who</td><td>" .
4594 format_search_author
($co->{"${who}_name"}, $who,
4595 esc_html
($co->{"${who}_name"})) . " " .
4596 format_search_author
($co->{"${who}_email"}, $who,
4597 esc_html
("<" . $co->{"${who}_email"} . ">")) .
4598 "</td><td rowspan=\"2\">" .
4599 git_get_avatar
($co->{"${who}_email"}, -size
=> 'double') .
4603 format_timestamp_html
(\
%wd) .
4609 sub git_print_page_path
{
4615 print "<div class=\"page_path\">";
4616 print $cgi->a({-href
=> href
(action
=>"tree", hash_base
=>$hb),
4617 -title
=> 'tree root'}, to_utf8
("[$project]"));
4619 if (defined $name) {
4620 my @dirname = split '/', $name;
4621 my $basename = pop @dirname;
4624 foreach my $dir (@dirname) {
4625 $fullname .= ($fullname ? '/' : '') . $dir;
4626 print $cgi->a({-href
=> href
(action
=>"tree", file_name
=>$fullname,
4628 -title
=> $fullname}, esc_path
($dir));
4631 if (defined $type && $type eq 'blob') {
4632 print $cgi->a({-href
=> href
(action
=>"blob_plain", file_name
=>$file_name,
4634 -title
=> $name}, esc_path
($basename));
4635 } elsif (defined $type && $type eq 'tree') {
4636 print $cgi->a({-href
=> href
(action
=>"tree", file_name
=>$file_name,
4638 -title
=> $name}, esc_path
($basename));
4641 print esc_path
($basename);
4644 print "<br/></div>\n";
4651 if ($opts{'-remove_title'}) {
4652 # remove title, i.e. first line of log
4655 # remove leading empty lines
4656 while (defined $log->[0] && $log->[0] eq "") {
4661 my $skip_blank_line = 0;
4662 foreach my $line (@$log) {
4663 if ($line =~ m/^\s*([A-Z][-A-Za-z]*-([Bb]y|[Tt]o)|C[Cc]|(Clos|Fix)es): /) {
4664 if (! $opts{'-remove_signoff'}) {
4665 print "<span class=\"signoff\">" . esc_html
($line) . "</span><br/>\n";
4666 $skip_blank_line = 1;
4671 if ($line =~ m
,\s
*([a-z
]*link): (https
?://\S
+),i
) {
4672 if (! $opts{'-remove_signoff'}) {
4673 print "<span class=\"signoff\">" . esc_html
($1) . ": " .
4674 "<a href=\"" . esc_html
($2) . "\">" . esc_html
($2) . "</a>" .
4676 $skip_blank_line = 1;
4681 # print only one empty line
4682 # do not print empty line after signoff
4684 next if ($skip_blank_line);
4685 $skip_blank_line = 1;
4687 $skip_blank_line = 0;
4690 print format_log_line_html
($line) . "<br/>\n";
4693 if ($opts{'-final_empty_line'}) {
4694 # end with single empty line
4695 print "<br/>\n" unless $skip_blank_line;
4699 # return link target (what link points to)
4700 sub git_get_link_target
{
4705 open my $fd, "-|", git_cmd
(), "cat-file", "blob", $hash
4709 $link_target = <$fd>;
4714 return $link_target;
4717 # given link target, and the directory (basedir) the link is in,
4718 # return target of link relative to top directory (top tree);
4719 # return undef if it is not possible (including absolute links).
4720 sub normalize_link_target
{
4721 my ($link_target, $basedir) = @_;
4723 # absolute symlinks (beginning with '/') cannot be normalized
4724 return if (substr($link_target, 0, 1) eq '/');
4726 # normalize link target to path from top (root) tree (dir)
4729 $path = $basedir . '/' . $link_target;
4731 # we are in top (root) tree (dir)
4732 $path = $link_target;
4735 # remove //, /./, and /../
4737 foreach my $part (split('/', $path)) {
4738 # discard '.' and ''
4739 next if (!$part || $part eq '.');
4741 if ($part eq '..') {
4745 # link leads outside repository (outside top dir)
4749 push @path_parts, $part;
4752 $path = join('/', @path_parts);
4757 # print tree entry (row of git_tree), but without encompassing <tr> element
4758 sub git_print_tree_entry
{
4759 my ($t, $basedir, $hash_base, $have_blame) = @_;
4762 $base_key{'hash_base'} = $hash_base if defined $hash_base;
4764 # The format of a table row is: mode list link. Where mode is
4765 # the mode of the entry, list is the name of the entry, an href,
4766 # and link is the action links of the entry.
4768 print "<td class=\"mode\">" . mode_str
($t->{'mode'}) . "</td>\n";
4769 if (exists $t->{'size'}) {
4770 print "<td class=\"size\">$t->{'size'}</td>\n";
4772 if ($t->{'type'} eq "blob") {
4773 print "<td class=\"list\">" .
4774 $cgi->a({-href
=> href
(action
=>"blob", hash
=>$t->{'hash'},
4775 file_name
=>"$basedir$t->{'name'}", %base_key),
4776 -class => "list"}, esc_path
($t->{'name'}));
4777 if (S_ISLNK
(oct $t->{'mode'})) {
4778 my $link_target = git_get_link_target
($t->{'hash'});
4780 my $norm_target = normalize_link_target
($link_target, $basedir);
4781 if (defined $norm_target) {
4783 $cgi->a({-href
=> href
(action
=>"object", hash_base
=>$hash_base,
4784 file_name
=>$norm_target),
4785 -title
=> $norm_target}, esc_path
($link_target));
4787 print " -> " . esc_path
($link_target);
4792 print "<td class=\"link\">";
4793 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$t->{'hash'},
4794 file_name
=>"$basedir$t->{'name'}", %base_key)},
4798 $cgi->a({-href
=> href
(action
=>"blame", hash
=>$t->{'hash'},
4799 file_name
=>"$basedir$t->{'name'}", %base_key)},
4802 if (defined $hash_base) {
4804 $cgi->a({-href
=> href
(action
=>"history", hash_base
=>$hash_base,
4805 hash
=>$t->{'hash'}, file_name
=>"$basedir$t->{'name'}")},
4809 $cgi->a({-href
=> href
(action
=>"blob_plain", hash_base
=>$hash_base,
4810 file_name
=>"$basedir$t->{'name'}")},
4814 } elsif ($t->{'type'} eq "tree") {
4815 print "<td class=\"list\">";
4816 print $cgi->a({-href
=> href
(action
=>"tree", hash
=>$t->{'hash'},
4817 file_name
=>"$basedir$t->{'name'}",
4819 esc_path
($t->{'name'}));
4821 print "<td class=\"link\">";
4822 print $cgi->a({-href
=> href
(action
=>"tree", hash
=>$t->{'hash'},
4823 file_name
=>"$basedir$t->{'name'}",
4826 if (defined $hash_base) {
4828 $cgi->a({-href
=> href
(action
=>"history", hash_base
=>$hash_base,
4829 file_name
=>"$basedir$t->{'name'}")},
4834 # unknown object: we can only present history for it
4835 # (this includes 'commit' object, i.e. submodule support)
4836 print "<td class=\"list\">" .
4837 esc_path
($t->{'name'}) .
4839 print "<td class=\"link\">";
4840 if (defined $hash_base) {
4841 print $cgi->a({-href
=> href
(action
=>"history",
4842 hash_base
=>$hash_base,
4843 file_name
=>"$basedir$t->{'name'}")},
4850 ## ......................................................................
4851 ## functions printing large fragments of HTML
4853 # get pre-image filenames for merge (combined) diff
4854 sub fill_from_file_info
{
4855 my ($diff, @parents) = @_;
4857 $diff->{'from_file'} = [ ];
4858 $diff->{'from_file'}[$diff->{'nparents'} - 1] = undef;
4859 for (my $i = 0; $i < $diff->{'nparents'}; $i++) {
4860 if ($diff->{'status'}[$i] eq 'R' ||
4861 $diff->{'status'}[$i] eq 'C') {
4862 $diff->{'from_file'}[$i] =
4863 git_get_path_by_hash
($parents[$i], $diff->{'from_id'}[$i]);
4870 # is current raw difftree line of file deletion
4872 my $diffinfo = shift;
4874 return $diffinfo->{'to_id'} eq ('0' x
40) || $diffinfo->{'to_id'} eq ('0' x
64);
4877 # does patch correspond to [previous] difftree raw line
4878 # $diffinfo - hashref of parsed raw diff format
4879 # $patchinfo - hashref of parsed patch diff format
4880 # (the same keys as in $diffinfo)
4881 sub is_patch_split
{
4882 my ($diffinfo, $patchinfo) = @_;
4884 return defined $diffinfo && defined $patchinfo
4885 && $diffinfo->{'to_file'} eq $patchinfo->{'to_file'};
4889 sub git_difftree_body
{
4890 my ($difftree, $hash, @parents) = @_;
4891 my ($parent) = $parents[0];
4892 my $have_blame = gitweb_check_feature
('blame');
4893 print "<div class=\"list_head\">\n";
4894 if ($#{$difftree} > 10) {
4895 print(($#{$difftree} + 1) . " files changed:\n");
4899 print "<table class=\"" .
4900 (@parents > 1 ? "combined " : "") .
4903 # header only for combined diff in 'commitdiff' view
4904 my $has_header = @$difftree && @parents > 1 && $action eq 'commitdiff';
4907 print "<thead><tr>\n" .
4908 "<th></th><th></th>\n"; # filename, patchN link
4909 for (my $i = 0; $i < @parents; $i++) {
4910 my $par = $parents[$i];
4912 $cgi->a({-href
=> href
(action
=>"commitdiff",
4913 hash
=>$hash, hash_parent
=>$par),
4914 -title
=> 'commitdiff to parent number ' .
4915 ($i+1) . ': ' . substr($par,0,7)},
4919 print "</tr></thead>\n<tbody>\n";
4924 foreach my $line (@{$difftree}) {
4925 my $diff = parsed_difftree_line
($line);
4928 print "<tr class=\"dark\">\n";
4930 print "<tr class=\"light\">\n";
4934 if (exists $diff->{'nparents'}) { # combined diff
4936 fill_from_file_info
($diff, @parents)
4937 unless exists $diff->{'from_file'};
4939 if (!is_deleted
($diff)) {
4940 # file exists in the result (child) commit
4942 $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff->{'to_id'},
4943 file_name
=>$diff->{'to_file'},
4945 -class => "list"}, esc_path
($diff->{'to_file'})) .
4949 esc_path
($diff->{'to_file'}) .
4953 if ($action eq 'commitdiff') {
4956 print "<td class=\"link\">" .
4957 $cgi->a({-href
=> href
(-anchor
=>"patch$patchno")},
4963 my $has_history = 0;
4964 my $not_deleted = 0;
4965 for (my $i = 0; $i < $diff->{'nparents'}; $i++) {
4966 my $hash_parent = $parents[$i];
4967 my $from_hash = $diff->{'from_id'}[$i];
4968 my $from_path = $diff->{'from_file'}[$i];
4969 my $status = $diff->{'status'}[$i];
4971 $has_history ||= ($status ne 'A');
4972 $not_deleted ||= ($status ne 'D');
4974 if ($status eq 'A') {
4975 print "<td class=\"link\" align=\"right\"> | </td>\n";
4976 } elsif ($status eq 'D') {
4977 print "<td class=\"link\">" .
4978 $cgi->a({-href
=> href
(action
=>"blob",
4981 file_name
=>$from_path)},
4985 if ($diff->{'to_id'} eq $from_hash) {
4986 print "<td class=\"link nochange\">";
4988 print "<td class=\"link\">";
4990 print $cgi->a({-href
=> href
(action
=>"blobdiff",
4991 hash
=>$diff->{'to_id'},
4992 hash_parent
=>$from_hash,
4994 hash_parent_base
=>$hash_parent,
4995 file_name
=>$diff->{'to_file'},
4996 file_parent
=>$from_path)},
5002 print "<td class=\"link\">";
5004 print $cgi->a({-href
=> href
(action
=>"blob",
5005 hash
=>$diff->{'to_id'},
5006 file_name
=>$diff->{'to_file'},
5009 print " | " if ($has_history);
5012 print $cgi->a({-href
=> href
(action
=>"history",
5013 file_name
=>$diff->{'to_file'},
5020 next; # instead of 'else' clause, to avoid extra indent
5022 # else ordinary diff
5024 my ($to_mode_oct, $to_mode_str, $to_file_type);
5025 my ($from_mode_oct, $from_mode_str, $from_file_type);
5026 if ($diff->{'to_mode'} ne ('0' x
6)) {
5027 $to_mode_oct = oct $diff->{'to_mode'};
5028 if (S_ISREG
($to_mode_oct)) { # only for regular file
5029 $to_mode_str = sprintf("%04o", $to_mode_oct & 0777); # permission bits
5031 $to_file_type = file_type
($diff->{'to_mode'});
5033 if ($diff->{'from_mode'} ne ('0' x
6)) {
5034 $from_mode_oct = oct $diff->{'from_mode'};
5035 if (S_ISREG
($from_mode_oct)) { # only for regular file
5036 $from_mode_str = sprintf("%04o", $from_mode_oct & 0777); # permission bits
5038 $from_file_type = file_type
($diff->{'from_mode'});
5041 if ($diff->{'status'} eq "A") { # created
5042 my $mode_chng = "<span class=\"file_status new\">[new $to_file_type";
5043 $mode_chng .= " with mode: $to_mode_str" if $to_mode_str;
5044 $mode_chng .= "]</span>";
5046 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff->{'to_id'},
5047 hash_base
=>$hash, file_name
=>$diff->{'file'}),
5048 -class => "list"}, esc_path
($diff->{'file'}));
5050 print "<td>$mode_chng</td>\n";
5051 print "<td class=\"link\">";
5052 if ($action eq 'commitdiff') {
5055 print $cgi->a({-href
=> href
(-anchor
=>"patch$patchno")},
5059 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff->{'to_id'},
5060 hash_base
=>$hash, file_name
=>$diff->{'file'})},
5064 } elsif ($diff->{'status'} eq "D") { # deleted
5065 my $mode_chng = "<span class=\"file_status deleted\">[deleted $from_file_type]</span>";
5067 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff->{'from_id'},
5068 hash_base
=>$parent, file_name
=>$diff->{'file'}),
5069 -class => "list"}, esc_path
($diff->{'file'}));
5071 print "<td>$mode_chng</td>\n";
5072 print "<td class=\"link\">";
5073 if ($action eq 'commitdiff') {
5076 print $cgi->a({-href
=> href
(-anchor
=>"patch$patchno")},
5080 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff->{'from_id'},
5081 hash_base
=>$parent, file_name
=>$diff->{'file'})},
5084 print $cgi->a({-href
=> href
(action
=>"blame", hash_base
=>$parent,
5085 file_name
=>$diff->{'file'})},
5088 print $cgi->a({-href
=> href
(action
=>"history", hash_base
=>$parent,
5089 file_name
=>$diff->{'file'})},
5093 } elsif ($diff->{'status'} eq "M" || $diff->{'status'} eq "T") { # modified, or type changed
5094 my $mode_chnge = "";
5095 if ($diff->{'from_mode'} != $diff->{'to_mode'}) {
5096 $mode_chnge = "<span class=\"file_status mode_chnge\">[changed";
5097 if ($from_file_type ne $to_file_type) {
5098 $mode_chnge .= " from $from_file_type to $to_file_type";
5100 if (($from_mode_oct & 0777) != ($to_mode_oct & 0777)) {
5101 if ($from_mode_str && $to_mode_str) {
5102 $mode_chnge .= " mode: $from_mode_str->$to_mode_str";
5103 } elsif ($to_mode_str) {
5104 $mode_chnge .= " mode: $to_mode_str";
5107 $mode_chnge .= "]</span>\n";
5110 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff->{'to_id'},
5111 hash_base
=>$hash, file_name
=>$diff->{'file'}),
5112 -class => "list"}, esc_path
($diff->{'file'}));
5114 print "<td>$mode_chnge</td>\n";
5115 print "<td class=\"link\">";
5116 if ($action eq 'commitdiff') {
5119 print $cgi->a({-href
=> href
(-anchor
=>"patch$patchno")},
5122 } elsif ($diff->{'to_id'} ne $diff->{'from_id'}) {
5123 # "commit" view and modified file (not onlu mode changed)
5124 print $cgi->a({-href
=> href
(action
=>"blobdiff",
5125 hash
=>$diff->{'to_id'}, hash_parent
=>$diff->{'from_id'},
5126 hash_base
=>$hash, hash_parent_base
=>$parent,
5127 file_name
=>$diff->{'file'})},
5131 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff->{'to_id'},
5132 hash_base
=>$hash, file_name
=>$diff->{'file'})},
5135 print $cgi->a({-href
=> href
(action
=>"blame", hash_base
=>$hash,
5136 file_name
=>$diff->{'file'})},
5139 print $cgi->a({-href
=> href
(action
=>"history", hash_base
=>$hash,
5140 file_name
=>$diff->{'file'})},
5144 } elsif ($diff->{'status'} eq "R" || $diff->{'status'} eq "C") { # renamed or copied
5145 my %status_name = ('R' => 'moved', 'C' => 'copied');
5146 my $nstatus = $status_name{$diff->{'status'}};
5148 if ($diff->{'from_mode'} != $diff->{'to_mode'}) {
5149 # mode also for directories, so we cannot use $to_mode_str
5150 $mode_chng = sprintf(", mode: %04o", $to_mode_oct & 0777);
5153 $cgi->a({-href
=> href
(action
=>"blob", hash_base
=>$hash,
5154 hash
=>$diff->{'to_id'}, file_name
=>$diff->{'to_file'}),
5155 -class => "list"}, esc_path
($diff->{'to_file'})) . "</td>\n" .
5156 "<td><span class=\"file_status $nstatus\">[$nstatus from " .
5157 $cgi->a({-href
=> href
(action
=>"blob", hash_base
=>$parent,
5158 hash
=>$diff->{'from_id'}, file_name
=>$diff->{'from_file'}),
5159 -class => "list"}, esc_path
($diff->{'from_file'})) .
5160 " with " . (int $diff->{'similarity'}) . "% similarity$mode_chng]</span></td>\n" .
5161 "<td class=\"link\">";
5162 if ($action eq 'commitdiff') {
5165 print $cgi->a({-href
=> href
(-anchor
=>"patch$patchno")},
5168 } elsif ($diff->{'to_id'} ne $diff->{'from_id'}) {
5169 # "commit" view and modified file (not only pure rename or copy)
5170 print $cgi->a({-href
=> href
(action
=>"blobdiff",
5171 hash
=>$diff->{'to_id'}, hash_parent
=>$diff->{'from_id'},
5172 hash_base
=>$hash, hash_parent_base
=>$parent,
5173 file_name
=>$diff->{'to_file'}, file_parent
=>$diff->{'from_file'})},
5177 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff->{'to_id'},
5178 hash_base
=>$parent, file_name
=>$diff->{'to_file'})},
5181 print $cgi->a({-href
=> href
(action
=>"blame", hash_base
=>$hash,
5182 file_name
=>$diff->{'to_file'})},
5185 print $cgi->a({-href
=> href
(action
=>"history", hash_base
=>$hash,
5186 file_name
=>$diff->{'to_file'})},
5190 } # we should not encounter Unmerged (U) or Unknown (X) status
5193 print "</tbody>" if $has_header;
5197 # Print context lines and then rem/add lines in a side-by-side manner.
5198 sub print_sidebyside_diff_lines
{
5199 my ($ctx, $rem, $add) = @_;
5201 # print context block before add/rem block
5204 '<div class="chunk_block ctx">',
5205 '<div class="old">',
5208 '<div class="new">',
5217 '<div class="chunk_block rem">',
5218 '<div class="old">',
5225 '<div class="chunk_block add">',
5226 '<div class="new">',
5232 '<div class="chunk_block chg">',
5233 '<div class="old">',
5236 '<div class="new">',
5243 # Print context lines and then rem/add lines in inline manner.
5244 sub print_inline_diff_lines
{
5245 my ($ctx, $rem, $add) = @_;
5247 print @$ctx, @$rem, @$add;
5250 # Format removed and added line, mark changed part and HTML-format them.
5251 # Implementation is based on contrib/diff-highlight
5252 sub format_rem_add_lines_pair
{
5253 my ($rem, $add, $num_parents) = @_;
5255 # We need to untabify lines before split()'ing them;
5256 # otherwise offsets would be invalid.
5259 $rem = untabify
($rem);
5260 $add = untabify
($add);
5262 my @rem = split(//, $rem);
5263 my @add = split(//, $add);
5264 my ($esc_rem, $esc_add);
5265 # Ignore leading +/- characters for each parent.
5266 my ($prefix_len, $suffix_len) = ($num_parents, 0);
5267 my ($prefix_has_nonspace, $suffix_has_nonspace);
5269 my $shorter = (@rem < @add) ? @rem : @add;
5270 while ($prefix_len < $shorter) {
5271 last if ($rem[$prefix_len] ne $add[$prefix_len]);
5273 $prefix_has_nonspace = 1 if ($rem[$prefix_len] !~ /\s/);
5277 while ($prefix_len + $suffix_len < $shorter) {
5278 last if ($rem[-1 - $suffix_len] ne $add[-1 - $suffix_len]);
5280 $suffix_has_nonspace = 1 if ($rem[-1 - $suffix_len] !~ /\s/);
5284 # Mark lines that are different from each other, but have some common
5285 # part that isn't whitespace. If lines are completely different, don't
5286 # mark them because that would make output unreadable, especially if
5287 # diff consists of multiple lines.
5288 if ($prefix_has_nonspace || $suffix_has_nonspace) {
5289 $esc_rem = esc_html_hl_regions
($rem, 'marked',
5290 [$prefix_len, @rem - $suffix_len], -nbsp
=>1);
5291 $esc_add = esc_html_hl_regions
($add, 'marked',
5292 [$prefix_len, @add - $suffix_len], -nbsp
=>1);
5294 $esc_rem = esc_html
($rem, -nbsp
=>1);
5295 $esc_add = esc_html
($add, -nbsp
=>1);
5298 return format_diff_line
(\
$esc_rem, 'rem'),
5299 format_diff_line
(\
$esc_add, 'add');
5302 # HTML-format diff context, removed and added lines.
5303 sub format_ctx_rem_add_lines
{
5304 my ($ctx, $rem, $add, $num_parents) = @_;
5305 my (@new_ctx, @new_rem, @new_add);
5306 my $can_highlight = 0;
5307 my $is_combined = ($num_parents > 1);
5309 # Highlight if every removed line has a corresponding added line.
5310 if (@$add > 0 && @$add == @$rem) {
5313 # Highlight lines in combined diff only if the chunk contains
5314 # diff between the same version, e.g.
5321 # Otherwise the highlighting would be confusing.
5323 for (my $i = 0; $i < @$add; $i++) {
5324 my $prefix_rem = substr($rem->[$i], 0, $num_parents);
5325 my $prefix_add = substr($add->[$i], 0, $num_parents);
5327 $prefix_rem =~ s/-/+/g;
5329 if ($prefix_rem ne $prefix_add) {
5337 if ($can_highlight) {
5338 for (my $i = 0; $i < @$add; $i++) {
5339 my ($line_rem, $line_add) = format_rem_add_lines_pair
(
5340 $rem->[$i], $add->[$i], $num_parents);
5341 push @new_rem, $line_rem;
5342 push @new_add, $line_add;
5345 @new_rem = map { format_diff_line
($_, 'rem') } @$rem;
5346 @new_add = map { format_diff_line
($_, 'add') } @$add;
5349 @new_ctx = map { format_diff_line
($_, 'ctx') } @$ctx;
5351 return (\
@new_ctx, \
@new_rem, \
@new_add);
5354 # Print context lines and then rem/add lines.
5355 sub print_diff_lines
{
5356 my ($ctx, $rem, $add, $diff_style, $num_parents) = @_;
5357 my $is_combined = $num_parents > 1;
5359 ($ctx, $rem, $add) = format_ctx_rem_add_lines
($ctx, $rem, $add,
5362 if ($diff_style eq 'sidebyside' && !$is_combined) {
5363 print_sidebyside_diff_lines
($ctx, $rem, $add);
5365 # default 'inline' style and unknown styles
5366 print_inline_diff_lines
($ctx, $rem, $add);
5370 sub print_diff_chunk
{
5371 my ($diff_style, $num_parents, $from, $to, @chunk) = @_;
5372 my (@ctx, @rem, @add);
5374 # The class of the previous line.
5375 my $prev_class = '';
5377 return unless @chunk;
5379 # incomplete last line might be among removed or added lines,
5380 # or both, or among context lines: find which
5381 for (my $i = 1; $i < @chunk; $i++) {
5382 if ($chunk[$i][0] eq 'incomplete') {
5383 $chunk[$i][0] = $chunk[$i-1][0];
5388 push @chunk, ["", ""];
5390 foreach my $line_info (@chunk) {
5391 my ($class, $line) = @$line_info;
5393 # print chunk headers
5394 if ($class && $class eq 'chunk_header') {
5395 print format_diff_line
($line, $class, $from, $to);
5399 ## print from accumulator when have some add/rem lines or end
5400 # of chunk (flush context lines), or when have add and rem
5401 # lines and new block is reached (otherwise add/rem lines could
5403 if (!$class || ((@rem || @add) && $class eq 'ctx') ||
5404 (@rem && @add && $class ne $prev_class)) {
5405 print_diff_lines
(\
@ctx, \
@rem, \
@add,
5406 $diff_style, $num_parents);
5407 @ctx = @rem = @add = ();
5410 ## adding lines to accumulator
5413 # rem, add or change
5414 if ($class eq 'rem') {
5416 } elsif ($class eq 'add') {
5420 if ($class eq 'ctx') {
5424 $prev_class = $class;
5428 sub git_patchset_body
{
5429 my ($fd, $diff_style, $difftree, $hash, @hash_parents) = @_;
5430 my ($hash_parent) = $hash_parents[0];
5432 my $is_combined = (@hash_parents > 1);
5434 my $patch_number = 0;
5439 my @chunk; # for side-by-side diff
5441 print "<div class=\"patchset\">\n";
5443 # skip to first patch
5444 while ($patch_line = <$fd>) {
5447 last if ($patch_line =~ m/^diff /);
5451 while ($patch_line) {
5453 # parse "git diff" header line
5454 if ($patch_line =~ m/^diff --git (\"(?:[^\\\"]*(?:\\.[^\\\"]*)*)\"|[^ "]*) (.*)$/) {
5455 # $1 is from_name, which we do not use
5456 $to_name = unquote
($2);
5457 $to_name =~ s!^b/!!;
5458 } elsif ($patch_line =~ m/^diff --(cc|combined) ("?.*"?)$/) {
5459 # $1 is 'cc' or 'combined', which we do not use
5460 $to_name = unquote
($2);
5465 # check if current patch belong to current raw line
5466 # and parse raw git-diff line if needed
5467 if (is_patch_split
($diffinfo, { 'to_file' => $to_name })) {
5468 # this is continuation of a split patch
5469 print "<div class=\"patch cont\">\n";
5471 # advance raw git-diff output if needed
5472 $patch_idx++ if defined $diffinfo;
5474 # read and prepare patch information
5475 $diffinfo = parsed_difftree_line
($difftree->[$patch_idx]);
5477 # compact combined diff output can have some patches skipped
5478 # find which patch (using pathname of result) we are at now;
5480 while ($to_name ne $diffinfo->{'to_file'}) {
5481 print "<div class=\"patch\" id=\"patch". ($patch_idx+1) ."\">\n" .
5482 format_diff_cc_simplified
($diffinfo, @hash_parents) .
5483 "</div>\n"; # class="patch"
5488 last if $patch_idx > $#$difftree;
5489 $diffinfo = parsed_difftree_line
($difftree->[$patch_idx]);
5493 # modifies %from, %to hashes
5494 parse_from_to_diffinfo
($diffinfo, \
%from, \
%to, @hash_parents);
5496 # this is first patch for raw difftree line with $patch_idx index
5497 # we index @$difftree array from 0, but number patches from 1
5498 print "<div class=\"patch\" id=\"patch". ($patch_idx+1) ."\">\n";
5502 #assert($patch_line =~ m/^diff /) if DEBUG;
5503 #assert($patch_line !~ m!$/$!) if DEBUG; # is chomp-ed
5505 # print "git diff" header
5506 print format_git_diff_header_line
($patch_line, $diffinfo,
5509 # print extended diff header
5510 print "<div class=\"diff extended_header\">\n";
5512 while ($patch_line = <$fd>) {
5515 last EXTENDED_HEADER
if ($patch_line =~ m/^--- |^diff /);
5517 print format_extended_diff_header_line
($patch_line, $diffinfo,
5520 print "</div>\n"; # class="diff extended_header"
5522 # from-file/to-file diff header
5523 if (! $patch_line) {
5524 print "</div>\n"; # class="patch"
5527 next PATCH
if ($patch_line =~ m/^diff /);
5528 #assert($patch_line =~ m/^---/) if DEBUG;
5530 my $last_patch_line = $patch_line;
5531 $patch_line = <$fd>;
5533 #assert($patch_line =~ m/^\+\+\+/) if DEBUG;
5535 print format_diff_from_to_header
($last_patch_line, $patch_line,
5536 $diffinfo, \
%from, \
%to,
5541 while ($patch_line = <$fd>) {
5544 next PATCH
if ($patch_line =~ m/^diff /);
5546 my $class = diff_line_class
($patch_line, \
%from, \
%to);
5548 if ($class eq 'chunk_header') {
5549 print_diff_chunk
($diff_style, scalar @hash_parents, \
%from, \
%to, @chunk);
5553 push @chunk, [ $class, $patch_line ];
5558 print_diff_chunk
($diff_style, scalar @hash_parents, \
%from, \
%to, @chunk);
5561 print "</div>\n"; # class="patch"
5564 # for compact combined (--cc) format, with chunk and patch simplification
5565 # the patchset might be empty, but there might be unprocessed raw lines
5566 for (++$patch_idx if $patch_number > 0;
5567 $patch_idx < @$difftree;
5569 # read and prepare patch information
5570 $diffinfo = parsed_difftree_line
($difftree->[$patch_idx]);
5572 # generate anchor for "patch" links in difftree / whatchanged part
5573 print "<div class=\"patch\" id=\"patch". ($patch_idx+1) ."\">\n" .
5574 format_diff_cc_simplified
($diffinfo, @hash_parents) .
5575 "</div>\n"; # class="patch"
5580 if ($patch_number == 0) {
5581 if (@hash_parents > 1) {
5582 print "<div class=\"diff nodifferences\">Trivial merge</div>\n";
5584 print "<div class=\"diff nodifferences\">No differences found</div>\n";
5588 print "</div>\n"; # class="patchset"
5591 # . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
5593 sub git_project_search_form
{
5594 my ($searchtext, $search_use_regexp) = @_;
5597 if ($project_filter) {
5598 $limit = " in '$project_filter/'";
5601 print "<div class=\"projsearch\">\n";
5602 print $cgi->start_form(-method => 'get', -action
=> $my_uri) .
5603 $cgi->hidden(-name
=> 'a', -value
=> 'project_list') . "\n";
5604 print $cgi->hidden(-name
=> 'pf', -value
=> $project_filter). "\n"
5605 if (defined $project_filter);
5606 print $cgi->textfield(-name
=> 's', -value
=> $searchtext,
5607 -title
=> "Search project by name and description$limit",
5608 -size
=> 60) . "\n" .
5609 "<span title=\"Extended regular expression\">" .
5610 $cgi->checkbox(-name
=> 'sr', -value
=> 1, -label
=> 're',
5611 -checked
=> $search_use_regexp) .
5613 $cgi->submit(-name
=> 'btnS', -value
=> 'Search') .
5614 $cgi->end_form() . "\n" .
5615 $cgi->a({-href
=> href
(project
=> undef, searchtext
=> undef,
5616 project_filter
=> $project_filter)},
5617 esc_html
("List all projects$limit")) . "<br />\n";
5621 # entry for given @keys needs filling if at least one of keys in list
5622 # is not present in %$project_info
5623 sub project_info_needs_filling
{
5624 my ($project_info, @keys) = @_;
5626 # return List::MoreUtils::any { !exists $project_info->{$_} } @keys;
5627 foreach my $key (@keys) {
5628 if (!exists $project_info->{$key}) {
5635 # fills project list info (age, description, owner, category, forks, etc.)
5636 # for each project in the list, removing invalid projects from
5637 # returned list, or fill only specified info.
5639 # Invalid projects are removed from the returned list if and only if you
5640 # ask 'age' or 'age_string' to be filled, because they are the only fields
5641 # that run unconditionally git command that requires repository, and
5642 # therefore do always check if project repository is invalid.
5645 # * fill_project_list_info(\@project_list, 'descr_long', 'ctags')
5646 # ensures that 'descr_long' and 'ctags' fields are filled
5647 # * @project_list = fill_project_list_info(\@project_list)
5648 # ensures that all fields are filled (and invalid projects removed)
5650 # NOTE: modifies $projlist, but does not remove entries from it
5651 sub fill_project_list_info
{
5652 my ($projlist, @wanted_keys) = @_;
5654 my $filter_set = sub { return @_; };
5656 my %wanted_keys = map { $_ => 1 } @wanted_keys;
5657 $filter_set = sub { return grep { $wanted_keys{$_} } @_; };
5660 my $show_ctags = gitweb_check_feature
('ctags');
5662 foreach my $pr (@$projlist) {
5663 if (project_info_needs_filling
($pr, $filter_set->('age', 'age_string'))) {
5664 my (@activity) = git_get_last_activity
($pr->{'path'});
5665 unless (@activity) {
5668 ($pr->{'age'}, $pr->{'age_string'}) = @activity;
5670 if (project_info_needs_filling
($pr, $filter_set->('descr', 'descr_long'))) {
5671 my $descr = git_get_project_description
($pr->{'path'}) || "";
5672 $descr = to_utf8
($descr);
5673 $pr->{'descr_long'} = $descr;
5674 $pr->{'descr'} = chop_str
($descr, $projects_list_description_width, 5);
5676 if (project_info_needs_filling
($pr, $filter_set->('owner'))) {
5677 $pr->{'owner'} = git_get_project_owner
("$pr->{'path'}") || "";
5680 project_info_needs_filling
($pr, $filter_set->('ctags'))) {
5681 $pr->{'ctags'} = git_get_project_ctags
($pr->{'path'});
5683 if ($projects_list_group_categories &&
5684 project_info_needs_filling
($pr, $filter_set->('category'))) {
5685 my $cat = git_get_project_category
($pr->{'path'}) ||
5686 $project_list_default_category;
5687 $pr->{'category'} = to_utf8
($cat);
5690 push @projects, $pr;
5696 sub sort_projects_list
{
5697 my ($projlist, $order) = @_;
5701 return sub { $a->{$key} cmp $b->{$key} };
5704 sub order_num_then_undef
{
5707 defined $a->{$key} ?
5708 (defined $b->{$key} ? $a->{$key} <=> $b->{$key} : -1) :
5709 (defined $b->{$key} ? 1 : 0)
5714 project
=> order_str
('path'),
5715 descr
=> order_str
('descr_long'),
5716 owner
=> order_str
('owner'),
5717 age
=> order_num_then_undef
('age'),
5720 my $ordering = $orderings{$order};
5721 return defined $ordering ? sort $ordering @$projlist : @$projlist;
5724 # returns a hash of categories, containing the list of project
5725 # belonging to each category
5726 sub build_projlist_by_category
{
5727 my ($projlist, $from, $to) = @_;
5730 $from = 0 unless defined $from;
5731 $to = $#$projlist if (!defined $to || $#$projlist < $to);
5733 for (my $i = $from; $i <= $to; $i++) {
5734 my $pr = $projlist->[$i];
5735 push @{$categories{ $pr->{'category'} }}, $pr;
5738 return wantarray ? %categories : \
%categories;
5741 # print 'sort by' <th> element, generating 'sort by $name' replay link
5742 # if that order is not selected
5744 print format_sort_th
(@_);
5747 sub format_sort_th
{
5748 my ($name, $order, $header) = @_;
5750 $header ||= ucfirst($name);
5752 if ($order eq $name) {
5753 $sort_th .= "<th>$header</th>\n";
5755 $sort_th .= "<th>" .
5756 $cgi->a({-href
=> href
(-replay
=>1, order
=>$name),
5757 -class => "header"}, $header) .
5764 sub git_project_list_rows
{
5765 my ($projlist, $from, $to, $check_forks) = @_;
5767 $from = 0 unless defined $from;
5768 $to = $#$projlist if (!defined $to || $#$projlist < $to);
5771 for (my $i = $from; $i <= $to; $i++) {
5772 my $pr = $projlist->[$i];
5775 print "<tr class=\"dark\">\n";
5777 print "<tr class=\"light\">\n";
5783 if ($pr->{'forks'}) {
5784 my $nforks = scalar @{$pr->{'forks'}};
5786 print $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"forks"),
5787 -title
=> "$nforks forks"}, "+");
5789 print $cgi->span({-title
=> "$nforks forks"}, "+");
5794 print "<td>" . $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"summary"),
5796 esc_html_match_hl
($pr->{'path'}, $search_regexp)) .
5798 "<td>" . $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"summary"),
5800 -title
=> $pr->{'descr_long'}},
5802 ? esc_html_match_hl_chopped
($pr->{'descr_long'},
5803 $pr->{'descr'}, $search_regexp)
5804 : esc_html
($pr->{'descr'})) .
5806 unless ($omit_owner) {
5807 print "<td><i>" . chop_and_escape_str
($pr->{'owner'}, 15) . "</i></td>\n";
5809 unless ($omit_age_column) {
5810 print "<td class=\"". age_class
($pr->{'age'}) . "\">" .
5811 (defined $pr->{'age_string'} ? $pr->{'age_string'} : "No commits") . "</td>\n";
5813 print"<td class=\"link\">" .
5814 $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"summary")}, "summary") . " | " .
5815 $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"shortlog")}, "shortlog") . " | " .
5816 $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"log")}, "log") . " | " .
5817 $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"tree")}, "tree") .
5818 ($pr->{'forks'} ? " | " . $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"forks")}, "forks") : '') .
5824 sub git_project_list_body
{
5825 # actually uses global variable $project
5826 my ($projlist, $order, $from, $to, $extra, $no_header) = @_;
5827 my @projects = @$projlist;
5829 my $check_forks = gitweb_check_feature
('forks');
5830 my $show_ctags = gitweb_check_feature
('ctags');
5831 my $tagfilter = $show_ctags ? $input_params{'ctag'} : undef;
5832 $check_forks = undef
5833 if ($tagfilter || $search_regexp);
5835 # filtering out forks before filling info allows to do less work
5836 @projects = filter_forks_from_projects_list
(\
@projects)
5838 # search_projects_list pre-fills required info
5839 @projects = search_projects_list
(\
@projects,
5840 'search_regexp' => $search_regexp,
5841 'tagfilter' => $tagfilter)
5842 if ($tagfilter || $search_regexp);
5844 my @all_fields = ('descr', 'descr_long', 'ctags', 'category');
5845 push @all_fields, ('age', 'age_string') unless($omit_age_column);
5846 push @all_fields, 'owner' unless($omit_owner);
5847 @projects = fill_project_list_info
(\
@projects, @all_fields);
5849 $order ||= $default_projects_order;
5850 $from = 0 unless defined $from;
5851 $to = $#projects if (!defined $to || $#projects < $to);
5856 "<b>No such projects found</b><br />\n".
5857 "Click ".$cgi->a({-href
=>href
(project
=>undef)},"here")." to view all projects<br />\n".
5858 "</center>\n<br />\n";
5862 @projects = sort_projects_list
(\
@projects, $order);
5865 my $ctags = git_gather_all_ctags
(\
@projects);
5866 my $cloud = git_populate_project_tagcloud
($ctags);
5867 print git_show_project_tagcloud
($cloud, 64);
5870 print "<table class=\"project_list\">\n";
5871 unless ($no_header) {
5874 print "<th></th>\n";
5876 print_sort_th
('project', $order, 'Project');
5877 print_sort_th
('descr', $order, 'Description');
5878 print_sort_th
('owner', $order, 'Owner') unless $omit_owner;
5879 print_sort_th
('age', $order, 'Last Change') unless $omit_age_column;
5880 print "<th></th>\n" . # for links
5884 if ($projects_list_group_categories) {
5885 # only display categories with projects in the $from-$to window
5886 @projects = sort {$a->{'category'} cmp $b->{'category'}} @projects[$from..$to];
5887 my %categories = build_projlist_by_category
(\
@projects, $from, $to);
5888 foreach my $cat (sort keys %categories) {
5889 unless ($cat eq "") {
5892 print "<td></td>\n";
5894 print "<td class=\"category\" colspan=\"5\">".esc_html
($cat)."</td>\n";
5898 git_project_list_rows
($categories{$cat}, undef, undef, $check_forks);
5901 git_project_list_rows
(\
@projects, $from, $to, $check_forks);
5904 if (defined $extra) {
5907 print "<td></td>\n";
5909 print "<td colspan=\"5\">$extra</td>\n" .
5916 # uses global variable $project
5917 my ($commitlist, $from, $to, $refs, $extra) = @_;
5919 $from = 0 unless defined $from;
5920 $to = $#{$commitlist} if (!defined $to || $#{$commitlist} < $to);
5922 for (my $i = 0; $i <= $to; $i++) {
5923 my %co = %{$commitlist->[$i]};
5925 my $commit = $co{'id'};
5926 my $ref = format_ref_marker
($refs, $commit);
5927 git_print_header_div
('commit',
5928 "<span class=\"age\">$co{'age_string'}</span>" .
5929 esc_html
($co{'title'}) . $ref,
5931 print "<div class=\"title_text\">\n" .
5932 "<div class=\"log_link\">\n" .
5933 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$commit)}, "commit") .
5935 $cgi->a({-href
=> href
(action
=>"commitdiff", hash
=>$commit)}, "commitdiff") .
5937 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$commit, hash_base
=>$commit)}, "tree") .
5940 git_print_authorship
(\
%co, -tag
=> 'span');
5941 print "<br/>\n</div>\n";
5943 print "<div class=\"log_body\">\n";
5944 git_print_log
($co{'comment'}, -final_empty_line
=> 1);
5948 print "<div class=\"page_nav\">\n";
5954 sub git_shortlog_body
{
5955 # uses global variable $project
5956 my ($commitlist, $from, $to, $refs, $extra) = @_;
5958 $from = 0 unless defined $from;
5959 $to = $#{$commitlist} if (!defined $to || $#{$commitlist} < $to);
5961 print "<table class=\"shortlog\">\n";
5963 for (my $i = $from; $i <= $to; $i++) {
5964 my %co = %{$commitlist->[$i]};
5965 my $commit = $co{'id'};
5966 my $ref = format_ref_marker
($refs, $commit);
5968 print "<tr class=\"dark\">\n";
5970 print "<tr class=\"light\">\n";
5973 # git_summary() used print "<td><i>$co{'age_string'}</i></td>\n" .
5974 print "<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n" .
5975 format_author_html
('td', \
%co, 10) . "<td>";
5976 print format_subject_html
($co{'title'}, $co{'title_short'},
5977 href
(action
=>"commit", hash
=>$commit), $ref);
5979 "<td class=\"link\">" .
5980 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$commit)}, "commit") . " | " .
5981 $cgi->a({-href
=> href
(action
=>"commitdiff", hash
=>$commit)}, "commitdiff") . " | " .
5982 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$commit, hash_base
=>$commit)}, "tree");
5983 my $snapshot_links = format_snapshot_links
($commit);
5984 if (defined $snapshot_links) {
5985 print " | " . $snapshot_links;
5990 if (defined $extra) {
5992 "<td colspan=\"4\">$extra</td>\n" .
5998 sub git_history_body
{
5999 # Warning: assumes constant type (blob or tree) during history
6000 my ($commitlist, $from, $to, $refs, $extra,
6001 $file_name, $file_hash, $ftype) = @_;
6003 $from = 0 unless defined $from;
6004 $to = $#{$commitlist} unless (defined $to && $to <= $#{$commitlist});
6006 print "<table class=\"history\">\n";
6008 for (my $i = $from; $i <= $to; $i++) {
6009 my %co = %{$commitlist->[$i]};
6013 my $commit = $co{'id'};
6015 my $ref = format_ref_marker
($refs, $commit);
6018 print "<tr class=\"dark\">\n";
6020 print "<tr class=\"light\">\n";
6023 print "<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n" .
6024 # shortlog: format_author_html('td', \%co, 10)
6025 format_author_html
('td', \
%co, 15, 3) . "<td>";
6026 # originally git_history used chop_str($co{'title'}, 50)
6027 print format_subject_html
($co{'title'}, $co{'title_short'},
6028 href
(action
=>"commit", hash
=>$commit), $ref);
6030 "<td class=\"link\">" .
6031 $cgi->a({-href
=> href
(action
=>$ftype, hash_base
=>$commit, file_name
=>$file_name)}, $ftype) . " | " .
6032 $cgi->a({-href
=> href
(action
=>"commitdiff", hash
=>$commit)}, "commitdiff");
6034 if ($ftype eq 'blob') {
6036 $cgi->a({-href
=> href
(action
=>"blob_plain", hash_base
=>$commit, file_name
=>$file_name)}, "raw");
6038 my $blob_current = $file_hash;
6039 my $blob_parent = git_get_hash_by_path
($commit, $file_name);
6040 if (defined $blob_current && defined $blob_parent &&
6041 $blob_current ne $blob_parent) {
6043 $cgi->a({-href
=> href
(action
=>"blobdiff",
6044 hash
=>$blob_current, hash_parent
=>$blob_parent,
6045 hash_base
=>$hash_base, hash_parent_base
=>$commit,
6046 file_name
=>$file_name)},
6053 if (defined $extra) {
6055 "<td colspan=\"4\">$extra</td>\n" .
6062 # uses global variable $project
6063 my ($taglist, $from, $to, $extra) = @_;
6064 $from = 0 unless defined $from;
6065 $to = $#{$taglist} if (!defined $to || $#{$taglist} < $to);
6067 print "<table class=\"tags\">\n";
6069 for (my $i = $from; $i <= $to; $i++) {
6070 my $entry = $taglist->[$i];
6072 my $comment = $tag{'subject'};
6074 if (defined $comment) {
6075 $comment_short = chop_str
($comment, 30, 5);
6078 print "<tr class=\"dark\">\n";
6080 print "<tr class=\"light\">\n";
6083 if (defined $tag{'age'}) {
6084 print "<td><i>$tag{'age'}</i></td>\n";
6086 print "<td></td>\n";
6089 $cgi->a({-href
=> href
(action
=>$tag{'reftype'}, hash
=>$tag{'refid'}),
6090 -class => "list name"}, esc_html
($tag{'name'})) .
6093 if (defined $comment) {
6094 print format_subject_html
($comment, $comment_short,
6095 href
(action
=>"tag", hash
=>$tag{'id'}));
6098 "<td class=\"selflink\">";
6099 if ($tag{'type'} eq "tag") {
6100 print $cgi->a({-href
=> href
(action
=>"tag", hash
=>$tag{'id'})}, "tag");
6105 "<td class=\"link\">" . " | " .
6106 $cgi->a({-href
=> href
(action
=>$tag{'reftype'}, hash
=>$tag{'refid'})}, $tag{'reftype'});
6107 if ($tag{'reftype'} eq "commit") {
6108 print " | " . $cgi->a({-href
=> href
(action
=>"shortlog", hash
=>$tag{'fullname'})}, "shortlog") .
6109 " | " . $cgi->a({-href
=> href
(action
=>"log", hash
=>$tag{'fullname'})}, "log");
6110 } elsif ($tag{'reftype'} eq "blob") {
6111 print " | " . $cgi->a({-href
=> href
(action
=>"blob_plain", hash
=>$tag{'refid'})}, "raw");
6116 if (defined $extra) {
6118 "<td colspan=\"5\">$extra</td>\n" .
6124 sub git_heads_body
{
6125 # uses global variable $project
6126 my ($headlist, $head_at, $from, $to, $extra) = @_;
6127 $from = 0 unless defined $from;
6128 $to = $#{$headlist} if (!defined $to || $#{$headlist} < $to);
6130 print "<table class=\"heads\">\n";
6132 for (my $i = $from; $i <= $to; $i++) {
6133 my $entry = $headlist->[$i];
6135 my $curr = defined $head_at && $ref{'id'} eq $head_at;
6137 print "<tr class=\"dark\">\n";
6139 print "<tr class=\"light\">\n";
6142 print "<td><i>$ref{'age'}</i></td>\n" .
6143 ($curr ? "<td class=\"current_head\">" : "<td>") .
6144 $cgi->a({-href
=> href
(action
=>"shortlog", hash
=>$ref{'fullname'}),
6145 -class => "list name"},esc_html
($ref{'name'})) .
6147 "<td class=\"link\">" .
6148 $cgi->a({-href
=> href
(action
=>"shortlog", hash
=>$ref{'fullname'})}, "shortlog") . " | " .
6149 $cgi->a({-href
=> href
(action
=>"log", hash
=>$ref{'fullname'})}, "log") . " | " .
6150 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$ref{'fullname'}, hash_base
=>$ref{'fullname'})}, "tree") .
6154 if (defined $extra) {
6156 "<td colspan=\"3\">$extra</td>\n" .
6162 # Display a single remote block
6163 sub git_remote_block
{
6164 my ($remote, $rdata, $limit, $head) = @_;
6166 my $heads = $rdata->{'heads'};
6167 my $fetch = $rdata->{'fetch'};
6168 my $push = $rdata->{'push'};
6170 my $urls_table = "<table class=\"projects_list\">\n" ;
6172 if (defined $fetch) {
6173 if ($fetch eq $push) {
6174 $urls_table .= format_repo_url
("URL", $fetch);
6176 $urls_table .= format_repo_url
("Fetch URL", $fetch);
6177 $urls_table .= format_repo_url
("Push URL", $push) if defined $push;
6179 } elsif (defined $push) {
6180 $urls_table .= format_repo_url
("Push URL", $push);
6182 $urls_table .= format_repo_url
("", "No remote URL");
6185 $urls_table .= "</table>\n";
6188 if (defined $limit && $limit < @$heads) {
6189 $dots = $cgi->a({-href
=> href
(action
=>"remotes", hash
=>$remote)}, "...");
6193 git_heads_body
($heads, $head, 0, $limit, $dots);
6196 # Display a list of remote names with the respective fetch and push URLs
6197 sub git_remotes_list
{
6198 my ($remotedata, $limit) = @_;
6199 print "<table class=\"heads\">\n";
6201 my @remotes = sort keys %$remotedata;
6203 my $limited = $limit && $limit < @remotes;
6205 $#remotes = $limit - 1 if $limited;
6207 while (my $remote = shift @remotes) {
6208 my $rdata = $remotedata->{$remote};
6209 my $fetch = $rdata->{'fetch'};
6210 my $push = $rdata->{'push'};
6212 print "<tr class=\"dark\">\n";
6214 print "<tr class=\"light\">\n";
6218 $cgi->a({-href
=> href
(action
=>'remotes', hash
=>$remote),
6219 -class=> "list name"},esc_html
($remote)) .
6221 print "<td class=\"link\">" .
6222 (defined $fetch ? $cgi->a({-href
=> $fetch}, "fetch") : "fetch") .
6224 (defined $push ? $cgi->a({-href
=> $push}, "push") : "push") .
6232 "<td colspan=\"3\">" .
6233 $cgi->a({-href
=> href
(action
=>"remotes")}, "...") .
6234 "</td>\n" . "</tr>\n";
6240 # Display remote heads grouped by remote, unless there are too many
6241 # remotes, in which case we only display the remote names
6242 sub git_remotes_body
{
6243 my ($remotedata, $limit, $head) = @_;
6244 if ($limit and $limit < keys %$remotedata) {
6245 git_remotes_list
($remotedata, $limit);
6247 fill_remote_heads
($remotedata);
6248 while (my ($remote, $rdata) = each %$remotedata) {
6249 git_print_section
({-class=>"remote", -id
=>$remote},
6250 ["remotes", $remote, $remote], sub {
6251 git_remote_block
($remote, $rdata, $limit, $head);
6257 sub git_search_message
{
6261 if ($searchtype eq 'commit') {
6262 $greptype = "--grep=";
6263 } elsif ($searchtype eq 'author') {
6264 $greptype = "--author=";
6265 } elsif ($searchtype eq 'committer') {
6266 $greptype = "--committer=";
6268 $greptype .= $searchtext;
6269 my @commitlist = parse_commits
($hash, 101, (100 * $page), undef,
6270 $greptype, '--regexp-ignore-case',
6271 $search_use_regexp ? '--extended-regexp' : '--fixed-strings');
6273 my $paging_nav = '';
6276 $cgi->a({-href
=> href
(-replay
=>1, page
=>undef)},
6279 $cgi->a({-href
=> href
(-replay
=>1, page
=>$page-1),
6280 -accesskey
=> "p", -title
=> "Alt-p"}, "prev");
6282 $paging_nav .= "first ⋅ prev";
6285 if ($#commitlist >= 100) {
6287 $cgi->a({-href
=> href
(-replay
=>1, page
=>$page+1),
6288 -accesskey
=> "n", -title
=> "Alt-n"}, "next");
6289 $paging_nav .= " ⋅ $next_link";
6291 $paging_nav .= " ⋅ next";
6296 git_print_page_nav
('','', $hash,$co{'tree'},$hash, $paging_nav);
6297 git_print_header_div
('commit', esc_html
($co{'title'}), $hash);
6298 if ($page == 0 && !@commitlist) {
6299 print "<p>No match.</p>\n";
6301 git_search_grep_body
(\
@commitlist, 0, 99, $next_link);
6307 sub git_search_changes
{
6311 open my $fd, '-|', git_cmd
(), '--no-pager', 'log', @diff_opts,
6312 '--pretty=format:%H', '--no-abbrev', '--raw', "-S$searchtext",
6313 ($search_use_regexp ? '--pickaxe-regex' : ())
6314 or die_error
(500, "Open git-log failed");
6318 git_print_page_nav
('','', $hash,$co{'tree'},$hash);
6319 git_print_header_div
('commit', esc_html
($co{'title'}), $hash);
6321 print "<table class=\"pickaxe search\">\n";
6325 while (my $line = <$fd>) {
6329 my %set = parse_difftree_raw_line
($line);
6330 if (defined $set{'commit'}) {
6331 # finish previous commit
6334 "<td class=\"link\">" .
6335 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$co{'id'})},
6338 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$co{'tree'},
6339 hash_base
=>$co{'id'})},
6346 print "<tr class=\"dark\">\n";
6348 print "<tr class=\"light\">\n";
6351 %co = parse_commit
($set{'commit'});
6352 my $author = chop_and_escape_str
($co{'author_name'}, 15, 5);
6353 print "<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n" .
6354 "<td><i>$author</i></td>\n" .
6356 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$co{'id'}),
6357 -class => "list subject"},
6358 chop_and_escape_str
($co{'title'}, 50) . "<br/>");
6359 } elsif (defined $set{'to_id'}) {
6360 next if is_deleted
(\
%set);
6362 print $cgi->a({-href
=> href
(action
=>"blob", hash_base
=>$co{'id'},
6363 hash
=>$set{'to_id'}, file_name
=>$set{'to_file'}),
6365 "<span class=\"match\">" . esc_path
($set{'file'}) . "</span>") .
6371 # finish last commit (warning: repetition!)
6374 "<td class=\"link\">" .
6375 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$co{'id'})},
6378 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$co{'tree'},
6379 hash_base
=>$co{'id'})},
6390 sub git_search_files
{
6394 open my $fd, "-|", git_cmd
(), 'grep', '-n', '-z',
6395 $search_use_regexp ? ('-E', '-i') : '-F',
6396 $searchtext, $co{'tree'}
6397 or die_error
(500, "Open git-grep failed");
6401 git_print_page_nav
('','', $hash,$co{'tree'},$hash);
6402 git_print_header_div
('commit', esc_html
($co{'title'}), $hash);
6404 print "<table class=\"grep_search\">\n";
6409 while (my $line = <$fd>) {
6411 my ($file, $lno, $ltext, $binary);
6412 last if ($matches++ > 1000);
6413 if ($line =~ /^Binary file (.+) matches$/) {
6417 ($file, $lno, $ltext) = split(/\0/, $line, 3);
6418 $file =~ s/^$co{'tree'}://;
6420 if ($file ne $lastfile) {
6421 $lastfile and print "</td></tr>\n";
6423 print "<tr class=\"dark\">\n";
6425 print "<tr class=\"light\">\n";
6427 $file_href = href
(action
=>"blob", hash_base
=>$co{'id'},
6429 print "<td class=\"list\">".
6430 $cgi->a({-href
=> $file_href, -class => "list"}, esc_path
($file));
6431 print "</td><td>\n";
6435 print "<div class=\"binary\">Binary file</div>\n";
6437 $ltext = untabify
($ltext);
6438 if ($ltext =~ m/^(.*)($search_regexp)(.*)$/i) {
6439 $ltext = esc_html
($1, -nbsp
=>1);
6440 $ltext .= '<span class="match">';
6441 $ltext .= esc_html
($2, -nbsp
=>1);
6442 $ltext .= '</span>';
6443 $ltext .= esc_html
($3, -nbsp
=>1);
6445 $ltext = esc_html
($ltext, -nbsp
=>1);
6447 print "<div class=\"pre\">" .
6448 $cgi->a({-href
=> $file_href.'#l'.$lno,
6449 -class => "linenr"}, sprintf('%4i', $lno)) .
6450 ' ' . $ltext . "</div>\n";
6454 print "</td></tr>\n";
6455 if ($matches > 1000) {
6456 print "<div class=\"diff nodifferences\">Too many matches, listing trimmed</div>\n";
6459 print "<div class=\"diff nodifferences\">No matches found</div>\n";
6468 sub git_search_grep_body
{
6469 my ($commitlist, $from, $to, $extra) = @_;
6470 $from = 0 unless defined $from;
6471 $to = $#{$commitlist} if (!defined $to || $#{$commitlist} < $to);
6473 print "<table class=\"commit_search\">\n";
6475 for (my $i = $from; $i <= $to; $i++) {
6476 my %co = %{$commitlist->[$i]};
6480 my $commit = $co{'id'};
6482 print "<tr class=\"dark\">\n";
6484 print "<tr class=\"light\">\n";
6487 print "<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n" .
6488 format_author_html
('td', \
%co, 15, 5) .
6490 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$co{'id'}),
6491 -class => "list subject"},
6492 chop_and_escape_str
($co{'title'}, 50) . "<br/>");
6493 my $comment = $co{'comment'};
6494 foreach my $line (@$comment) {
6495 if ($line =~ m/^(.*?)($search_regexp)(.*)$/i) {
6496 my ($lead, $match, $trail) = ($1, $2, $3);
6497 $match = chop_str
($match, 70, 5, 'center');
6498 my $contextlen = int((80 - length($match))/2);
6499 $contextlen = 30 if ($contextlen > 30);
6500 $lead = chop_str
($lead, $contextlen, 10, 'left');
6501 $trail = chop_str
($trail, $contextlen, 10, 'right');
6503 $lead = esc_html
($lead);
6504 $match = esc_html
($match);
6505 $trail = esc_html
($trail);
6507 print "$lead<span class=\"match\">$match</span>$trail<br />";
6511 "<td class=\"link\">" .
6512 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$co{'id'})}, "commit") .
6514 $cgi->a({-href
=> href
(action
=>"commitdiff", hash
=>$co{'id'})}, "commitdiff") .
6516 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$co{'tree'}, hash_base
=>$co{'id'})}, "tree");
6520 if (defined $extra) {
6522 "<td colspan=\"3\">$extra</td>\n" .
6528 ## ======================================================================
6529 ## ======================================================================
6532 sub git_project_list
{
6533 my $order = $input_params{'order'};
6534 if (defined $order && $order !~ m/none|project|descr|owner|age/) {
6535 die_error
(400, "Unknown order parameter");
6538 my @list = git_get_projects_list
($project_filter, $strict_export);
6540 die_error
(404, "No projects found");
6544 if (defined $home_text && -f
$home_text) {
6545 print "<div class=\"index_include\">\n";
6546 insert_file
($home_text);
6550 git_project_search_form
($searchtext, $search_use_regexp);
6551 git_project_list_body
(\
@list, $order);
6556 my $order = $input_params{'order'};
6557 if (defined $order && $order !~ m/none|project|descr|owner|age/) {
6558 die_error
(400, "Unknown order parameter");
6561 my $filter = $project;
6562 $filter =~ s/\.git$//;
6563 my @list = git_get_projects_list
($filter);
6565 die_error
(404, "No forks found");
6569 git_print_page_nav
('','');
6570 git_print_header_div
('summary', "$project forks");
6571 git_project_list_body
(\
@list, $order);
6575 sub git_project_index
{
6576 my @projects = git_get_projects_list
($project_filter, $strict_export);
6578 die_error
(404, "No projects found");
6582 -type
=> 'text/plain',
6583 -charset
=> 'utf-8',
6584 -content_disposition
=> 'inline; filename="index.aux"');
6586 foreach my $pr (@projects) {
6587 if (!exists $pr->{'owner'}) {
6588 $pr->{'owner'} = git_get_project_owner
("$pr->{'path'}");
6591 my ($path, $owner) = ($pr->{'path'}, $pr->{'owner'});
6592 # quote as in CGI::Util::encode, but keep the slash, and use '+' for ' '
6593 $path =~ s/([^a-zA-Z0-9_.\-\/ ])/sprintf
("%%%02X", ord($1))/eg
;
6594 $owner =~ s/([^a-zA-Z0-9_.\-\/ ])/sprintf
("%%%02X", ord($1))/eg
;
6598 print "$path $owner\n";
6603 my $descr = git_get_project_description
($project) || "none";
6604 my %co = parse_commit
("HEAD");
6605 my %cd = %co ? parse_date
($co{'committer_epoch'}, $co{'committer_tz'}) : ();
6606 my $head = $co{'id'};
6607 my $remote_heads = gitweb_check_feature
('remote_heads');
6609 my $owner = git_get_project_owner
($project);
6611 my $refs = git_get_references
();
6612 # These get_*_list functions return one more to allow us to see if
6613 # there are more ...
6614 my @taglist = git_get_tags_list
(16);
6615 my @headlist = git_get_heads_list
(16);
6616 my %remotedata = $remote_heads ? git_get_remotes_list
() : ();
6618 my $check_forks = gitweb_check_feature
('forks');
6621 # find forks of a project
6622 my $filter = $project;
6623 $filter =~ s/\.git$//;
6624 @forklist = git_get_projects_list
($filter);
6625 # filter out forks of forks
6626 @forklist = filter_forks_from_projects_list
(\
@forklist)
6631 git_print_page_nav
('summary','', $head);
6633 print "<div class=\"title\"> </div>\n";
6634 print "<table class=\"projects_list\">\n" .
6635 "<tr id=\"metadata_desc\"><td>description</td><td>" . esc_html
($descr) . "</td></tr>\n";
6636 if ($owner and not $omit_owner) {
6637 print "<tr id=\"metadata_owner\"><td>owner</td><td>" . esc_html
($owner) . "</td></tr>\n";
6639 if (defined $cd{'rfc2822'}) {
6640 print "<tr id=\"metadata_lchange\"><td>last change</td>" .
6641 "<td>".format_timestamp_html
(\
%cd)."</td></tr>\n";
6644 # use per project git URL list in $projectroot/$project/cloneurl
6645 # or make project git URL from git base URL and project name
6646 my $url_tag = "URL";
6647 my @url_list = git_get_project_url_list
($project);
6648 @url_list = map { "$_/$project" } @git_base_url_list unless @url_list;
6649 foreach my $git_url (@url_list) {
6650 next unless $git_url;
6651 print format_repo_url
($url_tag, $git_url);
6656 my $show_ctags = gitweb_check_feature
('ctags');
6658 my $ctags = git_get_project_ctags
($project);
6660 # without ability to add tags, don't show if there are none
6661 my $cloud = git_populate_project_tagcloud
($ctags);
6662 print "<tr id=\"metadata_ctags\">" .
6663 "<td>content tags</td>" .
6664 "<td>".git_show_project_tagcloud
($cloud, 48)."</td>" .
6671 # If XSS prevention is on, we don't include README.html.
6672 # TODO: Allow a readme in some safe format.
6673 if (!$prevent_xss && -s
"$projectroot/$project/README.html") {
6674 print "<div class=\"title\">readme</div>\n" .
6675 "<div class=\"readme\">\n";
6676 insert_file
("$projectroot/$project/README.html");
6677 print "\n</div>\n"; # class="readme"
6680 # we need to request one more than 16 (0..15) to check if
6682 my @commitlist = $head ? parse_commits
($head, 17) : ();
6684 git_print_header_div
('shortlog');
6685 git_shortlog_body
(\
@commitlist, 0, 15, $refs,
6686 $#commitlist <= 15 ? undef :
6687 $cgi->a({-href
=> href
(action
=>"shortlog")}, "..."));
6691 git_print_header_div
('tags');
6692 git_tags_body
(\
@taglist, 0, 15,
6693 $#taglist <= 15 ? undef :
6694 $cgi->a({-href
=> href
(action
=>"tags")}, "..."));
6698 git_print_header_div
('heads');
6699 git_heads_body
(\
@headlist, $head, 0, 15,
6700 $#headlist <= 15 ? undef :
6701 $cgi->a({-href
=> href
(action
=>"heads")}, "..."));
6705 git_print_header_div
('remotes');
6706 git_remotes_body
(\
%remotedata, 15, $head);
6710 git_print_header_div
('forks');
6711 git_project_list_body
(\
@forklist, 'age', 0, 15,
6712 $#forklist <= 15 ? undef :
6713 $cgi->a({-href
=> href
(action
=>"forks")}, "..."),
6721 my %tag = parse_tag
($hash);
6724 die_error
(404, "Unknown tag object");
6727 my $head = git_get_head_hash
($project);
6729 git_print_page_nav
('','', $head,undef,$head);
6730 git_print_header_div
('commit', esc_html
($tag{'name'}), $hash);
6731 print "<div class=\"title_text\">\n" .
6732 "<table class=\"object_header\">\n" .
6734 "<td>object</td>\n" .
6735 "<td>" . $cgi->a({-class => "list", -href
=> href
(action
=>$tag{'type'}, hash
=>$tag{'object'})},
6736 $tag{'object'}) . "</td>\n" .
6737 "<td class=\"link\">" . $cgi->a({-href
=> href
(action
=>$tag{'type'}, hash
=>$tag{'object'})},
6738 $tag{'type'}) . "</td>\n" .
6740 if (defined($tag{'author'})) {
6741 git_print_authorship_rows
(\
%tag, 'author');
6743 print "</table>\n\n" .
6745 print "<div class=\"page_body\">";
6746 my $comment = $tag{'comment'};
6747 foreach my $line (@$comment) {
6749 print esc_html
($line, -nbsp
=>1) . "<br/>\n";
6755 sub git_blame_common
{
6756 my $format = shift || 'porcelain';
6757 if ($format eq 'porcelain' && $input_params{'javascript'}) {
6758 $format = 'incremental';
6759 $action = 'blame_incremental'; # for page title etc
6763 gitweb_check_feature
('blame')
6764 or die_error
(403, "Blame view not allowed");
6767 die_error
(400, "No file name given") unless $file_name;
6768 $hash_base ||= git_get_head_hash
($project);
6769 die_error
(404, "Couldn't find base commit") unless $hash_base;
6770 my %co = parse_commit
($hash_base)
6771 or die_error
(404, "Commit not found");
6773 if (!defined $hash) {
6774 $hash = git_get_hash_by_path
($hash_base, $file_name, "blob")
6775 or die_error
(404, "Error looking up file");
6777 $ftype = git_get_type
($hash);
6778 if ($ftype !~ "blob") {
6779 die_error
(400, "Object is not a blob");
6784 if ($format eq 'incremental') {
6785 # get file contents (as base)
6786 open $fd, "-|", git_cmd
(), 'cat-file', 'blob', $hash
6787 or die_error
(500, "Open git-cat-file failed");
6788 } elsif ($format eq 'data') {
6789 # run git-blame --incremental
6790 open $fd, "-|", git_cmd
(), "blame", "--incremental",
6791 $hash_base, "--", $file_name
6792 or die_error
(500, "Open git-blame --incremental failed");
6794 # run git-blame --porcelain
6795 open $fd, "-|", git_cmd
(), "blame", '-p',
6796 $hash_base, '--', $file_name
6797 or die_error
(500, "Open git-blame --porcelain failed");
6799 binmode $fd, ':utf8';
6801 # incremental blame data returns early
6802 if ($format eq 'data') {
6804 -type
=>"text/plain", -charset
=> "utf-8",
6805 -status
=> "200 OK");
6806 local $| = 1; # output autoflush
6807 while (my $line = <$fd>) {
6808 print to_utf8
($line);
6811 or print "ERROR $!\n";
6814 if (defined $t0 && gitweb_check_feature
('timed')) {
6816 tv_interval
($t0, [ gettimeofday
() ]).
6817 ' '.$number_of_git_cmds;
6827 $cgi->a({-href
=> href
(action
=>"blob", -replay
=>1)},
6830 if ($format eq 'incremental') {
6832 $cgi->a({-href
=> href
(action
=>"blame", javascript
=>0, -replay
=>1)},
6833 "blame") . " (non-incremental)";
6836 $cgi->a({-href
=> href
(action
=>"blame_incremental", -replay
=>1)},
6837 "blame") . " (incremental)";
6841 $cgi->a({-href
=> href
(action
=>"history", -replay
=>1)},
6844 $cgi->a({-href
=> href
(action
=>$action, file_name
=>$file_name)},
6846 git_print_page_nav
('','', $hash_base,$co{'tree'},$hash_base, $formats_nav);
6847 git_print_header_div
('commit', esc_html
($co{'title'}), $hash_base);
6848 git_print_page_path
($file_name, $ftype, $hash_base);
6851 if ($format eq 'incremental') {
6852 print "<noscript>\n<div class=\"error\"><center><b>\n".
6853 "This page requires JavaScript to run.\n Use ".
6854 $cgi->a({-href
=> href
(action
=>'blame',javascript
=>0,-replay
=>1)},
6857 "</b></center></div>\n</noscript>\n";
6859 print qq
!<div id
="progress_bar" style
="width: 100%; background-color: yellow"></div
>\n!;
6862 print qq
!<div
class="page_body">\n!;
6863 print qq
!<div id
="progress_info">... / ...</div
>\n!
6864 if ($format eq 'incremental');
6865 print qq
!<table id
="blame_table" class="blame" width
="100%">\n!.
6866 #qq!<col width="5.5em" /><col width="2.5em" /><col width="*" />\n!.
6868 qq
!<tr
><th
>Commit
</th><th>Line</th
><th
>Data
</th></tr
>\n!.
6872 my @rev_color = qw(light dark);
6873 my $num_colors = scalar(@rev_color);
6874 my $current_color = 0;
6876 if ($format eq 'incremental') {
6877 my $color_class = $rev_color[$current_color];
6882 while (my $line = <$fd>) {
6886 print qq
!<tr id
="l$linenr" class="$color_class">!.
6887 qq
!<td
class="sha1"><a href
=""> </a></td
>!.
6888 qq
!<td
class="linenr">!.
6889 qq
!<a
class="linenr" href
="">$linenr</a></td
>!;
6890 print qq
!<td
class="pre">! . esc_html
($line) . "</td>\n";
6894 } else { # porcelain, i.e. ordinary blame
6895 my %metainfo = (); # saves information about commits
6899 while (my $line = <$fd>) {
6901 # the header: <SHA-1> <src lineno> <dst lineno> [<lines in group>]
6902 # no <lines in group> for subsequent lines in group of lines
6903 my ($full_rev, $orig_lineno, $lineno, $group_size) =
6904 ($line =~ /^($oid_regex) (\d+) (\d+)(?: (\d+))?$/);
6905 if (!exists $metainfo{$full_rev}) {
6906 $metainfo{$full_rev} = { 'nprevious' => 0 };
6908 my $meta = $metainfo{$full_rev};
6910 while ($data = <$fd>) {
6912 last if ($data =~ s/^\t//); # contents of line
6913 if ($data =~ /^(\S+)(?: (.*))?$/) {
6914 $meta->{$1} = $2 unless exists $meta->{$1};
6916 if ($data =~ /^previous /) {
6917 $meta->{'nprevious'}++;
6920 my $short_rev = substr($full_rev, 0, 8);
6921 my $author = $meta->{'author'};
6923 parse_date
($meta->{'author-time'}, $meta->{'author-tz'});
6924 my $date = $date{'iso-tz'};
6926 $current_color = ($current_color + 1) % $num_colors;
6928 my $tr_class = $rev_color[$current_color];
6929 $tr_class .= ' boundary' if (exists $meta->{'boundary'});
6930 $tr_class .= ' no-previous' if ($meta->{'nprevious'} == 0);
6931 $tr_class .= ' multiple-previous' if ($meta->{'nprevious'} > 1);
6932 print "<tr id=\"l$lineno\" class=\"$tr_class\">\n";
6934 print "<td class=\"sha1\"";
6935 print " title=\"". esc_html
($author) . ", $date\"";
6936 print " rowspan=\"$group_size\"" if ($group_size > 1);
6938 print $cgi->a({-href
=> href
(action
=>"commit",
6940 file_name
=>$file_name)},
6941 esc_html
($short_rev));
6942 if ($group_size >= 2) {
6943 my @author_initials = ($author =~ /\b([[:upper:]])\B/g);
6944 if (@author_initials) {
6946 esc_html
(join('', @author_initials));
6952 # 'previous' <sha1 of parent commit> <filename at commit>
6953 if (exists $meta->{'previous'} &&
6954 $meta->{'previous'} =~ /^($oid_regex) (.*)$/) {
6955 $meta->{'parent'} = $1;
6956 $meta->{'file_parent'} = unquote
($2);
6959 exists($meta->{'parent'}) ?
6960 $meta->{'parent'} : $full_rev;
6961 my $linenr_filename =
6962 exists($meta->{'file_parent'}) ?
6963 $meta->{'file_parent'} : unquote
($meta->{'filename'});
6964 my $blamed = href
(action
=> 'blame',
6965 file_name
=> $linenr_filename,
6966 hash_base
=> $linenr_commit);
6967 print "<td class=\"linenr\">";
6968 print $cgi->a({ -href
=> "$blamed#l$orig_lineno",
6969 -class => "linenr" },
6972 print "<td class=\"pre\">" . esc_html
($data) . "</td>\n";
6980 "</table>\n"; # class="blame"
6981 print "</div>\n"; # class="blame_body"
6983 or print "Reading blob failed\n";
6992 sub git_blame_incremental
{
6993 git_blame_common
('incremental');
6996 sub git_blame_data
{
6997 git_blame_common
('data');
7001 my $head = git_get_head_hash
($project);
7003 git_print_page_nav
('','', $head,undef,$head,format_ref_views
('tags'));
7004 git_print_header_div
('summary', $project);
7006 my @tagslist = git_get_tags_list
();
7008 git_tags_body
(\
@tagslist);
7014 my $head = git_get_head_hash
($project);
7016 git_print_page_nav
('','', $head,undef,$head,format_ref_views
('heads'));
7017 git_print_header_div
('summary', $project);
7019 my @headslist = git_get_heads_list
();
7021 git_heads_body
(\
@headslist, $head);
7026 # used both for single remote view and for list of all the remotes
7028 gitweb_check_feature
('remote_heads')
7029 or die_error
(403, "Remote heads view is disabled");
7031 my $head = git_get_head_hash
($project);
7032 my $remote = $input_params{'hash'};
7034 my $remotedata = git_get_remotes_list
($remote);
7035 die_error
(500, "Unable to get remote information") unless defined $remotedata;
7037 unless (%$remotedata) {
7038 die_error
(404, defined $remote ?
7039 "Remote $remote not found" :
7040 "No remotes found");
7043 git_header_html
(undef, undef, -action_extra
=> $remote);
7044 git_print_page_nav
('', '', $head, undef, $head,
7045 format_ref_views
($remote ? '' : 'remotes'));
7047 fill_remote_heads
($remotedata);
7048 if (defined $remote) {
7049 git_print_header_div
('remotes', "$remote remote for $project");
7050 git_remote_block
($remote, $remotedata->{$remote}, undef, $head);
7052 git_print_header_div
('summary', "$project remotes");
7053 git_remotes_body
($remotedata, undef, $head);
7059 sub git_blob_plain
{
7063 if (!defined $hash) {
7064 if (defined $file_name) {
7065 my $base = $hash_base || git_get_head_hash
($project);
7066 $hash = git_get_hash_by_path
($base, $file_name, "blob")
7067 or die_error
(404, "Cannot find file");
7069 die_error
(400, "No file name defined");
7071 } elsif ($hash =~ m/^$oid_regex$/) {
7072 # blobs defined by non-textual hash id's can be cached
7076 open my $fd, "-|", git_cmd
(), "cat-file", "blob", $hash
7077 or die_error
(500, "Open git-cat-file blob '$hash' failed");
7079 # content-type (can include charset)
7080 $type = blob_contenttype
($fd, $file_name, $type);
7082 # "save as" filename, even when no $file_name is given
7083 my $save_as = "$hash";
7084 if (defined $file_name) {
7085 $save_as = $file_name;
7086 } elsif ($type =~ m/^text\//) {
7090 # With XSS prevention on, blobs of all types except a few known safe
7091 # ones are served with "Content-Disposition: attachment" to make sure
7092 # they don't run in our security domain. For certain image types,
7093 # blob view writes an <img> tag referring to blob_plain view, and we
7094 # want to be sure not to break that by serving the image as an
7095 # attachment (though Firefox 3 doesn't seem to care).
7096 my $sandbox = $prevent_xss &&
7097 $type !~ m!^(?:text/[a-z]+|image/(?:gif|png|jpeg))(?:[ ;]|$)!;
7099 # serve text/* as text/plain
7101 ($type =~ m!^text/[a-z]+\b(.*)$! ||
7102 ($type =~ m!^[a-z]+/[a-z]\+xml\b(.*)$! && -T
$fd))) {
7104 $rest = defined $rest ? $rest : '';
7105 $type = "text/plain$rest";
7110 -expires
=> $expires,
7111 -content_disposition
=>
7112 ($sandbox ? 'attachment' : 'inline')
7113 . '; filename="' . $save_as . '"');
7115 local *FCGI
::Stream
::PRINT
= $FCGI_Stream_PRINT_raw;
7116 binmode STDOUT
, ':raw';
7118 binmode STDOUT
, ':utf8'; # as set at the beginning of gitweb.cgi
7125 if (!defined $hash) {
7126 if (defined $file_name) {
7127 my $base = $hash_base || git_get_head_hash
($project);
7128 $hash = git_get_hash_by_path
($base, $file_name, "blob")
7129 or die_error
(404, "Cannot find file");
7131 die_error
(400, "No file name defined");
7133 } elsif ($hash =~ m/^$oid_regex$/) {
7134 # blobs defined by non-textual hash id's can be cached
7138 my $have_blame = gitweb_check_feature
('blame');
7139 open my $fd, "-|", git_cmd
(), "cat-file", "blob", $hash
7140 or die_error
(500, "Couldn't cat $file_name, $hash");
7141 my $mimetype = blob_mimetype
($fd, $file_name);
7142 # use 'blob_plain' (aka 'raw') view for files that cannot be displayed
7143 if ($mimetype !~ m!^(?:text/|image/(?:gif|png|jpeg)$)! && -B
$fd) {
7145 return git_blob_plain
($mimetype);
7147 # we can have blame only for text/* mimetype
7148 $have_blame &&= ($mimetype =~ m!^text/!);
7150 my $highlight = gitweb_check_feature
('highlight');
7151 my $syntax = guess_file_syntax
($highlight, $file_name);
7152 $fd = run_highlighter
($fd, $highlight, $syntax);
7154 git_header_html
(undef, $expires);
7155 my $formats_nav = '';
7156 if (defined $hash_base && (my %co = parse_commit
($hash_base))) {
7157 if (defined $file_name) {
7160 $cgi->a({-href
=> href
(action
=>"blame", -replay
=>1)},
7165 $cgi->a({-href
=> href
(action
=>"history", -replay
=>1)},
7168 $cgi->a({-href
=> href
(action
=>"blob_plain", -replay
=>1)},
7171 $cgi->a({-href
=> href
(action
=>"blob",
7172 hash_base
=>"HEAD", file_name
=>$file_name)},
7176 $cgi->a({-href
=> href
(action
=>"blob_plain", -replay
=>1)},
7179 git_print_page_nav
('','', $hash_base,$co{'tree'},$hash_base, $formats_nav);
7180 git_print_header_div
('commit', esc_html
($co{'title'}), $hash_base);
7182 print "<div class=\"page_nav\">\n" .
7183 "<br/><br/></div>\n" .
7184 "<div class=\"title\">".esc_html
($hash)."</div>\n";
7186 git_print_page_path
($file_name, "blob", $hash_base);
7187 print "<div class=\"page_body\">\n";
7188 if ($mimetype =~ m!^image/!) {
7189 print qq
!<img
class="blob" type
="!.esc_attr($mimetype).qq!"!;
7191 print qq
! alt
="!.esc_attr($file_name).qq!" title
="!.esc_attr($file_name).qq!"!;
7194 esc_attr(href(action=>"blob_plain
", hash=>$hash,
7195 hash_base=>$hash_base, file_name=>$file_name)) .
7199 while (my $line = <$fd>) {
7202 $line = untabify
($line);
7203 printf qq
!<div
class="pre"><a id
="l%i" href
="%s#l%i" class="linenr">%4i</a> %s</div
>\n!,
7204 $nr, esc_attr
(href
(-replay
=> 1)), $nr, $nr,
7205 $highlight ? sanitize
($line) : esc_html
($line, -nbsp
=>1);
7209 or print "Reading blob failed.\n";
7215 if (!defined $hash_base) {
7216 $hash_base = "HEAD";
7218 if (!defined $hash) {
7219 if (defined $file_name) {
7220 $hash = git_get_hash_by_path
($hash_base, $file_name, "tree");
7225 die_error
(404, "No such tree") unless defined($hash);
7227 my $show_sizes = gitweb_check_feature
('show-sizes');
7228 my $have_blame = gitweb_check_feature
('blame');
7233 open my $fd, "-|", git_cmd
(), "ls-tree", '-z',
7234 ($show_sizes ? '-l' : ()), @extra_options, $hash
7235 or die_error
(500, "Open git-ls-tree failed");
7236 @entries = map { chomp; $_ } <$fd>;
7238 or die_error
(404, "Reading tree failed");
7241 my $refs = git_get_references
();
7242 my $ref = format_ref_marker
($refs, $hash_base);
7245 if (defined $hash_base && (my %co = parse_commit
($hash_base))) {
7247 if (defined $file_name) {
7249 $cgi->a({-href
=> href
(action
=>"history", -replay
=>1)},
7251 $cgi->a({-href
=> href
(action
=>"tree",
7252 hash_base
=>"HEAD", file_name
=>$file_name)},
7255 my $snapshot_links = format_snapshot_links
($hash);
7256 if (defined $snapshot_links) {
7257 # FIXME: Should be available when we have no hash base as well.
7258 push @views_nav, $snapshot_links;
7260 git_print_page_nav
('tree','', $hash_base, undef, undef,
7261 join(' | ', @views_nav));
7262 git_print_header_div
('commit', esc_html
($co{'title'}) . $ref, $hash_base);
7265 print "<div class=\"page_nav\">\n";
7266 print "<br/><br/></div>\n";
7267 print "<div class=\"title\">".esc_html
($hash)."</div>\n";
7269 if (defined $file_name) {
7270 $basedir = $file_name;
7271 if ($basedir ne '' && substr($basedir, -1) ne '/') {
7274 git_print_page_path
($file_name, 'tree', $hash_base);
7276 print "<div class=\"page_body\">\n";
7277 print "<table class=\"tree\">\n";
7279 # '..' (top directory) link if possible
7280 if (defined $hash_base &&
7281 defined $file_name && $file_name =~ m![^/]+$!) {
7283 print "<tr class=\"dark\">\n";
7285 print "<tr class=\"light\">\n";
7289 my $up = $file_name;
7290 $up =~ s!/?[^/]+$!!;
7291 undef $up unless $up;
7292 # based on git_print_tree_entry
7293 print '<td class="mode">' . mode_str
('040000') . "</td>\n";
7294 print '<td class="size"> </td>'."\n" if $show_sizes;
7295 print '<td class="list">';
7296 print $cgi->a({-href
=> href
(action
=>"tree",
7297 hash_base
=>$hash_base,
7301 print "<td class=\"link\"></td>\n";
7305 foreach my $line (@entries) {
7306 my %t = parse_ls_tree_line
($line, -z
=> 1, -l
=> $show_sizes);
7309 print "<tr class=\"dark\">\n";
7311 print "<tr class=\"light\">\n";
7315 git_print_tree_entry
(\
%t, $basedir, $hash_base, $have_blame);
7319 print "</table>\n" .
7324 sub sanitize_for_filename
{
7328 $name =~ s/[^[:alnum:]_.-]//g;
7334 my ($project, $hash) = @_;
7336 # path/to/project.git -> project
7337 # path/to/project/.git -> project
7338 my $name = to_utf8
($project);
7339 $name =~ s
,([^/])/*\
.git
$,$1,;
7340 $name = sanitize_for_filename
(basename
($name));
7343 if ($hash =~ /^[0-9a-fA-F]+$/) {
7344 # shorten SHA-1 hash
7345 my $full_hash = git_get_full_hash
($project, $hash);
7346 if ($full_hash =~ /^$hash/ && length($hash) > 7) {
7347 $ver = git_get_short_hash
($project, $hash);
7349 } elsif ($hash =~ m!^refs/tags/(.*)$!) {
7350 # tags don't need shortened SHA-1 hash
7353 # branches and other need shortened SHA-1 hash
7354 my $strip_refs = join '|', map { quotemeta } get_branch_refs
();
7355 if ($hash =~ m!^refs/($strip_refs|remotes)/(.*)$!) {
7356 my $ref_dir = (defined $1) ? $1 : '';
7359 $ref_dir = sanitize_for_filename
($ref_dir);
7360 # for refs neither in heads nor remotes we want to
7361 # add a ref dir to archive name
7362 if ($ref_dir ne '' and $ref_dir ne 'heads' and $ref_dir ne 'remotes') {
7363 $ver = $ref_dir . '-' . $ver;
7366 $ver .= '-' . git_get_short_hash
($project, $hash);
7368 # special case of sanitization for filename - we change
7369 # slashes to dots instead of dashes
7370 # in case of hierarchical branch names
7372 $ver =~ s/[^[:alnum:]_.-]//g;
7374 # name = project-version_string
7375 $name = "$name-$ver";
7377 return wantarray ? ($name, $name) : $name;
7380 sub exit_if_unmodified_since
{
7381 my ($latest_epoch) = @_;
7384 my $if_modified = $cgi->http('IF_MODIFIED_SINCE');
7385 if (defined $if_modified) {
7387 if (eval { require HTTP
::Date
; 1; }) {
7388 $since = HTTP
::Date
::str2time
($if_modified);
7389 } elsif (eval { require Time
::ParseDate
; 1; }) {
7390 $since = Time
::ParseDate
::parsedate
($if_modified, GMT
=> 1);
7392 if (defined $since && $latest_epoch <= $since) {
7393 my %latest_date = parse_date
($latest_epoch);
7395 -last_modified
=> $latest_date{'rfc2822'},
7396 -status
=> '304 Not Modified');
7403 my $format = $input_params{'snapshot_format'};
7404 if (!@snapshot_fmts) {
7405 die_error
(403, "Snapshots not allowed");
7407 # default to first supported snapshot format
7408 $format ||= $snapshot_fmts[0];
7409 if ($format !~ m/^[a-z0-9]+$/) {
7410 die_error
(400, "Invalid snapshot format parameter");
7411 } elsif (!exists($known_snapshot_formats{$format})) {
7412 die_error
(400, "Unknown snapshot format");
7413 } elsif ($known_snapshot_formats{$format}{'disabled'}) {
7414 die_error
(403, "Snapshot format not allowed");
7415 } elsif (!grep($_ eq $format, @snapshot_fmts)) {
7416 die_error
(403, "Unsupported snapshot format");
7419 my $type = git_get_type
("$hash^{}");
7421 die_error
(404, 'Object does not exist');
7422 } elsif ($type eq 'blob') {
7423 die_error
(400, 'Object is not a tree-ish');
7426 my ($name, $prefix) = snapshot_name
($project, $hash);
7427 my $filename = "$name$known_snapshot_formats{$format}{'suffix'}";
7429 my %co = parse_commit
($hash);
7430 exit_if_unmodified_since
($co{'committer_epoch'}) if %co;
7432 my $cmd = quote_command
(
7433 git_cmd
(), 'archive',
7434 "--format=$known_snapshot_formats{$format}{'format'}",
7435 "--prefix=$prefix/", $hash);
7436 if (exists $known_snapshot_formats{$format}{'compressor'}) {
7437 $cmd .= ' | ' . quote_command
(@{$known_snapshot_formats{$format}{'compressor'}});
7440 $filename =~ s/(["\\])/\\$1/g;
7443 %latest_date = parse_date
($co{'committer_epoch'}, $co{'committer_tz'});
7447 -type
=> $known_snapshot_formats{$format}{'type'},
7448 -content_disposition
=> 'inline; filename="' . $filename . '"',
7449 %co ? (-last_modified
=> $latest_date{'rfc2822'}) : (),
7450 -status
=> '200 OK');
7452 open my $fd, "-|", $cmd
7453 or die_error
(500, "Execute git-archive failed");
7454 local *FCGI
::Stream
::PRINT
= $FCGI_Stream_PRINT_raw;
7455 binmode STDOUT
, ':raw';
7457 binmode STDOUT
, ':utf8'; # as set at the beginning of gitweb.cgi
7461 sub git_log_generic
{
7462 my ($fmt_name, $body_subr, $base, $parent, $file_name, $file_hash) = @_;
7464 my $head = git_get_head_hash
($project);
7465 if (!defined $base) {
7468 if (!defined $page) {
7471 my $refs = git_get_references
();
7473 my $commit_hash = $base;
7474 if (defined $parent) {
7475 $commit_hash = "$parent..$base";
7478 parse_commits
($commit_hash, 101, (100 * $page),
7479 defined $file_name ? ($file_name, "--full-history") : ());
7482 if (!defined $file_hash && defined $file_name) {
7483 # some commits could have deleted file in question,
7484 # and not have it in tree, but one of them has to have it
7485 for (my $i = 0; $i < @commitlist; $i++) {
7486 $file_hash = git_get_hash_by_path
($commitlist[$i]{'id'}, $file_name);
7487 last if defined $file_hash;
7490 if (defined $file_hash) {
7491 $ftype = git_get_type
($file_hash);
7493 if (defined $file_name && !defined $ftype) {
7494 die_error
(500, "Unknown type of object");
7497 if (defined $file_name) {
7498 %co = parse_commit
($base)
7499 or die_error
(404, "Unknown commit object");
7503 my $paging_nav = format_paging_nav
($fmt_name, $page, $#commitlist >= 100);
7505 if ($#commitlist >= 100) {
7507 $cgi->a({-href
=> href
(-replay
=>1, page
=>$page+1),
7508 -accesskey
=> "n", -title
=> "Alt-n"}, "next");
7510 my $patch_max = gitweb_get_feature
('patches');
7511 if ($patch_max && !defined $file_name &&
7512 !gitweb_check_feature
('email-privacy')) {
7513 if ($patch_max < 0 || @commitlist <= $patch_max) {
7514 $paging_nav .= " ⋅ " .
7515 $cgi->a({-href
=> href
(action
=>"patches", -replay
=>1)},
7521 git_print_page_nav
($fmt_name,'', $hash,$hash,$hash, $paging_nav);
7522 if (defined $file_name) {
7523 git_print_header_div
('commit', esc_html
($co{'title'}), $base);
7525 git_print_header_div
('summary', $project)
7527 git_print_page_path
($file_name, $ftype, $hash_base)
7528 if (defined $file_name);
7530 $body_subr->(\
@commitlist, 0, 99, $refs, $next_link,
7531 $file_name, $file_hash, $ftype);
7537 git_log_generic
('log', \
&git_log_body
,
7538 $hash, $hash_parent);
7542 $hash ||= $hash_base || "HEAD";
7543 my %co = parse_commit
($hash)
7544 or die_error
(404, "Unknown commit object");
7546 my $parent = $co{'parent'};
7547 my $parents = $co{'parents'}; # listref
7549 # we need to prepare $formats_nav before any parameter munging
7551 if (!defined $parent) {
7553 $formats_nav .= '(initial)';
7554 } elsif (@$parents == 1) {
7555 # single parent commit
7558 $cgi->a({-href
=> href
(action
=>"commit",
7560 esc_html
(substr($parent, 0, 7))) .
7567 $cgi->a({-href
=> href
(action
=>"commit",
7569 esc_html
(substr($_, 0, 7)));
7573 if (gitweb_check_feature
('patches') && @$parents <= 1 &&
7574 !gitweb_check_feature
('email-privacy')) {
7575 $formats_nav .= " | " .
7576 $cgi->a({-href
=> href
(action
=>"patch", -replay
=>1)},
7580 if (!defined $parent) {
7584 open my $fd, "-|", git_cmd
(), "diff-tree", '-r', "--no-commit-id",
7586 (@$parents <= 1 ? $parent : '-c'),
7588 or die_error
(500, "Open git-diff-tree failed");
7589 @difftree = map { chomp; $_ } <$fd>;
7590 close $fd or die_error
(404, "Reading git-diff-tree failed");
7592 # non-textual hash id's can be cached
7594 if ($hash =~ m/^$oid_regex$/) {
7597 my $refs = git_get_references
();
7598 my $ref = format_ref_marker
($refs, $co{'id'});
7600 git_header_html
(undef, $expires);
7601 git_print_page_nav
('commit', '',
7602 $hash, $co{'tree'}, $hash,
7605 if (defined $co{'parent'}) {
7606 git_print_header_div
('commitdiff', esc_html
($co{'title'}) . $ref, $hash);
7608 git_print_header_div
('tree', esc_html
($co{'title'}) . $ref, $co{'tree'}, $hash);
7610 print "<div class=\"title_text\">\n" .
7611 "<table class=\"object_header\">\n";
7612 git_print_authorship_rows
(\
%co);
7613 print "<tr><td>commit</td><td class=\"sha1\">$co{'id'}</td></tr>\n";
7616 "<td class=\"sha1\">" .
7617 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$co{'tree'}, hash_base
=>$hash),
7618 class => "list"}, $co{'tree'}) .
7620 "<td class=\"link\">" .
7621 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$co{'tree'}, hash_base
=>$hash)},
7623 my $snapshot_links = format_snapshot_links
($hash);
7624 if (defined $snapshot_links) {
7625 print " | " . $snapshot_links;
7630 foreach my $par (@$parents) {
7633 "<td class=\"sha1\">" .
7634 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$par),
7635 class => "list"}, $par) .
7637 "<td class=\"link\">" .
7638 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$par)}, "commit") .
7640 $cgi->a({-href
=> href
(action
=>"commitdiff", hash
=>$hash, hash_parent
=>$par)}, "diff") .
7647 print "<div class=\"page_body\">\n";
7648 git_print_log
($co{'comment'});
7651 git_difftree_body
(\
@difftree, $hash, @$parents);
7657 # object is defined by:
7658 # - hash or hash_base alone
7659 # - hash_base and file_name
7662 # - hash or hash_base alone
7663 if ($hash || ($hash_base && !defined $file_name)) {
7664 my $object_id = $hash || $hash_base;
7666 open my $fd, "-|", quote_command
(
7667 git_cmd
(), 'cat-file', '-t', $object_id) . ' 2> /dev/null'
7668 or die_error
(404, "Object does not exist");
7670 defined $type && chomp $type;
7672 or die_error
(404, "Object does not exist");
7674 # - hash_base and file_name
7675 } elsif ($hash_base && defined $file_name) {
7676 $file_name =~ s
,/+$,,;
7678 system(git_cmd
(), "cat-file", '-e', $hash_base) == 0
7679 or die_error
(404, "Base object does not exist");
7681 # here errors should not happen
7682 open my $fd, "-|", git_cmd
(), "ls-tree", $hash_base, "--", $file_name
7683 or die_error
(500, "Open git-ls-tree failed");
7687 #'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'
7688 unless ($line && $line =~ m/^([0-9]+) (.+) ($oid_regex)\t/) {
7689 die_error
(404, "File or directory for given base does not exist");
7694 die_error
(400, "Not enough information to find object");
7697 print $cgi->redirect(-uri
=> href
(action
=>$type, -full
=>1,
7698 hash
=>$hash, hash_base
=>$hash_base,
7699 file_name
=>$file_name),
7700 -status
=> '302 Found');
7704 my $format = shift || 'html';
7705 my $diff_style = $input_params{'diff_style'} || 'inline';
7712 # preparing $fd and %diffinfo for git_patchset_body
7714 if (defined $hash_base && defined $hash_parent_base) {
7715 if (defined $file_name) {
7717 open $fd, "-|", git_cmd
(), "diff-tree", '-r', @diff_opts,
7718 $hash_parent_base, $hash_base,
7719 "--", (defined $file_parent ? $file_parent : ()), $file_name
7720 or die_error
(500, "Open git-diff-tree failed");
7721 @difftree = map { chomp; $_ } <$fd>;
7723 or die_error
(404, "Reading git-diff-tree failed");
7725 or die_error
(404, "Blob diff not found");
7727 } elsif (defined $hash &&
7728 $hash =~ $oid_regex) {
7729 # try to find filename from $hash
7731 # read filtered raw output
7732 open $fd, "-|", git_cmd
(), "diff-tree", '-r', @diff_opts,
7733 $hash_parent_base, $hash_base, "--"
7734 or die_error
(500, "Open git-diff-tree failed");
7736 # ':100644 100644 03b21826... 3b93d5e7... M ls-files.c'
7738 grep { /^:[0-7]{6} [0-7]{6} $oid_regex $hash/ }
7739 map { chomp; $_ } <$fd>;
7741 or die_error
(404, "Reading git-diff-tree failed");
7743 or die_error
(404, "Blob diff not found");
7746 die_error
(400, "Missing one of the blob diff parameters");
7749 if (@difftree > 1) {
7750 die_error
(400, "Ambiguous blob diff specification");
7753 %diffinfo = parse_difftree_raw_line
($difftree[0]);
7754 $file_parent ||= $diffinfo{'from_file'} || $file_name;
7755 $file_name ||= $diffinfo{'to_file'};
7757 $hash_parent ||= $diffinfo{'from_id'};
7758 $hash ||= $diffinfo{'to_id'};
7760 # non-textual hash id's can be cached
7761 if ($hash_base =~ m/^$oid_regex$/ &&
7762 $hash_parent_base =~ m/^$oid_regex$/) {
7767 open $fd, "-|", git_cmd
(), "diff-tree", '-r', @diff_opts,
7768 '-p', ($format eq 'html' ? "--full-index" : ()),
7769 $hash_parent_base, $hash_base,
7770 "--", (defined $file_parent ? $file_parent : ()), $file_name
7771 or die_error
(500, "Open git-diff-tree failed");
7774 # old/legacy style URI -- not generated anymore since 1.4.3.
7776 die_error
('404 Not Found', "Missing one of the blob diff parameters")
7780 if ($format eq 'html') {
7782 $cgi->a({-href
=> href
(action
=>"blobdiff_plain", -replay
=>1)},
7784 $formats_nav .= diff_style_nav
($diff_style);
7785 git_header_html
(undef, $expires);
7786 if (defined $hash_base && (my %co = parse_commit
($hash_base))) {
7787 git_print_page_nav
('','', $hash_base,$co{'tree'},$hash_base, $formats_nav);
7788 git_print_header_div
('commit', esc_html
($co{'title'}), $hash_base);
7790 print "<div class=\"page_nav\"><br/>$formats_nav<br/></div>\n";
7791 print "<div class=\"title\">".esc_html
("$hash vs $hash_parent")."</div>\n";
7793 if (defined $file_name) {
7794 git_print_page_path
($file_name, "blob", $hash_base);
7796 print "<div class=\"page_path\"></div>\n";
7799 } elsif ($format eq 'plain') {
7801 -type
=> 'text/plain',
7802 -charset
=> 'utf-8',
7803 -expires
=> $expires,
7804 -content_disposition
=> 'inline; filename="' . "$file_name" . '.patch"');
7806 print "X-Git-Url: " . $cgi->self_url() . "\n\n";
7809 die_error
(400, "Unknown blobdiff format");
7813 if ($format eq 'html') {
7814 print "<div class=\"page_body\">\n";
7816 git_patchset_body
($fd, $diff_style,
7817 [ \
%diffinfo ], $hash_base, $hash_parent_base);
7820 print "</div>\n"; # class="page_body"
7824 while (my $line = <$fd>) {
7825 $line =~ s!a/($hash|$hash_parent)!'a/'.esc_path($diffinfo{'from_file'})!eg;
7826 $line =~ s!b/($hash|$hash_parent)!'b/'.esc_path($diffinfo{'to_file'})!eg;
7830 last if $line =~ m!^\+\+\+!;
7838 sub git_blobdiff_plain
{
7839 git_blobdiff
('plain');
7842 # assumes that it is added as later part of already existing navigation,
7843 # so it returns "| foo | bar" rather than just "foo | bar"
7844 sub diff_style_nav
{
7845 my ($diff_style, $is_combined) = @_;
7846 $diff_style ||= 'inline';
7848 return "" if ($is_combined);
7850 my @styles = (inline
=> 'inline', 'sidebyside' => 'side by side');
7851 my %styles = @styles;
7853 @styles[ map { $_ * 2 } 0..$#styles/2 ];
7858 $_ eq $diff_style ? $styles{$_} :
7859 $cgi->a({-href
=> href
(-replay
=>1, diff_style
=> $_)}, $styles{$_})
7863 sub git_commitdiff
{
7865 my $format = $params{-format
} || 'html';
7866 my $diff_style = $input_params{'diff_style'} || 'inline';
7868 my ($patch_max) = gitweb_get_feature
('patches');
7869 if ($format eq 'patch') {
7870 die_error
(403, "Patch view not allowed") unless $patch_max;
7873 $hash ||= $hash_base || "HEAD";
7874 my %co = parse_commit
($hash)
7875 or die_error
(404, "Unknown commit object");
7877 # choose format for commitdiff for merge
7878 if (! defined $hash_parent && @{$co{'parents'}} > 1) {
7879 $hash_parent = '--cc';
7881 # we need to prepare $formats_nav before almost any parameter munging
7883 if ($format eq 'html') {
7885 $cgi->a({-href
=> href
(action
=>"commitdiff_plain", -replay
=>1)},
7887 if ($patch_max && @{$co{'parents'}} <= 1 &&
7888 !gitweb_check_feature
('email-privacy')) {
7889 $formats_nav .= " | " .
7890 $cgi->a({-href
=> href
(action
=>"patch", -replay
=>1)},
7893 $formats_nav .= diff_style_nav
($diff_style, @{$co{'parents'}} > 1);
7895 if (defined $hash_parent &&
7896 $hash_parent ne '-c' && $hash_parent ne '--cc') {
7897 # commitdiff with two commits given
7898 my $hash_parent_short = $hash_parent;
7899 if ($hash_parent =~ m/^$oid_regex$/) {
7900 $hash_parent_short = substr($hash_parent, 0, 7);
7904 for (my $i = 0; $i < @{$co{'parents'}}; $i++) {
7905 if ($co{'parents'}[$i] eq $hash_parent) {
7906 $formats_nav .= ' parent ' . ($i+1);
7910 $formats_nav .= ': ' .
7911 $cgi->a({-href
=> href
(-replay
=>1,
7912 hash
=>$hash_parent, hash_base
=>undef)},
7913 esc_html
($hash_parent_short)) .
7915 } elsif (!$co{'parent'}) {
7917 $formats_nav .= ' (initial)';
7918 } elsif (scalar @{$co{'parents'}} == 1) {
7919 # single parent commit
7922 $cgi->a({-href
=> href
(-replay
=>1,
7923 hash
=>$co{'parent'}, hash_base
=>undef)},
7924 esc_html
(substr($co{'parent'}, 0, 7))) .
7928 if ($hash_parent eq '--cc') {
7929 $formats_nav .= ' | ' .
7930 $cgi->a({-href
=> href
(-replay
=>1,
7931 hash
=>$hash, hash_parent
=>'-c')},
7933 } else { # $hash_parent eq '-c'
7934 $formats_nav .= ' | ' .
7935 $cgi->a({-href
=> href
(-replay
=>1,
7936 hash
=>$hash, hash_parent
=>'--cc')},
7942 $cgi->a({-href
=> href
(-replay
=>1,
7943 hash
=>$_, hash_base
=>undef)},
7944 esc_html
(substr($_, 0, 7)));
7945 } @{$co{'parents'}} ) .
7950 my $hash_parent_param = $hash_parent;
7951 if (!defined $hash_parent_param) {
7952 # --cc for multiple parents, --root for parentless
7953 $hash_parent_param =
7954 @{$co{'parents'}} > 1 ? '--cc' : $co{'parent'} || '--root';
7960 if ($format eq 'html') {
7961 open $fd, "-|", git_cmd
(), "diff-tree", '-r', @diff_opts,
7962 "--no-commit-id", "--patch-with-raw", "--full-index",
7963 $hash_parent_param, $hash, "--"
7964 or die_error
(500, "Open git-diff-tree failed");
7966 while (my $line = <$fd>) {
7968 # empty line ends raw part of diff-tree output
7970 push @difftree, scalar parse_difftree_raw_line
($line);
7973 } elsif ($format eq 'plain') {
7974 open $fd, "-|", git_cmd
(), "diff-tree", '-r', @diff_opts,
7975 '-p', $hash_parent_param, $hash, "--"
7976 or die_error
(500, "Open git-diff-tree failed");
7977 } elsif ($format eq 'patch') {
7978 # For commit ranges, we limit the output to the number of
7979 # patches specified in the 'patches' feature.
7980 # For single commits, we limit the output to a single patch,
7981 # diverging from the git-format-patch default.
7982 my @commit_spec = ();
7984 if ($patch_max > 0) {
7985 push @commit_spec, "-$patch_max";
7987 push @commit_spec, '-n', "$hash_parent..$hash";
7989 if ($params{-single
}) {
7990 push @commit_spec, '-1';
7992 if ($patch_max > 0) {
7993 push @commit_spec, "-$patch_max";
7995 push @commit_spec, "-n";
7997 push @commit_spec, '--root', $hash;
7999 open $fd, "-|", git_cmd
(), "format-patch", @diff_opts,
8000 '--encoding=utf8', '--stdout', @commit_spec
8001 or die_error
(500, "Open git-format-patch failed");
8003 die_error
(400, "Unknown commitdiff format");
8006 # non-textual hash id's can be cached
8008 if ($hash =~ m/^$oid_regex$/) {
8012 # write commit message
8013 if ($format eq 'html') {
8014 my $refs = git_get_references
();
8015 my $ref = format_ref_marker
($refs, $co{'id'});
8017 git_header_html
(undef, $expires);
8018 git_print_page_nav
('commitdiff','', $hash,$co{'tree'},$hash, $formats_nav);
8019 git_print_header_div
('commit', esc_html
($co{'title'}) . $ref, $hash);
8020 print "<div class=\"title_text\">\n" .
8021 "<table class=\"object_header\">\n";
8022 git_print_authorship_rows
(\
%co);
8025 print "<div class=\"page_body\">\n";
8026 if (@{$co{'comment'}} > 1) {
8027 print "<div class=\"log\">\n";
8028 git_print_log
($co{'comment'}, -final_empty_line
=> 1, -remove_title
=> 1);
8029 print "</div>\n"; # class="log"
8032 } elsif ($format eq 'plain') {
8033 my $refs = git_get_references
("tags");
8034 my $tagname = git_get_rev_name_tags
($hash);
8035 my $filename = basename
($project) . "-$hash.patch";
8038 -type
=> 'text/plain',
8039 -charset
=> 'utf-8',
8040 -expires
=> $expires,
8041 -content_disposition
=> 'inline; filename="' . "$filename" . '"');
8042 my %ad = parse_date
($co{'author_epoch'}, $co{'author_tz'});
8043 print "From: " . to_utf8
($co{'author'}) . "\n";
8044 print "Date: $ad{'rfc2822'} ($ad{'tz_local'})\n";
8045 print "Subject: " . to_utf8
($co{'title'}) . "\n";
8047 print "X-Git-Tag: $tagname\n" if $tagname;
8048 print "X-Git-Url: " . $cgi->self_url() . "\n\n";
8050 foreach my $line (@{$co{'comment'}}) {
8051 print to_utf8
($line) . "\n";
8054 } elsif ($format eq 'patch') {
8055 my $filename = basename
($project) . "-$hash.patch";
8058 -type
=> 'text/plain',
8059 -charset
=> 'utf-8',
8060 -expires
=> $expires,
8061 -content_disposition
=> 'inline; filename="' . "$filename" . '"');
8065 if ($format eq 'html') {
8066 my $use_parents = !defined $hash_parent ||
8067 $hash_parent eq '-c' || $hash_parent eq '--cc';
8068 git_difftree_body
(\
@difftree, $hash,
8069 $use_parents ? @{$co{'parents'}} : $hash_parent);
8072 git_patchset_body
($fd, $diff_style,
8074 $use_parents ? @{$co{'parents'}} : $hash_parent);
8076 print "</div>\n"; # class="page_body"
8079 } elsif ($format eq 'plain') {
8083 or print "Reading git-diff-tree failed\n";
8084 } elsif ($format eq 'patch') {
8088 or print "Reading git-format-patch failed\n";
8092 sub git_commitdiff_plain
{
8093 git_commitdiff
(-format
=> 'plain');
8096 # format-patch-style patches
8098 git_commitdiff
(-format
=> 'patch', -single
=> 1);
8102 git_commitdiff
(-format
=> 'patch');
8106 git_log_generic
('history', \
&git_history_body
,
8107 $hash_base, $hash_parent_base,
8112 $searchtype ||= 'commit';
8114 # check if appropriate features are enabled
8115 gitweb_check_feature
('search')
8116 or die_error
(403, "Search is disabled");
8117 if ($searchtype eq 'pickaxe') {
8118 # pickaxe may take all resources of your box and run for several minutes
8119 # with every query - so decide by yourself how public you make this feature
8120 gitweb_check_feature
('pickaxe')
8121 or die_error
(403, "Pickaxe search is disabled");
8123 if ($searchtype eq 'grep') {
8124 # grep search might be potentially CPU-intensive, too
8125 gitweb_check_feature
('grep')
8126 or die_error
(403, "Grep search is disabled");
8129 if (!defined $searchtext) {
8130 die_error
(400, "Text field is empty");
8132 if (!defined $hash) {
8133 $hash = git_get_head_hash
($project);
8135 my %co = parse_commit
($hash);
8137 die_error
(404, "Unknown commit object");
8139 if (!defined $page) {
8143 if ($searchtype eq 'commit' ||
8144 $searchtype eq 'author' ||
8145 $searchtype eq 'committer') {
8146 git_search_message
(%co);
8147 } elsif ($searchtype eq 'pickaxe') {
8148 git_search_changes
(%co);
8149 } elsif ($searchtype eq 'grep') {
8150 git_search_files
(%co);
8152 die_error
(400, "Unknown search type");
8156 sub git_search_help
{
8158 git_print_page_nav
('','', $hash,$hash,$hash);
8160 <p><strong>Pattern</strong> is by default a normal string that is matched precisely (but without
8161 regard to case, except in the case of pickaxe). However, when you check the <em>re</em> checkbox,
8162 the pattern entered is recognized as the POSIX extended
8163 <a href="https://en.wikipedia.org/wiki/Regular_expression">regular expression</a> (also case
8166 <dt><b>commit</b></dt>
8167 <dd>The commit messages and authorship information will be scanned for the given pattern.</dd>
8169 my $have_grep = gitweb_check_feature
('grep');
8172 <dt><b>grep</b></dt>
8173 <dd>All files in the currently selected tree (HEAD unless you are explicitly browsing
8174 a different one) are searched for the given pattern. On large trees, this search can take
8175 a while and put some strain on the server, so please use it with some consideration. Note that
8176 due to git-grep peculiarity, currently if regexp mode is turned off, the matches are
8177 case-sensitive.</dd>
8181 <dt><b>author</b></dt>
8182 <dd>Name and e-mail of the change author and date of birth of the patch will be scanned for the given pattern.</dd>
8183 <dt><b>committer</b></dt>
8184 <dd>Name and e-mail of the committer and date of commit will be scanned for the given pattern.</dd>
8186 my $have_pickaxe = gitweb_check_feature
('pickaxe');
8187 if ($have_pickaxe) {
8189 <dt><b>pickaxe</b></dt>
8190 <dd>All commits that caused the string to appear or disappear from any file (changes that
8191 added, removed or "modified" the string) will be listed. This search can take a while and
8192 takes a lot of strain on the server, so please use it wisely. Note that since you may be
8193 interested even in changes just changing the case as well, this search is case sensitive.</dd>
8201 git_log_generic
('shortlog', \
&git_shortlog_body
,
8202 $hash, $hash_parent);
8205 ## ......................................................................
8206 ## feeds (RSS, Atom; OPML)
8209 my $format = shift || 'atom';
8210 my $have_blame = gitweb_check_feature
('blame');
8212 # Atom: http://www.atomenabled.org/developers/syndication/
8213 # RSS: http://www.notestips.com/80256B3A007F2692/1/NAMO5P9UPQ
8214 if ($format ne 'rss' && $format ne 'atom') {
8215 die_error
(400, "Unknown web feed format");
8218 # log/feed of current (HEAD) branch, log of given branch, history of file/directory
8219 my $head = $hash || 'HEAD';
8220 my @commitlist = parse_commits
($head, 150, 0, $file_name);
8224 my $content_type = "application/$format+xml";
8225 if (defined $cgi->http('HTTP_ACCEPT') &&
8226 $cgi->Accept('text/xml') > $cgi->Accept($content_type)) {
8227 # browser (feed reader) prefers text/xml
8228 $content_type = 'text/xml';
8230 if (defined($commitlist[0])) {
8231 %latest_commit = %{$commitlist[0]};
8232 my $latest_epoch = $latest_commit{'committer_epoch'};
8233 exit_if_unmodified_since
($latest_epoch);
8234 %latest_date = parse_date
($latest_epoch, $latest_commit{'committer_tz'});
8237 -type
=> $content_type,
8238 -charset
=> 'utf-8',
8239 %latest_date ? (-last_modified
=> $latest_date{'rfc2822'}) : (),
8240 -status
=> '200 OK');
8242 # Optimization: skip generating the body if client asks only
8243 # for Last-Modified date.
8244 return if ($cgi->request_method() eq 'HEAD');
8247 my $title = "$site_name - $project/$action";
8248 my $feed_type = 'log';
8249 if (defined $hash) {
8250 $title .= " - '$hash'";
8251 $feed_type = 'branch log';
8252 if (defined $file_name) {
8253 $title .= " :: $file_name";
8254 $feed_type = 'history';
8256 } elsif (defined $file_name) {
8257 $title .= " - $file_name";
8258 $feed_type = 'history';
8260 $title .= " $feed_type";
8261 $title = esc_html
($title);
8262 my $descr = git_get_project_description
($project);
8263 if (defined $descr) {
8264 $descr = esc_html
($descr);
8266 $descr = "$project " .
8267 ($format eq 'rss' ? 'RSS' : 'Atom') .
8270 my $owner = git_get_project_owner
($project);
8271 $owner = esc_html
($owner);
8275 if (defined $file_name) {
8276 $alt_url = href
(-full
=>1, action
=>"history", hash
=>$hash, file_name
=>$file_name);
8277 } elsif (defined $hash) {
8278 $alt_url = href
(-full
=>1, action
=>"log", hash
=>$hash);
8280 $alt_url = href
(-full
=>1, action
=>"summary");
8282 $alt_url = esc_attr
($alt_url);
8283 print qq
!<?xml version
="1.0" encoding
="utf-8"?>\n!;
8284 if ($format eq 'rss') {
8286 <rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/">
8289 print "<title>$title</title>\n" .
8290 "<link>$alt_url</link>\n" .
8291 "<description>$descr</description>\n" .
8292 "<language>en</language>\n" .
8293 # project owner is responsible for 'editorial' content
8294 "<managingEditor>$owner</managingEditor>\n";
8295 if (defined $logo || defined $favicon) {
8296 # prefer the logo to the favicon, since RSS
8297 # doesn't allow both
8298 my $img = esc_url
($logo || $favicon);
8300 "<url>$img</url>\n" .
8301 "<title>$title</title>\n" .
8302 "<link>$alt_url</link>\n" .
8306 print "<pubDate>$latest_date{'rfc2822'}</pubDate>\n";
8307 print "<lastBuildDate>$latest_date{'rfc2822'}</lastBuildDate>\n";
8309 print "<generator>gitweb v.$version/$git_version</generator>\n";
8310 } elsif ($format eq 'atom') {
8312 <feed xmlns="http://www.w3.org/2005/Atom">
8314 print "<title>$title</title>\n" .
8315 "<subtitle>$descr</subtitle>\n" .
8316 '<link rel="alternate" type="text/html" href="' .
8317 $alt_url . '" />' . "\n" .
8318 '<link rel="self" type="' . $content_type . '" href="' .
8319 $cgi->self_url() . '" />' . "\n" .
8320 "<id>" . esc_url
(href
(-full
=>1)) . "</id>\n" .
8321 # use project owner for feed author
8322 "<author><name>$owner</name></author>\n";
8323 if (defined $favicon) {
8324 print "<icon>" . esc_url
($favicon) . "</icon>\n";
8326 if (defined $logo) {
8327 # not twice as wide as tall: 72 x 27 pixels
8328 print "<logo>" . esc_url
($logo) . "</logo>\n";
8330 if (! %latest_date) {
8331 # dummy date to keep the feed valid until commits trickle in:
8332 print "<updated>1970-01-01T00:00:00Z</updated>\n";
8334 print "<updated>$latest_date{'iso-8601'}</updated>\n";
8336 print "<generator version='$version/$git_version'>gitweb</generator>\n";
8340 for (my $i = 0; $i <= $#commitlist; $i++) {
8341 my %co = %{$commitlist[$i]};
8342 my $commit = $co{'id'};
8343 # we read 150, we always show 30 and the ones more recent than 48 hours
8344 if (($i >= 20) && ((time - $co{'author_epoch'}) > 48*60*60)) {
8347 my %cd = parse_date
($co{'author_epoch'}, $co{'author_tz'});
8349 # get list of changed files
8350 open my $fd, "-|", git_cmd
(), "diff-tree", '-r', @diff_opts,
8351 $co{'parent'} || "--root",
8352 $co{'id'}, "--", (defined $file_name ? $file_name : ())
8354 my @difftree = map { chomp; $_ } <$fd>;
8358 # print element (entry, item)
8359 my $co_url = href
(-full
=>1, action
=>"commitdiff", hash
=>$commit);
8360 if ($format eq 'rss') {
8362 "<title>" . esc_html
($co{'title'}) . "</title>\n" .
8363 "<author>" . esc_html
($co{'author'}) . "</author>\n" .
8364 "<pubDate>$cd{'rfc2822'}</pubDate>\n" .
8365 "<guid isPermaLink=\"true\">$co_url</guid>\n" .
8366 "<link>" . esc_html
($co_url) . "</link>\n" .
8367 "<description>" . esc_html
($co{'title'}) . "</description>\n" .
8368 "<content:encoded>" .
8370 } elsif ($format eq 'atom') {
8372 "<title type=\"html\">" . esc_html
($co{'title'}) . "</title>\n" .
8373 "<updated>$cd{'iso-8601'}</updated>\n" .
8375 " <name>" . esc_html
($co{'author_name'}) . "</name>\n";
8376 if ($co{'author_email'}) {
8377 print " <email>" . esc_html
($co{'author_email'}) . "</email>\n";
8379 print "</author>\n" .
8380 # use committer for contributor
8382 " <name>" . esc_html
($co{'committer_name'}) . "</name>\n";
8383 if ($co{'committer_email'}) {
8384 print " <email>" . esc_html
($co{'committer_email'}) . "</email>\n";
8386 print "</contributor>\n" .
8387 "<published>$cd{'iso-8601'}</published>\n" .
8388 "<link rel=\"alternate\" type=\"text/html\" href=\"" . esc_attr
($co_url) . "\" />\n" .
8389 "<id>" . esc_html
($co_url) . "</id>\n" .
8390 "<content type=\"xhtml\" xml:base=\"" . esc_url
($my_url) . "\">\n" .
8391 "<div xmlns=\"http://www.w3.org/1999/xhtml\">\n";
8393 my $comment = $co{'comment'};
8395 foreach my $line (@$comment) {
8396 $line = esc_html
($line);
8399 print "</pre><ul>\n";
8400 foreach my $difftree_line (@difftree) {
8401 my %difftree = parse_difftree_raw_line
($difftree_line);
8402 next if !$difftree{'from_id'};
8404 my $file = $difftree{'file'} || $difftree{'to_file'};
8408 $cgi->a({-href
=> href
(-full
=>1, action
=>"blobdiff",
8409 hash
=>$difftree{'to_id'}, hash_parent
=>$difftree{'from_id'},
8410 hash_base
=>$co{'id'}, hash_parent_base
=>$co{'parent'},
8411 file_name
=>$file, file_parent
=>$difftree{'from_file'}),
8412 -title
=> "diff"}, 'D');
8414 print $cgi->a({-href
=> href
(-full
=>1, action
=>"blame",
8415 file_name
=>$file, hash_base
=>$commit),
8416 -title
=> "blame"}, 'B');
8418 # if this is not a feed of a file history
8419 if (!defined $file_name || $file_name ne $file) {
8420 print $cgi->a({-href
=> href
(-full
=>1, action
=>"history",
8421 file_name
=>$file, hash
=>$commit),
8422 -title
=> "history"}, 'H');
8424 $file = esc_path
($file);
8428 if ($format eq 'rss') {
8429 print "</ul>]]>\n" .
8430 "</content:encoded>\n" .
8432 } elsif ($format eq 'atom') {
8433 print "</ul>\n</div>\n" .
8440 if ($format eq 'rss') {
8441 print "</channel>\n</rss>\n";
8442 } elsif ($format eq 'atom') {
8456 my @list = git_get_projects_list
($project_filter, $strict_export);
8458 die_error
(404, "No projects found");
8462 -type
=> 'text/xml',
8463 -charset
=> 'utf-8',
8464 -content_disposition
=> 'inline; filename="opml.xml"');
8466 my $title = esc_html
($site_name);
8467 my $filter = " within subdirectory ";
8468 if (defined $project_filter) {
8469 $filter .= esc_html
($project_filter);
8474 <?xml version="1.0" encoding="utf-8"?>
8475 <opml version="1.0">
8477 <title>$title OPML Export$filter</title>
8480 <outline text="git RSS feeds">
8483 foreach my $pr (@list) {
8485 my $head = git_get_head_hash
($proj{'path'});
8486 if (!defined $head) {
8489 $git_dir = "$projectroot/$proj{'path'}";
8490 my %co = parse_commit
($head);
8495 my $path = esc_html
(chop_str
($proj{'path'}, 25, 5));
8496 my $rss = esc_attr
(href
('project' => $proj{'path'}, 'action' => 'rss', -full
=> 1));
8497 my $html = esc_attr
(href
('project' => $proj{'path'}, 'action' => 'summary', -full
=> 1));
8498 print "<outline type=\"rss\" text=\"$path\" title=\"$path\" xmlUrl=\"$rss\" htmlUrl=\"$html\"/>\n";