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 use CGI
qw(:standard :escapeHTML -nosticky);
14 use CGI
::Util
qw(unescape);
15 use CGI
::Carp
qw(fatalsToBrowser set_message);
19 use File
::Basename
qw(basename);
20 use Time
::HiRes
qw(gettimeofday tv_interval);
21 binmode STDOUT
, ':utf8';
23 if (!defined($CGI::VERSION
) || $CGI::VERSION
< 4.08) {
24 eval 'sub CGI::multi_param { CGI::param(@_) }'
27 our $t0 = [ gettimeofday
() ];
28 our $number_of_git_cmds = 0;
31 CGI-
>compile() if $ENV{'MOD_PERL'};
34 our $version = "++GIT_VERSION++";
36 our ($my_url, $my_uri, $base_url, $path_info, $home_link);
40 our $my_url = $cgi->url();
41 our $my_uri = $cgi->url(-absolute
=> 1);
43 # Base URL for relative URLs in gitweb ($logo, $favicon, ...),
44 # needed and used only for URLs with nonempty PATH_INFO
45 our $base_url = $my_url;
47 # When the script is used as DirectoryIndex, the URL does not contain the name
48 # of the script file itself, and $cgi->url() fails to strip PATH_INFO, so we
49 # have to do it ourselves. We make $path_info global because it's also used
52 # Another issue with the script being the DirectoryIndex is that the resulting
53 # $my_url data is not the full script URL: this is good, because we want
54 # generated links to keep implying the script name if it wasn't explicitly
55 # indicated in the URL we're handling, but it means that $my_url cannot be used
57 # Therefore, if we needed to strip PATH_INFO, then we know that we have
58 # to build the base URL ourselves:
59 our $path_info = decode_utf8
($ENV{"PATH_INFO"});
61 # $path_info has already been URL-decoded by the web server, but
62 # $my_url and $my_uri have not. URL-decode them so we can properly
64 $my_url = unescape
($my_url);
65 $my_uri = unescape
($my_uri);
66 if ($my_url =~ s
,\Q
$path_info\E
$,, &&
67 $my_uri =~ s
,\Q
$path_info\E
$,, &&
68 defined $ENV{'SCRIPT_NAME'}) {
69 $base_url = $cgi->url(-base
=> 1) . $ENV{'SCRIPT_NAME'};
73 # target of the home link on top of all pages
74 our $home_link = $my_uri || "/";
77 # core git executable to use
78 # this can just be "git" if your webserver has a sensible PATH
79 our $GIT = "++GIT_BINDIR++/git";
81 # absolute fs-path which will be prepended to the project path
82 #our $projectroot = "/pub/scm";
83 our $projectroot = "++GITWEB_PROJECTROOT++";
85 # fs traversing limit for getting project list
86 # the number is relative to the projectroot
87 our $project_maxdepth = "++GITWEB_PROJECT_MAXDEPTH++";
89 # string of the home link on top of all pages
90 our $home_link_str = "++GITWEB_HOME_LINK_STR++";
92 # extra breadcrumbs preceding the home link
93 our @extra_breadcrumbs = ();
95 # name of your site or organization to appear in page titles
96 # replace this with something more descriptive for clearer bookmarks
97 our $site_name = "++GITWEB_SITENAME++"
98 || ($ENV{'SERVER_NAME'} || "Untitled") . " Git";
100 # html snippet to include in the <head> section of each page
101 our $site_html_head_string = "++GITWEB_SITE_HTML_HEAD_STRING++";
102 # filename of html text to include at top of each page
103 our $site_header = "++GITWEB_SITE_HEADER++";
104 # html text to include at home page
105 our $home_text = "++GITWEB_HOMETEXT++";
106 # filename of html text to include at bottom of each page
107 our $site_footer = "++GITWEB_SITE_FOOTER++";
110 our @stylesheets = ("++GITWEB_CSS++");
111 # URI of a single stylesheet, which can be overridden in GITWEB_CONFIG.
112 our $stylesheet = undef;
114 # URI of GIT logo (72x27 size)
115 our $logo = "++GITWEB_LOGO++";
116 # URI of GIT favicon, assumed to be image/png type
117 our $favicon = "++GITWEB_FAVICON++";
118 # URI of gitweb.js (JavaScript code for gitweb)
119 our $javascript = "++GITWEB_JS++";
121 # URI and label (title) of GIT logo link
122 #our $logo_url = "http://www.kernel.org/pub/software/scm/git/docs/";
123 #our $logo_label = "git documentation";
124 our $logo_url = "http://git-scm.com/";
125 our $logo_label = "git homepage";
127 # source of projects list
128 our $projects_list = "++GITWEB_LIST++";
130 # the width (in characters) of the projects list "Description" column
131 our $projects_list_description_width = 25;
133 # group projects by category on the projects list
134 # (enabled if this variable evaluates to true)
135 our $projects_list_group_categories = 0;
137 # default category if none specified
138 # (leave the empty string for no category)
139 our $project_list_default_category = "";
141 # default order of projects list
142 # valid values are none, project, descr, owner, and age
143 our $default_projects_order = "project";
145 # show repository only if this file exists
146 # (only effective if this variable evaluates to true)
147 our $export_ok = "++GITWEB_EXPORT_OK++";
149 # don't generate age column on the projects list page
150 our $omit_age_column = 0;
152 # don't generate information about owners of repositories
155 # show repository only if this subroutine returns true
156 # when given the path to the project, for example:
157 # sub { return -e "$_[0]/git-daemon-export-ok"; }
158 our $export_auth_hook = undef;
160 # only allow viewing of repositories also shown on the overview page
161 our $strict_export = "++GITWEB_STRICT_EXPORT++";
163 # list of git base URLs used for URL to where fetch project from,
164 # i.e. full URL is "$git_base_url/$project"
165 our @git_base_url_list = grep { $_ ne '' } ("++GITWEB_BASE_URL++");
167 # default blob_plain mimetype and default charset for text/plain blob
168 our $default_blob_plain_mimetype = 'text/plain';
169 our $default_text_plain_charset = undef;
171 # file to use for guessing MIME types before trying /etc/mime.types
172 # (relative to the current git repository)
173 our $mimetypes_file = undef;
175 # assume this charset if line contains non-UTF-8 characters;
176 # it should be valid encoding (see Encoding::Supported(3pm) for list),
177 # for which encoding all byte sequences are valid, for example
178 # 'iso-8859-1' aka 'latin1' (it is decoded without checking, so it
179 # could be even 'utf-8' for the old behavior)
180 our $fallback_encoding = 'latin1';
182 # rename detection options for git-diff and git-diff-tree
183 # - default is '-M', with the cost proportional to
184 # (number of removed files) * (number of new files).
185 # - more costly is '-C' (which implies '-M'), with the cost proportional to
186 # (number of changed files + number of removed files) * (number of new files)
187 # - even more costly is '-C', '--find-copies-harder' with cost
188 # (number of files in the original tree) * (number of new files)
189 # - one might want to include '-B' option, e.g. '-B', '-M'
190 our @diff_opts = ('-M'); # taken from git_commit
192 # Disables features that would allow repository owners to inject script into
194 our $prevent_xss = 0;
196 # Path to the highlight executable to use (must be the one from
197 # http://www.andre-simon.de due to assumptions about parameters and output).
198 # Useful if highlight is not installed on your webserver's PATH.
199 # [Default: highlight]
200 our $highlight_bin = "++HIGHLIGHT_BIN++";
202 # information about snapshot formats that gitweb is capable of serving
203 our %known_snapshot_formats = (
205 # 'display' => display name,
206 # 'type' => mime type,
207 # 'suffix' => filename suffix,
208 # 'format' => --format for git-archive,
209 # 'compressor' => [compressor command and arguments]
210 # (array reference, optional)
211 # 'disabled' => boolean (optional)}
214 'display' => 'tar.gz',
215 'type' => 'application/x-gzip',
216 'suffix' => '.tar.gz',
218 'compressor' => ['gzip', '-n']},
221 'display' => 'tar.bz2',
222 'type' => 'application/x-bzip2',
223 'suffix' => '.tar.bz2',
225 'compressor' => ['bzip2']},
228 'display' => 'tar.xz',
229 'type' => 'application/x-xz',
230 'suffix' => '.tar.xz',
232 'compressor' => ['xz'],
237 'type' => 'application/x-zip',
242 # Aliases so we understand old gitweb.snapshot values in repository
244 our %known_snapshot_format_aliases = (
249 # backward compatibility: legacy gitweb config support
250 'x-gzip' => undef, 'gz' => undef,
251 'x-bzip2' => undef, 'bz2' => undef,
252 'x-zip' => undef, '' => undef,
255 # Pixel sizes for icons and avatars. If the default font sizes or lineheights
256 # are changed, it may be appropriate to change these values too via
263 # Used to set the maximum load that we will still respond to gitweb queries.
264 # If server load exceed this value then return "503 server busy" error.
265 # If gitweb cannot determined server load, it is taken to be 0.
266 # Leave it undefined (or set to 'undef') to turn off load checking.
269 # configuration for 'highlight' (http://www.andre-simon.de/)
271 our %highlight_basename = (
274 'SConstruct' => 'py', # SCons equivalent of Makefile
275 'Makefile' => 'make',
278 our %highlight_ext = (
279 # main extensions, defining name of syntax;
280 # see files in /usr/share/highlight/langDefs/ directory
281 (map { $_ => $_ } qw(py rb java css js tex bib xml awk bat ini spec tcl sql)),
282 # alternate extensions, see /etc/highlight/filetypes.conf
283 (map { $_ => 'c' } qw(c h)),
284 (map { $_ => 'sh' } qw(sh bash zsh ksh)),
285 (map { $_ => 'cpp' } qw(cpp cxx c++ cc)),
286 (map { $_ => 'php' } qw(php php3 php4 php5 phps)),
287 (map { $_ => 'pl' } qw(pl perl pm)), # perhaps also 'cgi'
288 (map { $_ => 'make'} qw(make mak mk)),
289 (map { $_ => 'xml' } qw(xml xhtml html htm)),
292 # You define site-wide feature defaults here; override them with
293 # $GITWEB_CONFIG as necessary.
296 # 'sub' => feature-sub (subroutine),
297 # 'override' => allow-override (boolean),
298 # 'default' => [ default options...] (array reference)}
300 # if feature is overridable (it means that allow-override has true value),
301 # then feature-sub will be called with default options as parameters;
302 # return value of feature-sub indicates if to enable specified feature
304 # if there is no 'sub' key (no feature-sub), then feature cannot be
307 # use gitweb_get_feature(<feature>) to retrieve the <feature> value
308 # (an array) or gitweb_check_feature(<feature>) to check if <feature>
311 # Enable the 'blame' blob view, showing the last commit that modified
312 # each line in the file. This can be very CPU-intensive.
314 # To enable system wide have in $GITWEB_CONFIG
315 # $feature{'blame'}{'default'} = [1];
316 # To have project specific config enable override in $GITWEB_CONFIG
317 # $feature{'blame'}{'override'} = 1;
318 # and in project config gitweb.blame = 0|1;
320 'sub' => sub { feature_bool
('blame', @_) },
324 # Enable the 'snapshot' link, providing a compressed archive of any
325 # tree. This can potentially generate high traffic if you have large
328 # Value is a list of formats defined in %known_snapshot_formats that
330 # To disable system wide have in $GITWEB_CONFIG
331 # $feature{'snapshot'}{'default'} = [];
332 # To have project specific config enable override in $GITWEB_CONFIG
333 # $feature{'snapshot'}{'override'} = 1;
334 # and in project config, a comma-separated list of formats or "none"
335 # to disable. Example: gitweb.snapshot = tbz2,zip;
337 'sub' => \
&feature_snapshot
,
339 'default' => ['tgz']},
341 # Enable text search, which will list the commits which match author,
342 # committer or commit text to a given string. Enabled by default.
343 # Project specific override is not supported.
345 # Note that this controls all search features, which means that if
346 # it is disabled, then 'grep' and 'pickaxe' search would also be
352 # Enable grep search, which will list the files in currently selected
353 # tree containing the given string. Enabled by default. This can be
354 # potentially CPU-intensive, of course.
355 # Note that you need to have 'search' feature enabled too.
357 # To enable system wide have in $GITWEB_CONFIG
358 # $feature{'grep'}{'default'} = [1];
359 # To have project specific config enable override in $GITWEB_CONFIG
360 # $feature{'grep'}{'override'} = 1;
361 # and in project config gitweb.grep = 0|1;
363 'sub' => sub { feature_bool
('grep', @_) },
367 # Enable the pickaxe search, which will list the commits that modified
368 # a given string in a file. This can be practical and quite faster
369 # alternative to 'blame', but still potentially CPU-intensive.
370 # Note that you need to have 'search' feature enabled too.
372 # To enable system wide have in $GITWEB_CONFIG
373 # $feature{'pickaxe'}{'default'} = [1];
374 # To have project specific config enable override in $GITWEB_CONFIG
375 # $feature{'pickaxe'}{'override'} = 1;
376 # and in project config gitweb.pickaxe = 0|1;
378 'sub' => sub { feature_bool
('pickaxe', @_) },
382 # Enable showing size of blobs in a 'tree' view, in a separate
383 # column, similar to what 'ls -l' does. This cost a bit of IO.
385 # To disable system wide have in $GITWEB_CONFIG
386 # $feature{'show-sizes'}{'default'} = [0];
387 # To have project specific config enable override in $GITWEB_CONFIG
388 # $feature{'show-sizes'}{'override'} = 1;
389 # and in project config gitweb.showsizes = 0|1;
391 'sub' => sub { feature_bool
('showsizes', @_) },
395 # Make gitweb use an alternative format of the URLs which can be
396 # more readable and natural-looking: project name is embedded
397 # directly in the path and the query string contains other
398 # auxiliary information. All gitweb installations recognize
399 # URL in either format; this configures in which formats gitweb
402 # To enable system wide have in $GITWEB_CONFIG
403 # $feature{'pathinfo'}{'default'} = [1];
404 # Project specific override is not supported.
406 # Note that you will need to change the default location of CSS,
407 # favicon, logo and possibly other files to an absolute URL. Also,
408 # if gitweb.cgi serves as your indexfile, you will need to force
409 # $my_uri to contain the script name in your $GITWEB_CONFIG.
414 # Make gitweb consider projects in project root subdirectories
415 # to be forks of existing projects. Given project $projname.git,
416 # projects matching $projname/*.git will not be shown in the main
417 # projects list, instead a '+' mark will be added to $projname
418 # there and a 'forks' view will be enabled for the project, listing
419 # all the forks. If project list is taken from a file, forks have
420 # to be listed after the main project.
422 # To enable system wide have in $GITWEB_CONFIG
423 # $feature{'forks'}{'default'} = [1];
424 # Project specific override is not supported.
429 # Insert custom links to the action bar of all project pages.
430 # This enables you mainly to link to third-party scripts integrating
431 # into gitweb; e.g. git-browser for graphical history representation
432 # or custom web-based repository administration interface.
434 # The 'default' value consists of a list of triplets in the form
435 # (label, link, position) where position is the label after which
436 # to insert the link and link is a format string where %n expands
437 # to the project name, %f to the project path within the filesystem,
438 # %h to the current hash (h gitweb parameter) and %b to the current
439 # hash base (hb gitweb parameter); %% expands to %.
441 # To enable system wide have in $GITWEB_CONFIG e.g.
442 # $feature{'actions'}{'default'} = [('graphiclog',
443 # '/git-browser/by-commit.html?r=%n', 'summary')];
444 # Project specific override is not supported.
449 # Allow gitweb scan project content tags of project repository,
450 # and display the popular Web 2.0-ish "tag cloud" near the projects
451 # list. Note that this is something COMPLETELY different from the
454 # gitweb by itself can show existing tags, but it does not handle
455 # tagging itself; you need to do it externally, outside gitweb.
456 # The format is described in git_get_project_ctags() subroutine.
457 # You may want to install the HTML::TagCloud Perl module to get
458 # a pretty tag cloud instead of just a list of tags.
460 # To enable system wide have in $GITWEB_CONFIG
461 # $feature{'ctags'}{'default'} = [1];
462 # Project specific override is not supported.
464 # In the future whether ctags editing is enabled might depend
465 # on the value, but using 1 should always mean no editing of ctags.
470 # The maximum number of patches in a patchset generated in patch
471 # view. Set this to 0 or undef to disable patch view, or to a
472 # negative number to remove any limit.
474 # To disable system wide have in $GITWEB_CONFIG
475 # $feature{'patches'}{'default'} = [0];
476 # To have project specific config enable override in $GITWEB_CONFIG
477 # $feature{'patches'}{'override'} = 1;
478 # and in project config gitweb.patches = 0|n;
479 # where n is the maximum number of patches allowed in a patchset.
481 'sub' => \
&feature_patches
,
485 # Avatar support. When this feature is enabled, views such as
486 # shortlog or commit will display an avatar associated with
487 # the email of the committer(s) and/or author(s).
489 # Currently available providers are gravatar and picon.
490 # If an unknown provider is specified, the feature is disabled.
492 # Gravatar depends on Digest::MD5.
493 # Picon currently relies on the indiana.edu database.
495 # To enable system wide have in $GITWEB_CONFIG
496 # $feature{'avatar'}{'default'} = ['<provider>'];
497 # where <provider> is either gravatar or picon.
498 # To have project specific config enable override in $GITWEB_CONFIG
499 # $feature{'avatar'}{'override'} = 1;
500 # and in project config gitweb.avatar = <provider>;
502 'sub' => \
&feature_avatar
,
506 # Enable displaying how much time and how many git commands
507 # it took to generate and display page. Disabled by default.
508 # Project specific override is not supported.
513 # Enable turning some links into links to actions which require
514 # JavaScript to run (like 'blame_incremental'). Not enabled by
515 # default. Project specific override is currently not supported.
516 'javascript-actions' => {
520 # Enable and configure ability to change common timezone for dates
521 # in gitweb output via JavaScript. Enabled by default.
522 # Project specific override is not supported.
523 'javascript-timezone' => {
526 'local', # default timezone: 'utc', 'local', or '(-|+)HHMM' format,
527 # or undef to turn off this feature
528 'gitweb_tz', # name of cookie where to store selected timezone
529 'datetime', # CSS class used to mark up dates for manipulation
532 # Syntax highlighting support. This is based on Daniel Svensson's
533 # and Sham Chukoury's work in gitweb-xmms2.git.
534 # It requires the 'highlight' program present in $PATH,
535 # and therefore is disabled by default.
537 # To enable system wide have in $GITWEB_CONFIG
538 # $feature{'highlight'}{'default'} = [1];
541 'sub' => sub { feature_bool
('highlight', @_) },
545 # Enable displaying of remote heads in the heads list
547 # To enable system wide have in $GITWEB_CONFIG
548 # $feature{'remote_heads'}{'default'} = [1];
549 # To have project specific config enable override in $GITWEB_CONFIG
550 # $feature{'remote_heads'}{'override'} = 1;
551 # and in project config gitweb.remoteheads = 0|1;
553 'sub' => sub { feature_bool
('remote_heads', @_) },
557 # Enable showing branches under other refs in addition to heads
559 # To set system wide extra branch refs have in $GITWEB_CONFIG
560 # $feature{'extra-branch-refs'}{'default'} = ['dirs', 'of', 'choice'];
561 # To have project specific config enable override in $GITWEB_CONFIG
562 # $feature{'extra-branch-refs'}{'override'} = 1;
563 # and in project config gitweb.extrabranchrefs = dirs of choice
564 # Every directory is separated with whitespace.
566 'extra-branch-refs' => {
567 'sub' => \
&feature_extra_branch_refs
,
572 sub gitweb_get_feature
{
574 return unless exists $feature{$name};
575 my ($sub, $override, @defaults) = (
576 $feature{$name}{'sub'},
577 $feature{$name}{'override'},
578 @{$feature{$name}{'default'}});
579 # project specific override is possible only if we have project
580 our $git_dir; # global variable, declared later
581 if (!$override || !defined $git_dir) {
585 warn "feature $name is not overridable";
588 return $sub->(@defaults);
591 # A wrapper to check if a given feature is enabled.
592 # With this, you can say
594 # my $bool_feat = gitweb_check_feature('bool_feat');
595 # gitweb_check_feature('bool_feat') or somecode;
599 # my ($bool_feat) = gitweb_get_feature('bool_feat');
600 # (gitweb_get_feature('bool_feat'))[0] or somecode;
602 sub gitweb_check_feature
{
603 return (gitweb_get_feature
(@_))[0];
609 my ($val) = git_get_project_config
($key, '--bool');
613 } elsif ($val eq 'true') {
615 } elsif ($val eq 'false') {
620 sub feature_snapshot
{
623 my ($val) = git_get_project_config
('snapshot');
626 @fmts = ($val eq 'none' ? () : split /\s*[,\s]\s*/, $val);
632 sub feature_patches
{
633 my @val = (git_get_project_config
('patches', '--int'));
643 my @val = (git_get_project_config
('avatar'));
645 return @val ? @val : @_;
648 sub feature_extra_branch_refs
{
649 my (@branch_refs) = @_;
650 my $values = git_get_project_config
('extrabranchrefs');
653 $values = config_to_multi
($values);
655 foreach my $value (@{$values}) {
656 push @branch_refs, split /\s+/, $value;
663 # checking HEAD file with -e is fragile if the repository was
664 # initialized long time ago (i.e. symlink HEAD) and was pack-ref'ed
666 sub check_head_link
{
668 my $headfile = "$dir/HEAD";
669 return ((-e
$headfile) ||
670 (-l
$headfile && readlink($headfile) =~ /^refs\/heads\
//));
673 sub check_export_ok
{
675 return (check_head_link
($dir) &&
676 (!$export_ok || -e
"$dir/$export_ok") &&
677 (!$export_auth_hook || $export_auth_hook->($dir)));
680 # process alternate names for backward compatibility
681 # filter out unsupported (unknown) snapshot formats
682 sub filter_snapshot_fmts
{
686 exists $known_snapshot_format_aliases{$_} ?
687 $known_snapshot_format_aliases{$_} : $_} @fmts;
689 exists $known_snapshot_formats{$_} &&
690 !$known_snapshot_formats{$_}{'disabled'}} @fmts;
693 sub filter_and_validate_refs
{
695 my %unique_refs = ();
697 foreach my $ref (@refs) {
698 die_error
(500, "Invalid ref '$ref' in 'extra-branch-refs' feature") unless (is_valid_ref_format
($ref));
699 # 'heads' are added implicitly in get_branch_refs().
700 $unique_refs{$ref} = 1 if ($ref ne 'heads');
702 return sort keys %unique_refs;
705 # If it is set to code reference, it is code that it is to be run once per
706 # request, allowing updating configurations that change with each request,
707 # while running other code in config file only once.
709 # Otherwise, if it is false then gitweb would process config file only once;
710 # if it is true then gitweb config would be run for each request.
711 our $per_request_config = 1;
713 # read and parse gitweb config file given by its parameter.
714 # returns true on success, false on recoverable error, allowing
715 # to chain this subroutine, using first file that exists.
716 # dies on errors during parsing config file, as it is unrecoverable.
717 sub read_config_file
{
718 my $filename = shift;
719 return unless defined $filename;
720 # die if there are errors parsing config file
729 our ($GITWEB_CONFIG, $GITWEB_CONFIG_SYSTEM, $GITWEB_CONFIG_COMMON);
730 sub evaluate_gitweb_config
{
731 our $GITWEB_CONFIG = $ENV{'GITWEB_CONFIG'} || "++GITWEB_CONFIG++";
732 our $GITWEB_CONFIG_SYSTEM = $ENV{'GITWEB_CONFIG_SYSTEM'} || "++GITWEB_CONFIG_SYSTEM++";
733 our $GITWEB_CONFIG_COMMON = $ENV{'GITWEB_CONFIG_COMMON'} || "++GITWEB_CONFIG_COMMON++";
735 # Protect against duplications of file names, to not read config twice.
736 # Only one of $GITWEB_CONFIG and $GITWEB_CONFIG_SYSTEM is used, so
737 # there possibility of duplication of filename there doesn't matter.
738 $GITWEB_CONFIG = "" if ($GITWEB_CONFIG eq $GITWEB_CONFIG_COMMON);
739 $GITWEB_CONFIG_SYSTEM = "" if ($GITWEB_CONFIG_SYSTEM eq $GITWEB_CONFIG_COMMON);
741 # Common system-wide settings for convenience.
742 # Those settings can be ovverriden by GITWEB_CONFIG or GITWEB_CONFIG_SYSTEM.
743 read_config_file
($GITWEB_CONFIG_COMMON);
745 # Use first config file that exists. This means use the per-instance
746 # GITWEB_CONFIG if exists, otherwise use GITWEB_SYSTEM_CONFIG.
747 read_config_file
($GITWEB_CONFIG) and return;
748 read_config_file
($GITWEB_CONFIG_SYSTEM);
751 # Get loadavg of system, to compare against $maxload.
752 # Currently it requires '/proc/loadavg' present to get loadavg;
753 # if it is not present it returns 0, which means no load checking.
755 if( -e
'/proc/loadavg' ){
756 open my $fd, '<', '/proc/loadavg'
758 my @load = split(/\s+/, scalar <$fd>);
761 # The first three columns measure CPU and IO utilization of the last one,
762 # five, and 10 minute periods. The fourth column shows the number of
763 # currently running processes and the total number of processes in the m/n
764 # format. The last column displays the last process ID used.
765 return $load[0] || 0;
767 # additional checks for load average should go here for things that don't export
773 # version of the core git binary
775 sub evaluate_git_version
{
776 our $git_version = qx("$GIT" --version) =~ m/git version (.*)$/ ? $1 : "unknown";
777 $number_of_git_cmds++;
781 if (defined $maxload && get_loadavg
() > $maxload) {
782 die_error
(503, "The load average on the server is too high");
786 # ======================================================================
787 # input validation and dispatch
789 # input parameters can be collected from a variety of sources (presently, CGI
790 # and PATH_INFO), so we define an %input_params hash that collects them all
791 # together during validation: this allows subsequent uses (e.g. href()) to be
792 # agnostic of the parameter origin
794 our %input_params = ();
796 # input parameters are stored with the long parameter name as key. This will
797 # also be used in the href subroutine to convert parameters to their CGI
798 # equivalent, and since the href() usage is the most frequent one, we store
799 # the name -> CGI key mapping here, instead of the reverse.
801 # XXX: Warning: If you touch this, check the search form for updating,
804 our @cgi_param_mapping = (
812 hash_parent_base
=> "hpb",
817 snapshot_format
=> "sf",
818 extra_options
=> "opt",
819 search_use_regexp
=> "sr",
822 project_filter
=> "pf",
823 # this must be last entry (for manipulation from JavaScript)
826 our %cgi_param_mapping = @cgi_param_mapping;
828 # we will also need to know the possible actions, for validation
830 "blame" => \
&git_blame
,
831 "blame_incremental" => \
&git_blame_incremental
,
832 "blame_data" => \
&git_blame_data
,
833 "blobdiff" => \
&git_blobdiff
,
834 "blobdiff_plain" => \
&git_blobdiff_plain
,
835 "blob" => \
&git_blob
,
836 "blob_plain" => \
&git_blob_plain
,
837 "commitdiff" => \
&git_commitdiff
,
838 "commitdiff_plain" => \
&git_commitdiff_plain
,
839 "commit" => \
&git_commit
,
840 "forks" => \
&git_forks
,
841 "heads" => \
&git_heads
,
842 "history" => \
&git_history
,
844 "patch" => \
&git_patch
,
845 "patches" => \
&git_patches
,
846 "remotes" => \
&git_remotes
,
848 "atom" => \
&git_atom
,
849 "search" => \
&git_search
,
850 "search_help" => \
&git_search_help
,
851 "shortlog" => \
&git_shortlog
,
852 "summary" => \
&git_summary
,
854 "tags" => \
&git_tags
,
855 "tree" => \
&git_tree
,
856 "snapshot" => \
&git_snapshot
,
857 "object" => \
&git_object
,
858 # those below don't need $project
859 "opml" => \
&git_opml
,
860 "project_list" => \
&git_project_list
,
861 "project_index" => \
&git_project_index
,
864 # finally, we have the hash of allowed extra_options for the commands that
866 our %allowed_options = (
867 "--no-merges" => [ qw(rss atom log shortlog history) ],
870 # fill %input_params with the CGI parameters. All values except for 'opt'
871 # should be single values, but opt can be an array. We should probably
872 # build an array of parameters that can be multi-valued, but since for the time
873 # being it's only this one, we just single it out
874 sub evaluate_query_params
{
877 while (my ($name, $symbol) = each %cgi_param_mapping) {
878 if ($symbol eq 'opt') {
879 $input_params{$name} = [ map { decode_utf8
($_) } $cgi->multi_param($symbol) ];
881 $input_params{$name} = decode_utf8
($cgi->param($symbol));
886 # now read PATH_INFO and update the parameter list for missing parameters
887 sub evaluate_path_info
{
888 return if defined $input_params{'project'};
889 return if !$path_info;
890 $path_info =~ s
,^/+,,;
891 return if !$path_info;
893 # find which part of PATH_INFO is project
894 my $project = $path_info;
896 while ($project && !check_head_link
("$projectroot/$project")) {
897 $project =~ s
,/*[^/]*$,,;
899 return unless $project;
900 $input_params{'project'} = $project;
902 # do not change any parameters if an action is given using the query string
903 return if $input_params{'action'};
904 $path_info =~ s
,^\Q
$project\E
/*,,;
906 # next, check if we have an action
907 my $action = $path_info;
909 if (exists $actions{$action}) {
910 $path_info =~ s
,^$action/*,,;
911 $input_params{'action'} = $action;
914 # list of actions that want hash_base instead of hash, but can have no
915 # pathname (f) parameter
921 # we want to catch, among others
922 # [$hash_parent_base[:$file_parent]..]$hash_parent[:$file_name]
923 my ($parentrefname, $parentpathname, $refname, $pathname) =
924 ($path_info =~ /^(?:(.+?)(?::(.+))?\.\.)?([^:]+?)?(?::(.+))?$/);
926 # first, analyze the 'current' part
927 if (defined $pathname) {
928 # we got "branch:filename" or "branch:dir/"
929 # we could use git_get_type(branch:pathname), but:
930 # - it needs $git_dir
931 # - it does a git() call
932 # - the convention of terminating directories with a slash
933 # makes it superfluous
934 # - embedding the action in the PATH_INFO would make it even
936 $pathname =~ s
,^/+,,;
937 if (!$pathname || substr($pathname, -1) eq "/") {
938 $input_params{'action'} ||= "tree";
941 # the default action depends on whether we had parent info
943 if ($parentrefname) {
944 $input_params{'action'} ||= "blobdiff_plain";
946 $input_params{'action'} ||= "blob_plain";
949 $input_params{'hash_base'} ||= $refname;
950 $input_params{'file_name'} ||= $pathname;
951 } elsif (defined $refname) {
952 # we got "branch". In this case we have to choose if we have to
953 # set hash or hash_base.
955 # Most of the actions without a pathname only want hash to be
956 # set, except for the ones specified in @wants_base that want
957 # hash_base instead. It should also be noted that hand-crafted
958 # links having 'history' as an action and no pathname or hash
959 # set will fail, but that happens regardless of PATH_INFO.
960 if (defined $parentrefname) {
961 # if there is parent let the default be 'shortlog' action
962 # (for http://git.example.com/repo.git/A..B links); if there
963 # is no parent, dispatch will detect type of object and set
964 # action appropriately if required (if action is not set)
965 $input_params{'action'} ||= "shortlog";
967 if ($input_params{'action'} &&
968 grep { $_ eq $input_params{'action'} } @wants_base) {
969 $input_params{'hash_base'} ||= $refname;
971 $input_params{'hash'} ||= $refname;
975 # next, handle the 'parent' part, if present
976 if (defined $parentrefname) {
977 # a missing pathspec defaults to the 'current' filename, allowing e.g.
978 # someproject/blobdiff/oldrev..newrev:/filename
979 if ($parentpathname) {
980 $parentpathname =~ s
,^/+,,;
981 $parentpathname =~ s
,/$,,;
982 $input_params{'file_parent'} ||= $parentpathname;
984 $input_params{'file_parent'} ||= $input_params{'file_name'};
986 # we assume that hash_parent_base is wanted if a path was specified,
987 # or if the action wants hash_base instead of hash
988 if (defined $input_params{'file_parent'} ||
989 grep { $_ eq $input_params{'action'} } @wants_base) {
990 $input_params{'hash_parent_base'} ||= $parentrefname;
992 $input_params{'hash_parent'} ||= $parentrefname;
996 # for the snapshot action, we allow URLs in the form
997 # $project/snapshot/$hash.ext
998 # where .ext determines the snapshot and gets removed from the
999 # passed $refname to provide the $hash.
1001 # To be able to tell that $refname includes the format extension, we
1002 # require the following two conditions to be satisfied:
1003 # - the hash input parameter MUST have been set from the $refname part
1004 # of the URL (i.e. they must be equal)
1005 # - the snapshot format MUST NOT have been defined already (e.g. from
1007 # It's also useless to try any matching unless $refname has a dot,
1008 # so we check for that too
1009 if (defined $input_params{'action'} &&
1010 $input_params{'action'} eq 'snapshot' &&
1011 defined $refname && index($refname, '.') != -1 &&
1012 $refname eq $input_params{'hash'} &&
1013 !defined $input_params{'snapshot_format'}) {
1014 # We loop over the known snapshot formats, checking for
1015 # extensions. Allowed extensions are both the defined suffix
1016 # (which includes the initial dot already) and the snapshot
1017 # format key itself, with a prepended dot
1018 while (my ($fmt, $opt) = each %known_snapshot_formats) {
1019 my $hash = $refname;
1020 unless ($hash =~ s/(\Q$opt->{'suffix'}\E|\Q.$fmt\E)$//) {
1024 # a valid suffix was found, so set the snapshot format
1025 # and reset the hash parameter
1026 $input_params{'snapshot_format'} = $fmt;
1027 $input_params{'hash'} = $hash;
1028 # we also set the format suffix to the one requested
1029 # in the URL: this way a request for e.g. .tgz returns
1030 # a .tgz instead of a .tar.gz
1031 $known_snapshot_formats{$fmt}{'suffix'} = $sfx;
1037 our ($action, $project, $file_name, $file_parent, $hash, $hash_parent, $hash_base,
1038 $hash_parent_base, @extra_options, $page, $searchtype, $search_use_regexp,
1039 $searchtext, $search_regexp, $project_filter);
1040 sub evaluate_and_validate_params
{
1041 our $action = $input_params{'action'};
1042 if (defined $action) {
1043 if (!is_valid_action
($action)) {
1044 die_error
(400, "Invalid action parameter");
1048 # parameters which are pathnames
1049 our $project = $input_params{'project'};
1050 if (defined $project) {
1051 if (!is_valid_project
($project)) {
1053 die_error
(404, "No such project");
1057 our $project_filter = $input_params{'project_filter'};
1058 if (defined $project_filter) {
1059 if (!is_valid_pathname
($project_filter)) {
1060 die_error
(404, "Invalid project_filter parameter");
1064 our $file_name = $input_params{'file_name'};
1065 if (defined $file_name) {
1066 if (!is_valid_pathname
($file_name)) {
1067 die_error
(400, "Invalid file parameter");
1071 our $file_parent = $input_params{'file_parent'};
1072 if (defined $file_parent) {
1073 if (!is_valid_pathname
($file_parent)) {
1074 die_error
(400, "Invalid file parent parameter");
1078 # parameters which are refnames
1079 our $hash = $input_params{'hash'};
1080 if (defined $hash) {
1081 if (!is_valid_refname
($hash)) {
1082 die_error
(400, "Invalid hash parameter");
1086 our $hash_parent = $input_params{'hash_parent'};
1087 if (defined $hash_parent) {
1088 if (!is_valid_refname
($hash_parent)) {
1089 die_error
(400, "Invalid hash parent parameter");
1093 our $hash_base = $input_params{'hash_base'};
1094 if (defined $hash_base) {
1095 if (!is_valid_refname
($hash_base)) {
1096 die_error
(400, "Invalid hash base parameter");
1100 our @extra_options = @{$input_params{'extra_options'}};
1101 # @extra_options is always defined, since it can only be (currently) set from
1102 # CGI, and $cgi->param() returns the empty array in array context if the param
1104 foreach my $opt (@extra_options) {
1105 if (not exists $allowed_options{$opt}) {
1106 die_error
(400, "Invalid option parameter");
1108 if (not grep(/^$action$/, @{$allowed_options{$opt}})) {
1109 die_error
(400, "Invalid option parameter for this action");
1113 our $hash_parent_base = $input_params{'hash_parent_base'};
1114 if (defined $hash_parent_base) {
1115 if (!is_valid_refname
($hash_parent_base)) {
1116 die_error
(400, "Invalid hash parent base parameter");
1121 our $page = $input_params{'page'};
1122 if (defined $page) {
1123 if ($page =~ m/[^0-9]/) {
1124 die_error
(400, "Invalid page parameter");
1128 our $searchtype = $input_params{'searchtype'};
1129 if (defined $searchtype) {
1130 if ($searchtype =~ m/[^a-z]/) {
1131 die_error
(400, "Invalid searchtype parameter");
1135 our $search_use_regexp = $input_params{'search_use_regexp'};
1137 our $searchtext = $input_params{'searchtext'};
1138 our $search_regexp = undef;
1139 if (defined $searchtext) {
1140 if (length($searchtext) < 2) {
1141 die_error
(403, "At least two characters are required for search parameter");
1143 if ($search_use_regexp) {
1144 $search_regexp = $searchtext;
1145 if (!eval { qr/$search_regexp/; 1; }) {
1146 (my $error = $@) =~ s/ at \S+ line \d+.*\n?//;
1147 die_error
(400, "Invalid search regexp '$search_regexp'",
1151 $search_regexp = quotemeta $searchtext;
1156 # path to the current git repository
1158 sub evaluate_git_dir
{
1159 our $git_dir = "$projectroot/$project" if $project;
1162 our (@snapshot_fmts, $git_avatar, @extra_branch_refs);
1163 sub configure_gitweb_features
{
1164 # list of supported snapshot formats
1165 our @snapshot_fmts = gitweb_get_feature
('snapshot');
1166 @snapshot_fmts = filter_snapshot_fmts
(@snapshot_fmts);
1168 # check that the avatar feature is set to a known provider name,
1169 # and for each provider check if the dependencies are satisfied.
1170 # if the provider name is invalid or the dependencies are not met,
1171 # reset $git_avatar to the empty string.
1172 our ($git_avatar) = gitweb_get_feature
('avatar');
1173 if ($git_avatar eq 'gravatar') {
1174 $git_avatar = '' unless (eval { require Digest
::MD5
; 1; });
1175 } elsif ($git_avatar eq 'picon') {
1181 our @extra_branch_refs = gitweb_get_feature
('extra-branch-refs');
1182 @extra_branch_refs = filter_and_validate_refs
(@extra_branch_refs);
1185 sub get_branch_refs
{
1186 return ('heads', @extra_branch_refs);
1189 # custom error handler: 'die <message>' is Internal Server Error
1190 sub handle_errors_html
{
1191 my $msg = shift; # it is already HTML escaped
1193 # to avoid infinite loop where error occurs in die_error,
1194 # change handler to default handler, disabling handle_errors_html
1195 set_message
("Error occurred when inside die_error:\n$msg");
1197 # you cannot jump out of die_error when called as error handler;
1198 # the subroutine set via CGI::Carp::set_message is called _after_
1199 # HTTP headers are already written, so it cannot write them itself
1200 die_error
(undef, undef, $msg, -error_handler
=> 1, -no_http_header
=> 1);
1202 set_message
(\
&handle_errors_html
);
1206 if (!defined $action) {
1207 if (defined $hash) {
1208 $action = git_get_type
($hash);
1209 $action or die_error
(404, "Object does not exist");
1210 } elsif (defined $hash_base && defined $file_name) {
1211 $action = git_get_type
("$hash_base:$file_name");
1212 $action or die_error
(404, "File or directory does not exist");
1213 } elsif (defined $project) {
1214 $action = 'summary';
1216 $action = 'project_list';
1219 if (!defined($actions{$action})) {
1220 die_error
(400, "Unknown action");
1222 if ($action !~ m/^(?:opml|project_list|project_index)$/ &&
1224 die_error
(400, "Project needed");
1226 $actions{$action}->();
1230 our $t0 = [ gettimeofday
() ]
1232 our $number_of_git_cmds = 0;
1235 our $first_request = 1;
1240 if ($first_request) {
1241 evaluate_gitweb_config
();
1242 evaluate_git_version
();
1244 if ($per_request_config) {
1245 if (ref($per_request_config) eq 'CODE') {
1246 $per_request_config->();
1247 } elsif (!$first_request) {
1248 evaluate_gitweb_config
();
1253 # $projectroot and $projects_list might be set in gitweb config file
1254 $projects_list ||= $projectroot;
1256 evaluate_query_params
();
1257 evaluate_path_info
();
1258 evaluate_and_validate_params
();
1261 configure_gitweb_features
();
1266 our $is_last_request = sub { 1 };
1267 our ($pre_dispatch_hook, $post_dispatch_hook, $pre_listen_hook);
1270 sub configure_as_fcgi
{
1272 our $CGI = 'CGI::Fast';
1274 my $request_number = 0;
1275 # let each child service 100 requests
1276 our $is_last_request = sub { ++$request_number > 100 };
1279 my $script_name = $ENV{'SCRIPT_NAME'} || $ENV{'SCRIPT_FILENAME'} || __FILE__
;
1281 if $script_name =~ /\.fcgi$/;
1283 return unless (@ARGV);
1285 require Getopt
::Long
;
1286 Getopt
::Long
::GetOptions
(
1287 'fastcgi|fcgi|f' => \
&configure_as_fcgi
,
1288 'nproc|n=i' => sub {
1289 my ($arg, $val) = @_;
1290 return unless eval { require FCGI
::ProcManager
; 1; };
1291 my $proc_manager = FCGI
::ProcManager-
>new({
1292 n_processes
=> $val,
1294 our $pre_listen_hook = sub { $proc_manager->pm_manage() };
1295 our $pre_dispatch_hook = sub { $proc_manager->pm_pre_dispatch() };
1296 our $post_dispatch_hook = sub { $proc_manager->pm_post_dispatch() };
1305 $pre_listen_hook->()
1306 if $pre_listen_hook;
1309 while ($cgi = $CGI->new()) {
1310 $pre_dispatch_hook->()
1311 if $pre_dispatch_hook;
1315 $post_dispatch_hook->()
1316 if $post_dispatch_hook;
1319 last REQUEST
if ($is_last_request->());
1328 if (defined caller) {
1329 # wrapped in a subroutine processing requests,
1330 # e.g. mod_perl with ModPerl::Registry, or PSGI with Plack::App::WrapCGI
1333 # pure CGI script, serving single request
1337 ## ======================================================================
1340 # possible values of extra options
1341 # -full => 0|1 - use absolute/full URL ($my_uri/$my_url as base)
1342 # -replay => 1 - start from a current view (replay with modifications)
1343 # -path_info => 0|1 - don't use/use path_info URL (if possible)
1344 # -anchor => ANCHOR - add #ANCHOR to end of URL, implies -replay if used alone
1347 # default is to use -absolute url() i.e. $my_uri
1348 my $href = $params{-full
} ? $my_url : $my_uri;
1350 # implicit -replay, must be first of implicit params
1351 $params{-replay
} = 1 if (keys %params == 1 && $params{-anchor
});
1353 $params{'project'} = $project unless exists $params{'project'};
1355 if ($params{-replay
}) {
1356 while (my ($name, $symbol) = each %cgi_param_mapping) {
1357 if (!exists $params{$name}) {
1358 $params{$name} = $input_params{$name};
1363 my $use_pathinfo = gitweb_check_feature
('pathinfo');
1364 if (defined $params{'project'} &&
1365 (exists $params{-path_info
} ? $params{-path_info
} : $use_pathinfo)) {
1366 # try to put as many parameters as possible in PATH_INFO:
1369 # - hash_parent or hash_parent_base:/file_parent
1370 # - hash or hash_base:/filename
1371 # - the snapshot_format as an appropriate suffix
1373 # When the script is the root DirectoryIndex for the domain,
1374 # $href here would be something like http://gitweb.example.com/
1375 # Thus, we strip any trailing / from $href, to spare us double
1376 # slashes in the final URL
1379 # Then add the project name, if present
1380 $href .= "/".esc_path_info
($params{'project'});
1381 delete $params{'project'};
1383 # since we destructively absorb parameters, we keep this
1384 # boolean that remembers if we're handling a snapshot
1385 my $is_snapshot = $params{'action'} eq 'snapshot';
1387 # Summary just uses the project path URL, any other action is
1389 if (defined $params{'action'}) {
1390 $href .= "/".esc_path_info
($params{'action'})
1391 unless $params{'action'} eq 'summary';
1392 delete $params{'action'};
1395 # Next, we put hash_parent_base:/file_parent..hash_base:/file_name,
1396 # stripping nonexistent or useless pieces
1397 $href .= "/" if ($params{'hash_base'} || $params{'hash_parent_base'}
1398 || $params{'hash_parent'} || $params{'hash'});
1399 if (defined $params{'hash_base'}) {
1400 if (defined $params{'hash_parent_base'}) {
1401 $href .= esc_path_info
($params{'hash_parent_base'});
1402 # skip the file_parent if it's the same as the file_name
1403 if (defined $params{'file_parent'}) {
1404 if (defined $params{'file_name'} && $params{'file_parent'} eq $params{'file_name'}) {
1405 delete $params{'file_parent'};
1406 } elsif ($params{'file_parent'} !~ /\.\./) {
1407 $href .= ":/".esc_path_info
($params{'file_parent'});
1408 delete $params{'file_parent'};
1412 delete $params{'hash_parent'};
1413 delete $params{'hash_parent_base'};
1414 } elsif (defined $params{'hash_parent'}) {
1415 $href .= esc_path_info
($params{'hash_parent'}). "..";
1416 delete $params{'hash_parent'};
1419 $href .= esc_path_info
($params{'hash_base'});
1420 if (defined $params{'file_name'} && $params{'file_name'} !~ /\.\./) {
1421 $href .= ":/".esc_path_info
($params{'file_name'});
1422 delete $params{'file_name'};
1424 delete $params{'hash'};
1425 delete $params{'hash_base'};
1426 } elsif (defined $params{'hash'}) {
1427 $href .= esc_path_info
($params{'hash'});
1428 delete $params{'hash'};
1431 # If the action was a snapshot, we can absorb the
1432 # snapshot_format parameter too
1434 my $fmt = $params{'snapshot_format'};
1435 # snapshot_format should always be defined when href()
1436 # is called, but just in case some code forgets, we
1437 # fall back to the default
1438 $fmt ||= $snapshot_fmts[0];
1439 $href .= $known_snapshot_formats{$fmt}{'suffix'};
1440 delete $params{'snapshot_format'};
1444 # now encode the parameters explicitly
1446 for (my $i = 0; $i < @cgi_param_mapping; $i += 2) {
1447 my ($name, $symbol) = ($cgi_param_mapping[$i], $cgi_param_mapping[$i+1]);
1448 if (defined $params{$name}) {
1449 if (ref($params{$name}) eq "ARRAY") {
1450 foreach my $par (@{$params{$name}}) {
1451 push @result, $symbol . "=" . esc_param
($par);
1454 push @result, $symbol . "=" . esc_param
($params{$name});
1458 $href .= "?" . join(';', @result) if scalar @result;
1460 # final transformation: trailing spaces must be escaped (URI-encoded)
1461 $href =~ s/(\s+)$/CGI::escape($1)/e;
1463 if ($params{-anchor
}) {
1464 $href .= "#".esc_param
($params{-anchor
});
1471 ## ======================================================================
1472 ## validation, quoting/unquoting and escaping
1474 sub is_valid_action
{
1476 return undef unless exists $actions{$input};
1480 sub is_valid_project
{
1483 return unless defined $input;
1484 if (!is_valid_pathname
($input) ||
1485 !(-d
"$projectroot/$input") ||
1486 !check_export_ok
("$projectroot/$input") ||
1487 ($strict_export && !project_in_list
($input))) {
1494 sub is_valid_pathname
{
1497 return undef unless defined $input;
1498 # no '.' or '..' as elements of path, i.e. no '.' or '..'
1499 # at the beginning, at the end, and between slashes.
1500 # also this catches doubled slashes
1501 if ($input =~ m!(^|/)(|\.|\.\.)(/|$)!) {
1504 # no null characters
1505 if ($input =~ m!\0!) {
1511 sub is_valid_ref_format
{
1514 return undef unless defined $input;
1515 # restrictions on ref name according to git-check-ref-format
1516 if ($input =~ m!(/\.|\.\.|[\000-\040\177 ~^:?*\[]|/$)!) {
1522 sub is_valid_refname
{
1525 return undef unless defined $input;
1526 # textual hashes are O.K.
1527 if ($input =~ m/^[0-9a-fA-F]{40}$/) {
1530 # it must be correct pathname
1531 is_valid_pathname
($input) or return undef;
1532 # check git-check-ref-format restrictions
1533 is_valid_ref_format
($input) or return undef;
1537 # decode sequences of octets in utf8 into Perl's internal form,
1538 # which is utf-8 with utf8 flag set if needed. gitweb writes out
1539 # in utf-8 thanks to "binmode STDOUT, ':utf8'" at beginning
1542 return undef unless defined $str;
1544 if (utf8
::is_utf8
($str) || utf8
::decode
($str)) {
1547 return decode
($fallback_encoding, $str, Encode
::FB_DEFAULT
);
1551 # quote unsafe chars, but keep the slash, even when it's not
1552 # correct, but quoted slashes look too horrible in bookmarks
1555 return undef unless defined $str;
1556 $str =~ s/([^A-Za-z0-9\-_.~()\/:@ ]+)/CGI
::escape
($1)/eg
;
1561 # the quoting rules for path_info fragment are slightly different
1564 return undef unless defined $str;
1566 # path_info doesn't treat '+' as space (specially), but '?' must be escaped
1567 $str =~ s/([^A-Za-z0-9\-_.~();\/;:@&= +]+)/CGI
::escape
($1)/eg
;
1572 # quote unsafe chars in whole URL, so some characters cannot be quoted
1575 return undef unless defined $str;
1576 $str =~ s/([^A-Za-z0-9\-_.~();\/;?:@&= ]+)/CGI
::escape
($1)/eg
;
1581 # quote unsafe characters in HTML attributes
1584 # for XHTML conformance escaping '"' to '"' is not enough
1585 return esc_html
(@_);
1588 # replace invalid utf8 character with SUBSTITUTION sequence
1593 return undef unless defined $str;
1595 $str = to_utf8
($str);
1596 $str = $cgi->escapeHTML($str);
1597 if ($opts{'-nbsp'}) {
1598 $str =~ s/ / /g;
1600 $str =~ s
|([[:cntrl
:]])|(($1 ne "\t") ? quot_cec
($1) : $1)|eg
;
1604 # quote control characters and escape filename to HTML
1609 return undef unless defined $str;
1611 $str = to_utf8
($str);
1612 $str = $cgi->escapeHTML($str);
1613 if ($opts{'-nbsp'}) {
1614 $str =~ s/ / /g;
1616 $str =~ s
|([[:cntrl
:]])|quot_cec
($1)|eg
;
1620 # Sanitize for use in XHTML + application/xml+xhtm (valid XML 1.0)
1624 return undef unless defined $str;
1626 $str = to_utf8
($str);
1627 $str =~ s
|([[:cntrl
:]])|(index("\t\n\r", $1) != -1 ? $1 : quot_cec
($1))|eg
;
1631 # Make control characters "printable", using character escape codes (CEC)
1635 my %es = ( # character escape codes, aka escape sequences
1636 "\t" => '\t', # tab (HT)
1637 "\n" => '\n', # line feed (LF)
1638 "\r" => '\r', # carrige return (CR)
1639 "\f" => '\f', # form feed (FF)
1640 "\b" => '\b', # backspace (BS)
1641 "\a" => '\a', # alarm (bell) (BEL)
1642 "\e" => '\e', # escape (ESC)
1643 "\013" => '\v', # vertical tab (VT)
1644 "\000" => '\0', # nul character (NUL)
1646 my $chr = ( (exists $es{$cntrl})
1648 : sprintf('\%2x', ord($cntrl)) );
1649 if ($opts{-nohtml
}) {
1652 return "<span class=\"cntrl\">$chr</span>";
1656 # Alternatively use unicode control pictures codepoints,
1657 # Unicode "printable representation" (PR)
1662 my $chr = sprintf('&#%04d;', 0x2400+ord($cntrl));
1663 if ($opts{-nohtml
}) {
1666 return "<span class=\"cntrl\">$chr</span>";
1670 # git may return quoted and escaped filenames
1676 my %es = ( # character escape codes, aka escape sequences
1677 't' => "\t", # tab (HT, TAB)
1678 'n' => "\n", # newline (NL)
1679 'r' => "\r", # return (CR)
1680 'f' => "\f", # form feed (FF)
1681 'b' => "\b", # backspace (BS)
1682 'a' => "\a", # alarm (bell) (BEL)
1683 'e' => "\e", # escape (ESC)
1684 'v' => "\013", # vertical tab (VT)
1687 if ($seq =~ m/^[0-7]{1,3}$/) {
1688 # octal char sequence
1689 return chr(oct($seq));
1690 } elsif (exists $es{$seq}) {
1691 # C escape sequence, aka character escape code
1694 # quoted ordinary character
1698 if ($str =~ m/^"(.*)"$/) {
1701 $str =~ s/\\([^0-7]|[0-7]{1,3})/unq($1)/eg;
1706 # escape tabs (convert tabs to spaces)
1710 while ((my $pos = index($line, "\t")) != -1) {
1711 if (my $count = (8 - ($pos % 8))) {
1712 my $spaces = ' ' x
$count;
1713 $line =~ s/\t/$spaces/;
1720 sub project_in_list
{
1721 my $project = shift;
1722 my @list = git_get_projects_list
();
1723 return @list && scalar(grep { $_->{'path'} eq $project } @list);
1726 ## ----------------------------------------------------------------------
1727 ## HTML aware string manipulation
1729 # Try to chop given string on a word boundary between position
1730 # $len and $len+$add_len. If there is no word boundary there,
1731 # chop at $len+$add_len. Do not chop if chopped part plus ellipsis
1732 # (marking chopped part) would be longer than given string.
1736 my $add_len = shift || 10;
1737 my $where = shift || 'right'; # 'left' | 'center' | 'right'
1739 # Make sure perl knows it is utf8 encoded so we don't
1740 # cut in the middle of a utf8 multibyte char.
1741 $str = to_utf8
($str);
1743 # allow only $len chars, but don't cut a word if it would fit in $add_len
1744 # if it doesn't fit, cut it if it's still longer than the dots we would add
1745 # remove chopped character entities entirely
1747 # when chopping in the middle, distribute $len into left and right part
1748 # return early if chopping wouldn't make string shorter
1749 if ($where eq 'center') {
1750 return $str if ($len + 5 >= length($str)); # filler is length 5
1753 return $str if ($len + 4 >= length($str)); # filler is length 4
1756 # regexps: ending and beginning with word part up to $add_len
1757 my $endre = qr/.{$len}\w{0,$add_len}/;
1758 my $begre = qr/\w{0,$add_len}.{$len}/;
1760 if ($where eq 'left') {
1761 $str =~ m/^(.*?)($begre)$/;
1762 my ($lead, $body) = ($1, $2);
1763 if (length($lead) > 4) {
1766 return "$lead$body";
1768 } elsif ($where eq 'center') {
1769 $str =~ m/^($endre)(.*)$/;
1770 my ($left, $str) = ($1, $2);
1771 $str =~ m/^(.*?)($begre)$/;
1772 my ($mid, $right) = ($1, $2);
1773 if (length($mid) > 5) {
1776 return "$left$mid$right";
1779 $str =~ m/^($endre)(.*)$/;
1782 if (length($tail) > 4) {
1785 return "$body$tail";
1789 # takes the same arguments as chop_str, but also wraps a <span> around the
1790 # result with a title attribute if it does get chopped. Additionally, the
1791 # string is HTML-escaped.
1792 sub chop_and_escape_str
{
1795 my $chopped = chop_str
(@_);
1796 $str = to_utf8
($str);
1797 if ($chopped eq $str) {
1798 return esc_html
($chopped);
1800 $str =~ s/[[:cntrl:]]/?/g;
1801 return $cgi->span({-title
=>$str}, esc_html
($chopped));
1805 # Highlight selected fragments of string, using given CSS class,
1806 # and escape HTML. It is assumed that fragments do not overlap.
1807 # Regions are passed as list of pairs (array references).
1809 # Example: esc_html_hl_regions("foobar", "mark", [ 0, 3 ]) returns
1810 # '<span class="mark">foo</span>bar'
1811 sub esc_html_hl_regions
{
1812 my ($str, $css_class, @sel) = @_;
1813 my %opts = grep { ref($_) ne 'ARRAY' } @sel;
1814 @sel = grep { ref($_) eq 'ARRAY' } @sel;
1815 return esc_html
($str, %opts) unless @sel;
1821 my ($begin, $end) = @$s;
1823 # Don't create empty <span> elements.
1824 next if $end <= $begin;
1826 my $escaped = esc_html
(substr($str, $begin, $end - $begin),
1829 $out .= esc_html
(substr($str, $pos, $begin - $pos), %opts)
1830 if ($begin - $pos > 0);
1831 $out .= $cgi->span({-class => $css_class}, $escaped);
1835 $out .= esc_html
(substr($str, $pos), %opts)
1836 if ($pos < length($str));
1841 # return positions of beginning and end of each match
1843 my ($str, $regexp) = @_;
1844 return unless (defined $str && defined $regexp);
1847 while ($str =~ /$regexp/g) {
1848 push @matches, [$-[0], $+[0]];
1853 # highlight match (if any), and escape HTML
1854 sub esc_html_match_hl
{
1855 my ($str, $regexp) = @_;
1856 return esc_html
($str) unless defined $regexp;
1858 my @matches = matchpos_list
($str, $regexp);
1859 return esc_html
($str) unless @matches;
1861 return esc_html_hl_regions
($str, 'match', @matches);
1865 # highlight match (if any) of shortened string, and escape HTML
1866 sub esc_html_match_hl_chopped
{
1867 my ($str, $chopped, $regexp) = @_;
1868 return esc_html_match_hl
($str, $regexp) unless defined $chopped;
1870 my @matches = matchpos_list
($str, $regexp);
1871 return esc_html
($chopped) unless @matches;
1873 # filter matches so that we mark chopped string
1874 my $tail = "... "; # see chop_str
1875 unless ($chopped =~ s/\Q$tail\E$//) {
1878 my $chop_len = length($chopped);
1879 my $tail_len = length($tail);
1882 for my $m (@matches) {
1883 if ($m->[0] > $chop_len) {
1884 push @filtered, [ $chop_len, $chop_len + $tail_len ] if ($tail_len > 0);
1886 } elsif ($m->[1] > $chop_len) {
1887 push @filtered, [ $m->[0], $chop_len + $tail_len ];
1893 return esc_html_hl_regions
($chopped . $tail, 'match', @filtered);
1896 ## ----------------------------------------------------------------------
1897 ## functions returning short strings
1899 # CSS class for given age value (in seconds)
1903 if (!defined $age) {
1905 } elsif ($age < 60*60*2) {
1907 } elsif ($age < 60*60*24*2) {
1914 # convert age in seconds to "nn units ago" string
1919 if ($age > 60*60*24*365*2) {
1920 $age_str = (int $age/60/60/24/365);
1921 $age_str .= " years ago";
1922 } elsif ($age > 60*60*24*(365/12)*2) {
1923 $age_str = int $age/60/60/24/(365/12);
1924 $age_str .= " months ago";
1925 } elsif ($age > 60*60*24*7*2) {
1926 $age_str = int $age/60/60/24/7;
1927 $age_str .= " weeks ago";
1928 } elsif ($age > 60*60*24*2) {
1929 $age_str = int $age/60/60/24;
1930 $age_str .= " days ago";
1931 } elsif ($age > 60*60*2) {
1932 $age_str = int $age/60/60;
1933 $age_str .= " hours ago";
1934 } elsif ($age > 60*2) {
1935 $age_str = int $age/60;
1936 $age_str .= " min ago";
1937 } elsif ($age > 2) {
1938 $age_str = int $age;
1939 $age_str .= " sec ago";
1941 $age_str .= " right now";
1947 S_IFINVALID
=> 0030000,
1948 S_IFGITLINK
=> 0160000,
1951 # submodule/subproject, a commit object reference
1955 return (($mode & S_IFMT
) == S_IFGITLINK
)
1958 # convert file mode in octal to symbolic file mode string
1960 my $mode = oct shift;
1962 if (S_ISGITLINK
($mode)) {
1963 return 'm---------';
1964 } elsif (S_ISDIR
($mode & S_IFMT
)) {
1965 return 'drwxr-xr-x';
1966 } elsif (S_ISLNK
($mode)) {
1967 return 'lrwxrwxrwx';
1968 } elsif (S_ISREG
($mode)) {
1969 # git cares only about the executable bit
1970 if ($mode & S_IXUSR
) {
1971 return '-rwxr-xr-x';
1973 return '-rw-r--r--';
1976 return '----------';
1980 # convert file mode in octal to file type string
1984 if ($mode !~ m/^[0-7]+$/) {
1990 if (S_ISGITLINK
($mode)) {
1992 } elsif (S_ISDIR
($mode & S_IFMT
)) {
1994 } elsif (S_ISLNK
($mode)) {
1996 } elsif (S_ISREG
($mode)) {
2003 # convert file mode in octal to file type description string
2004 sub file_type_long
{
2007 if ($mode !~ m/^[0-7]+$/) {
2013 if (S_ISGITLINK
($mode)) {
2015 } elsif (S_ISDIR
($mode & S_IFMT
)) {
2017 } elsif (S_ISLNK
($mode)) {
2019 } elsif (S_ISREG
($mode)) {
2020 if ($mode & S_IXUSR
) {
2021 return "executable";
2031 ## ----------------------------------------------------------------------
2032 ## functions returning short HTML fragments, or transforming HTML fragments
2033 ## which don't belong to other sections
2035 # format line of commit message.
2036 sub format_log_line_html
{
2039 $line = esc_html
($line, -nbsp
=>1);
2040 $line =~ s
{\b([0-9a-fA-F
]{8,40})\b}{
2041 $cgi->a({-href
=> href
(action
=>"object", hash
=>$1),
2042 -class => "text"}, $1);
2048 # format marker of refs pointing to given object
2050 # the destination action is chosen based on object type and current context:
2051 # - for annotated tags, we choose the tag view unless it's the current view
2052 # already, in which case we go to shortlog view
2053 # - for other refs, we keep the current view if we're in history, shortlog or
2054 # log view, and select shortlog otherwise
2055 sub format_ref_marker
{
2056 my ($refs, $id) = @_;
2059 if (defined $refs->{$id}) {
2060 foreach my $ref (@{$refs->{$id}}) {
2061 # this code exploits the fact that non-lightweight tags are the
2062 # only indirect objects, and that they are the only objects for which
2063 # we want to use tag instead of shortlog as action
2064 my ($type, $name) = qw();
2065 my $indirect = ($ref =~ s/\^\{\}$//);
2066 # e.g. tags/v2.6.11 or heads/next
2067 if ($ref =~ m!^(.*?)s?/(.*)$!) {
2076 $class .= " indirect" if $indirect;
2078 my $dest_action = "shortlog";
2081 $dest_action = "tag" unless $action eq "tag";
2082 } elsif ($action =~ /^(history|(short)?log)$/) {
2083 $dest_action = $action;
2087 $dest .= "refs/" unless $ref =~ m
!^refs
/!;
2090 my $link = $cgi->a({
2092 action
=>$dest_action,
2094 )}, esc_html
($name));
2096 $markers .= " <span class=\"".esc_attr
($class)."\" title=\"".esc_attr
($ref)."\">" .
2102 return ' <span class="refs">'. $markers . '</span>';
2108 # format, perhaps shortened and with markers, title line
2109 sub format_subject_html
{
2110 my ($long, $short, $href, $extra) = @_;
2111 $extra = '' unless defined($extra);
2113 if (length($short) < length($long)) {
2114 $long =~ s/[[:cntrl:]]/?/g;
2115 return $cgi->a({-href
=> $href, -class => "list subject",
2116 -title
=> to_utf8
($long)},
2117 esc_html
($short)) . $extra;
2119 return $cgi->a({-href
=> $href, -class => "list subject"},
2120 esc_html
($long)) . $extra;
2124 # Rather than recomputing the url for an email multiple times, we cache it
2125 # after the first hit. This gives a visible benefit in views where the avatar
2126 # for the same email is used repeatedly (e.g. shortlog).
2127 # The cache is shared by all avatar engines (currently gravatar only), which
2128 # are free to use it as preferred. Since only one avatar engine is used for any
2129 # given page, there's no risk for cache conflicts.
2130 our %avatar_cache = ();
2132 # Compute the picon url for a given email, by using the picon search service over at
2133 # http://www.cs.indiana.edu/picons/search.html
2135 my $email = lc shift;
2136 if (!$avatar_cache{$email}) {
2137 my ($user, $domain) = split('@', $email);
2138 $avatar_cache{$email} =
2139 "//www.cs.indiana.edu/cgi-pub/kinzler/piconsearch.cgi/" .
2141 "users+domains+unknown/up/single";
2143 return $avatar_cache{$email};
2146 # Compute the gravatar url for a given email, if it's not in the cache already.
2147 # Gravatar stores only the part of the URL before the size, since that's the
2148 # one computationally more expensive. This also allows reuse of the cache for
2149 # different sizes (for this particular engine).
2151 my $email = lc shift;
2153 $avatar_cache{$email} ||=
2154 "//www.gravatar.com/avatar/" .
2155 Digest
::MD5
::md5_hex
($email) . "?s=";
2156 return $avatar_cache{$email} . $size;
2159 # Insert an avatar for the given $email at the given $size if the feature
2161 sub git_get_avatar
{
2162 my ($email, %opts) = @_;
2163 my $pre_white = ($opts{-pad_before
} ? " " : "");
2164 my $post_white = ($opts{-pad_after
} ? " " : "");
2165 $opts{-size
} ||= 'default';
2166 my $size = $avatar_size{$opts{-size
}} || $avatar_size{'default'};
2168 if ($git_avatar eq 'gravatar') {
2169 $url = gravatar_url
($email, $size);
2170 } elsif ($git_avatar eq 'picon') {
2171 $url = picon_url
($email);
2173 # Other providers can be added by extending the if chain, defining $url
2174 # as needed. If no variant puts something in $url, we assume avatars
2175 # are completely disabled/unavailable.
2178 "<img width=\"$size\" " .
2179 "class=\"avatar\" " .
2180 "src=\"".esc_url
($url)."\" " .
2188 sub format_search_author
{
2189 my ($author, $searchtype, $displaytext) = @_;
2190 my $have_search = gitweb_check_feature
('search');
2194 if ($searchtype eq 'author') {
2195 $performed = "authored";
2196 } elsif ($searchtype eq 'committer') {
2197 $performed = "committed";
2200 return $cgi->a({-href
=> href
(action
=>"search", hash
=>$hash,
2201 searchtext
=>$author,
2202 searchtype
=>$searchtype), class=>"list",
2203 title
=>"Search for commits $performed by $author"},
2207 return $displaytext;
2211 # format the author name of the given commit with the given tag
2212 # the author name is chopped and escaped according to the other
2213 # optional parameters (see chop_str).
2214 sub format_author_html
{
2217 my $author = chop_and_escape_str
($co->{'author_name'}, @_);
2218 return "<$tag class=\"author\">" .
2219 format_search_author
($co->{'author_name'}, "author",
2220 git_get_avatar
($co->{'author_email'}, -pad_after
=> 1) .
2225 # format git diff header line, i.e. "diff --(git|combined|cc) ..."
2226 sub format_git_diff_header_line
{
2228 my $diffinfo = shift;
2229 my ($from, $to) = @_;
2231 if ($diffinfo->{'nparents'}) {
2233 $line =~ s!^(diff (.*?) )"?.*$!$1!;
2234 if ($to->{'href'}) {
2235 $line .= $cgi->a({-href
=> $to->{'href'}, -class => "path"},
2236 esc_path
($to->{'file'}));
2237 } else { # file was deleted (no href)
2238 $line .= esc_path
($to->{'file'});
2242 $line =~ s!^(diff (.*?) )"?a/.*$!$1!;
2243 if ($from->{'href'}) {
2244 $line .= $cgi->a({-href
=> $from->{'href'}, -class => "path"},
2245 'a/' . esc_path
($from->{'file'}));
2246 } else { # file was added (no href)
2247 $line .= 'a/' . esc_path
($from->{'file'});
2250 if ($to->{'href'}) {
2251 $line .= $cgi->a({-href
=> $to->{'href'}, -class => "path"},
2252 'b/' . esc_path
($to->{'file'}));
2253 } else { # file was deleted
2254 $line .= 'b/' . esc_path
($to->{'file'});
2258 return "<div class=\"diff header\">$line</div>\n";
2261 # format extended diff header line, before patch itself
2262 sub format_extended_diff_header_line
{
2264 my $diffinfo = shift;
2265 my ($from, $to) = @_;
2268 if ($line =~ s!^((copy|rename) from ).*$!$1! && $from->{'href'}) {
2269 $line .= $cgi->a({-href
=>$from->{'href'}, -class=>"path"},
2270 esc_path
($from->{'file'}));
2272 if ($line =~ s!^((copy|rename) to ).*$!$1! && $to->{'href'}) {
2273 $line .= $cgi->a({-href
=>$to->{'href'}, -class=>"path"},
2274 esc_path
($to->{'file'}));
2276 # match single <mode>
2277 if ($line =~ m/\s(\d{6})$/) {
2278 $line .= '<span class="info"> (' .
2279 file_type_long
($1) .
2283 if ($line =~ m/^index [0-9a-fA-F]{40},[0-9a-fA-F]{40}/) {
2284 # can match only for combined diff
2286 for (my $i = 0; $i < $diffinfo->{'nparents'}; $i++) {
2287 if ($from->{'href'}[$i]) {
2288 $line .= $cgi->a({-href
=>$from->{'href'}[$i],
2290 substr($diffinfo->{'from_id'}[$i],0,7));
2295 $line .= ',' if ($i < $diffinfo->{'nparents'} - 1);
2298 if ($to->{'href'}) {
2299 $line .= $cgi->a({-href
=>$to->{'href'}, -class=>"hash"},
2300 substr($diffinfo->{'to_id'},0,7));
2305 } elsif ($line =~ m/^index [0-9a-fA-F]{40}..[0-9a-fA-F]{40}/) {
2306 # can match only for ordinary diff
2307 my ($from_link, $to_link);
2308 if ($from->{'href'}) {
2309 $from_link = $cgi->a({-href
=>$from->{'href'}, -class=>"hash"},
2310 substr($diffinfo->{'from_id'},0,7));
2312 $from_link = '0' x
7;
2314 if ($to->{'href'}) {
2315 $to_link = $cgi->a({-href
=>$to->{'href'}, -class=>"hash"},
2316 substr($diffinfo->{'to_id'},0,7));
2320 my ($from_id, $to_id) = ($diffinfo->{'from_id'}, $diffinfo->{'to_id'});
2321 $line =~ s!$from_id\.\.$to_id!$from_link..$to_link!;
2324 return $line . "<br/>\n";
2327 # format from-file/to-file diff header
2328 sub format_diff_from_to_header
{
2329 my ($from_line, $to_line, $diffinfo, $from, $to, @parents) = @_;
2334 #assert($line =~ m/^---/) if DEBUG;
2335 # no extra formatting for "^--- /dev/null"
2336 if (! $diffinfo->{'nparents'}) {
2337 # ordinary (single parent) diff
2338 if ($line =~ m!^--- "?a/!) {
2339 if ($from->{'href'}) {
2341 $cgi->a({-href
=>$from->{'href'}, -class=>"path"},
2342 esc_path
($from->{'file'}));
2345 esc_path
($from->{'file'});
2348 $result .= qq
!<div
class="diff from_file">$line</div
>\n!;
2351 # combined diff (merge commit)
2352 for (my $i = 0; $i < $diffinfo->{'nparents'}; $i++) {
2353 if ($from->{'href'}[$i]) {
2355 $cgi->a({-href
=>href
(action
=>"blobdiff",
2356 hash_parent
=>$diffinfo->{'from_id'}[$i],
2357 hash_parent_base
=>$parents[$i],
2358 file_parent
=>$from->{'file'}[$i],
2359 hash
=>$diffinfo->{'to_id'},
2361 file_name
=>$to->{'file'}),
2363 -title
=>"diff" . ($i+1)},
2366 $cgi->a({-href
=>$from->{'href'}[$i], -class=>"path"},
2367 esc_path
($from->{'file'}[$i]));
2369 $line = '--- /dev/null';
2371 $result .= qq
!<div
class="diff from_file">$line</div
>\n!;
2376 #assert($line =~ m/^\+\+\+/) if DEBUG;
2377 # no extra formatting for "^+++ /dev/null"
2378 if ($line =~ m!^\+\+\+ "?b/!) {
2379 if ($to->{'href'}) {
2381 $cgi->a({-href
=>$to->{'href'}, -class=>"path"},
2382 esc_path
($to->{'file'}));
2385 esc_path
($to->{'file'});
2388 $result .= qq
!<div
class="diff to_file">$line</div
>\n!;
2393 # create note for patch simplified by combined diff
2394 sub format_diff_cc_simplified
{
2395 my ($diffinfo, @parents) = @_;
2398 $result .= "<div class=\"diff header\">" .
2400 if (!is_deleted
($diffinfo)) {
2401 $result .= $cgi->a({-href
=> href
(action
=>"blob",
2403 hash
=>$diffinfo->{'to_id'},
2404 file_name
=>$diffinfo->{'to_file'}),
2406 esc_path
($diffinfo->{'to_file'}));
2408 $result .= esc_path
($diffinfo->{'to_file'});
2410 $result .= "</div>\n" . # class="diff header"
2411 "<div class=\"diff nodifferences\">" .
2413 "</div>\n"; # class="diff nodifferences"
2418 sub diff_line_class
{
2419 my ($line, $from, $to) = @_;
2424 if ($from && $to && ref($from->{'href'}) eq "ARRAY") {
2425 $num_sign = scalar @{$from->{'href'}};
2428 my @diff_line_classifier = (
2429 { regexp
=> qr/^\@\@{$num_sign} /, class => "chunk_header"},
2430 { regexp
=> qr/^\\/, class => "incomplete" },
2431 { regexp
=> qr/^ {$num_sign}/, class => "ctx" },
2432 # classifier for context must come before classifier add/rem,
2433 # or we would have to use more complicated regexp, for example
2434 # qr/(?= {0,$m}\+)[+ ]{$num_sign}/, where $m = $num_sign - 1;
2435 { regexp
=> qr/^[+ ]{$num_sign}/, class => "add" },
2436 { regexp
=> qr/^[- ]{$num_sign}/, class => "rem" },
2438 for my $clsfy (@diff_line_classifier) {
2439 return $clsfy->{'class'}
2440 if ($line =~ $clsfy->{'regexp'});
2447 # assumes that $from and $to are defined and correctly filled,
2448 # and that $line holds a line of chunk header for unified diff
2449 sub format_unidiff_chunk_header
{
2450 my ($line, $from, $to) = @_;
2452 my ($from_text, $from_start, $from_lines, $to_text, $to_start, $to_lines, $section) =
2453 $line =~ m/^\@{2} (-(\d+)(?:,(\d+))?) (\+(\d+)(?:,(\d+))?) \@{2}(.*)$/;
2455 $from_lines = 0 unless defined $from_lines;
2456 $to_lines = 0 unless defined $to_lines;
2458 if ($from->{'href'}) {
2459 $from_text = $cgi->a({-href
=>"$from->{'href'}#l$from_start",
2460 -class=>"list"}, $from_text);
2462 if ($to->{'href'}) {
2463 $to_text = $cgi->a({-href
=>"$to->{'href'}#l$to_start",
2464 -class=>"list"}, $to_text);
2466 $line = "<span class=\"chunk_info\">@@ $from_text $to_text @@</span>" .
2467 "<span class=\"section\">" . esc_html
($section, -nbsp
=>1) . "</span>";
2471 # assumes that $from and $to are defined and correctly filled,
2472 # and that $line holds a line of chunk header for combined diff
2473 sub format_cc_diff_chunk_header
{
2474 my ($line, $from, $to) = @_;
2476 my ($prefix, $ranges, $section) = $line =~ m/^(\@+) (.*?) \@+(.*)$/;
2477 my (@from_text, @from_start, @from_nlines, $to_text, $to_start, $to_nlines);
2479 @from_text = split(' ', $ranges);
2480 for (my $i = 0; $i < @from_text; ++$i) {
2481 ($from_start[$i], $from_nlines[$i]) =
2482 (split(',', substr($from_text[$i], 1)), 0);
2485 $to_text = pop @from_text;
2486 $to_start = pop @from_start;
2487 $to_nlines = pop @from_nlines;
2489 $line = "<span class=\"chunk_info\">$prefix ";
2490 for (my $i = 0; $i < @from_text; ++$i) {
2491 if ($from->{'href'}[$i]) {
2492 $line .= $cgi->a({-href
=>"$from->{'href'}[$i]#l$from_start[$i]",
2493 -class=>"list"}, $from_text[$i]);
2495 $line .= $from_text[$i];
2499 if ($to->{'href'}) {
2500 $line .= $cgi->a({-href
=>"$to->{'href'}#l$to_start",
2501 -class=>"list"}, $to_text);
2505 $line .= " $prefix</span>" .
2506 "<span class=\"section\">" . esc_html
($section, -nbsp
=>1) . "</span>";
2510 # process patch (diff) line (not to be used for diff headers),
2511 # returning HTML-formatted (but not wrapped) line.
2512 # If the line is passed as a reference, it is treated as HTML and not
2514 sub format_diff_line
{
2515 my ($line, $diff_class, $from, $to) = @_;
2521 $line = untabify
($line);
2523 if ($from && $to && $line =~ m/^\@{2} /) {
2524 $line = format_unidiff_chunk_header
($line, $from, $to);
2525 } elsif ($from && $to && $line =~ m/^\@{3}/) {
2526 $line = format_cc_diff_chunk_header
($line, $from, $to);
2528 $line = esc_html
($line, -nbsp
=>1);
2532 my $diff_classes = "diff";
2533 $diff_classes .= " $diff_class" if ($diff_class);
2534 $line = "<div class=\"$diff_classes\">$line</div>\n";
2539 # Generates undef or something like "_snapshot_" or "snapshot (_tbz2_ _zip_)",
2540 # linked. Pass the hash of the tree/commit to snapshot.
2541 sub format_snapshot_links
{
2543 my $num_fmts = @snapshot_fmts;
2544 if ($num_fmts > 1) {
2545 # A parenthesized list of links bearing format names.
2546 # e.g. "snapshot (_tar.gz_ _zip_)"
2547 return "snapshot (" . join(' ', map
2554 }, $known_snapshot_formats{$_}{'display'})
2555 , @snapshot_fmts) . ")";
2556 } elsif ($num_fmts == 1) {
2557 # A single "snapshot" link whose tooltip bears the format name.
2559 my ($fmt) = @snapshot_fmts;
2565 snapshot_format
=>$fmt
2567 -title
=> "in format: $known_snapshot_formats{$fmt}{'display'}"
2569 } else { # $num_fmts == 0
2574 ## ......................................................................
2575 ## functions returning values to be passed, perhaps after some
2576 ## transformation, to other functions; e.g. returning arguments to href()
2578 # returns hash to be passed to href to generate gitweb URL
2579 # in -title key it returns description of link
2581 my $format = shift || 'Atom';
2582 my %res = (action
=> lc($format));
2583 my $matched_ref = 0;
2585 # feed links are possible only for project views
2586 return unless (defined $project);
2587 # some views should link to OPML, or to generic project feed,
2588 # or don't have specific feed yet (so they should use generic)
2589 return if (!$action || $action =~ /^(?:tags|heads|forks|tag|search)$/x);
2592 # branches refs uses 'refs/' + $get_branch_refs()[x] + '/' prefix
2593 # (fullname) to differentiate from tag links; this also makes
2594 # possible to detect branch links
2595 for my $ref (get_branch_refs
()) {
2596 if ((defined $hash_base && $hash_base =~ m!^refs/\Q$ref\E/(.*)$!) ||
2597 (defined $hash && $hash =~ m!^refs/\Q$ref\E/(.*)$!)) {
2599 $matched_ref = $ref;
2603 # find log type for feed description (title)
2605 if (defined $file_name) {
2606 $type = "history of $file_name";
2607 $type .= "/" if ($action eq 'tree');
2608 $type .= " on '$branch'" if (defined $branch);
2610 $type = "log of $branch" if (defined $branch);
2613 $res{-title
} = $type;
2614 $res{'hash'} = (defined $branch ? "refs/$matched_ref/$branch" : undef);
2615 $res{'file_name'} = $file_name;
2620 ## ----------------------------------------------------------------------
2621 ## git utility subroutines, invoking git commands
2623 # returns path to the core git executable and the --git-dir parameter as list
2625 $number_of_git_cmds++;
2626 return $GIT, '--git-dir='.$git_dir;
2629 # quote the given arguments for passing them to the shell
2630 # quote_command("command", "arg 1", "arg with ' and ! characters")
2631 # => "'command' 'arg 1' 'arg with '\'' and '\!' characters'"
2632 # Try to avoid using this function wherever possible.
2635 map { my $a = $_; $a =~ s/(['!])/'\\$1'/g; "'$a'" } @_ );
2638 # get HEAD ref of given project as hash
2639 sub git_get_head_hash
{
2640 return git_get_full_hash
(shift, 'HEAD');
2643 sub git_get_full_hash
{
2644 return git_get_hash
(@_);
2647 sub git_get_short_hash
{
2648 return git_get_hash
(@_, '--short=7');
2652 my ($project, $hash, @options) = @_;
2653 my $o_git_dir = $git_dir;
2655 $git_dir = "$projectroot/$project";
2656 if (open my $fd, '-|', git_cmd
(), 'rev-parse',
2657 '--verify', '-q', @options, $hash) {
2659 chomp $retval if defined $retval;
2662 if (defined $o_git_dir) {
2663 $git_dir = $o_git_dir;
2668 # get type of given object
2672 open my $fd, "-|", git_cmd
(), "cat-file", '-t', $hash or return;
2674 close $fd or return;
2679 # repository configuration
2680 our $config_file = '';
2683 # store multiple values for single key as anonymous array reference
2684 # single values stored directly in the hash, not as [ <value> ]
2685 sub hash_set_multi
{
2686 my ($hash, $key, $value) = @_;
2688 if (!exists $hash->{$key}) {
2689 $hash->{$key} = $value;
2690 } elsif (!ref $hash->{$key}) {
2691 $hash->{$key} = [ $hash->{$key}, $value ];
2693 push @{$hash->{$key}}, $value;
2697 # return hash of git project configuration
2698 # optionally limited to some section, e.g. 'gitweb'
2699 sub git_parse_project_config
{
2700 my $section_regexp = shift;
2705 open my $fh, "-|", git_cmd
(), "config", '-z', '-l',
2708 while (my $keyval = <$fh>) {
2710 my ($key, $value) = split(/\n/, $keyval, 2);
2712 hash_set_multi
(\
%config, $key, $value)
2713 if (!defined $section_regexp || $key =~ /^(?:$section_regexp)\./o);
2720 # convert config value to boolean: 'true' or 'false'
2721 # no value, number > 0, 'true' and 'yes' values are true
2722 # rest of values are treated as false (never as error)
2723 sub config_to_bool
{
2726 return 1 if !defined $val; # section.key
2728 # strip leading and trailing whitespace
2732 return (($val =~ /^\d+$/ && $val) || # section.key = 1
2733 ($val =~ /^(?:true|yes)$/i)); # section.key = true
2736 # convert config value to simple decimal number
2737 # an optional value suffix of 'k', 'm', or 'g' will cause the value
2738 # to be multiplied by 1024, 1048576, or 1073741824
2742 # strip leading and trailing whitespace
2746 if (my ($num, $unit) = ($val =~ /^([0-9]*)([kmg])$/i)) {
2748 # unknown unit is treated as 1
2749 return $num * ($unit eq 'g' ? 1073741824 :
2750 $unit eq 'm' ? 1048576 :
2751 $unit eq 'k' ? 1024 : 1);
2756 # convert config value to array reference, if needed
2757 sub config_to_multi
{
2760 return ref($val) ? $val : (defined($val) ? [ $val ] : []);
2763 sub git_get_project_config
{
2764 my ($key, $type) = @_;
2766 return unless defined $git_dir;
2769 return unless ($key);
2770 # only subsection, if exists, is case sensitive,
2771 # and not lowercased by 'git config -z -l'
2772 if (my ($hi, $mi, $lo) = ($key =~ /^([^.]*)\.(.*)\.([^.]*)$/)) {
2774 $key = join(".", lc($hi), $mi, lc($lo));
2775 return if ($lo =~ /\W/ || $hi =~ /\W/);
2779 return if ($key =~ /\W/);
2781 $key =~ s/^gitweb\.//;
2784 if (defined $type) {
2787 unless ($type eq 'bool' || $type eq 'int');
2791 if (!defined $config_file ||
2792 $config_file ne "$git_dir/config") {
2793 %config = git_parse_project_config
('gitweb');
2794 $config_file = "$git_dir/config";
2797 # check if config variable (key) exists
2798 return unless exists $config{"gitweb.$key"};
2801 if (!defined $type) {
2802 return $config{"gitweb.$key"};
2803 } elsif ($type eq 'bool') {
2804 # backward compatibility: 'git config --bool' returns true/false
2805 return config_to_bool
($config{"gitweb.$key"}) ? 'true' : 'false';
2806 } elsif ($type eq 'int') {
2807 return config_to_int
($config{"gitweb.$key"});
2809 return $config{"gitweb.$key"};
2812 # get hash of given path at given ref
2813 sub git_get_hash_by_path
{
2815 my $path = shift || return undef;
2820 open my $fd, "-|", git_cmd
(), "ls-tree", $base, "--", $path
2821 or die_error
(500, "Open git-ls-tree failed");
2823 close $fd or return undef;
2825 if (!defined $line) {
2826 # there is no tree or hash given by $path at $base
2830 #'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'
2831 $line =~ m/^([0-9]+) (.+) ([0-9a-fA-F]{40})\t/;
2832 if (defined $type && $type ne $2) {
2833 # type doesn't match
2839 # get path of entry with given hash at given tree-ish (ref)
2840 # used to get 'from' filename for combined diff (merge commit) for renames
2841 sub git_get_path_by_hash
{
2842 my $base = shift || return;
2843 my $hash = shift || return;
2847 open my $fd, "-|", git_cmd
(), "ls-tree", '-r', '-t', '-z', $base
2849 while (my $line = <$fd>) {
2852 #'040000 tree 595596a6a9117ddba9fe379b6b012b558bac8423 gitweb'
2853 #'100644 blob e02e90f0429be0d2a69b76571101f20b8f75530f gitweb/README'
2854 if ($line =~ m/(?:[0-9]+) (?:.+) $hash\t(.+)$/) {
2863 ## ......................................................................
2864 ## git utility functions, directly accessing git repository
2866 # get the value of config variable either from file named as the variable
2867 # itself in the repository ($GIT_DIR/$name file), or from gitweb.$name
2868 # configuration variable in the repository config file.
2869 sub git_get_file_or_project_config
{
2870 my ($path, $name) = @_;
2872 $git_dir = "$projectroot/$path";
2873 open my $fd, '<', "$git_dir/$name"
2874 or return git_get_project_config
($name);
2877 if (defined $conf) {
2883 sub git_get_project_description
{
2885 return git_get_file_or_project_config
($path, 'description');
2888 sub git_get_project_category
{
2890 return git_get_file_or_project_config
($path, 'category');
2894 # supported formats:
2895 # * $GIT_DIR/ctags/<tagname> file (in 'ctags' subdirectory)
2896 # - if its contents is a number, use it as tag weight,
2897 # - otherwise add a tag with weight 1
2898 # * $GIT_DIR/ctags file, each line is a tag (with weight 1)
2899 # the same value multiple times increases tag weight
2900 # * `gitweb.ctag' multi-valued repo config variable
2901 sub git_get_project_ctags
{
2902 my $project = shift;
2905 $git_dir = "$projectroot/$project";
2906 if (opendir my $dh, "$git_dir/ctags") {
2907 my @files = grep { -f
$_ } map { "$git_dir/ctags/$_" } readdir($dh);
2908 foreach my $tagfile (@files) {
2909 open my $ct, '<', $tagfile
2915 (my $ctag = $tagfile) =~ s
#.*/##;
2916 if ($val =~ /^\d+$/) {
2917 $ctags->{$ctag} = $val;
2919 $ctags->{$ctag} = 1;
2924 } elsif (open my $fh, '<', "$git_dir/ctags") {
2925 while (my $line = <$fh>) {
2927 $ctags->{$line}++ if $line;
2932 my $taglist = config_to_multi
(git_get_project_config
('ctag'));
2933 foreach my $tag (@$taglist) {
2941 # return hash, where keys are content tags ('ctags'),
2942 # and values are sum of weights of given tag in every project
2943 sub git_gather_all_ctags
{
2944 my $projects = shift;
2947 foreach my $p (@$projects) {
2948 foreach my $ct (keys %{$p->{'ctags'}}) {
2949 $ctags->{$ct} += $p->{'ctags'}->{$ct};
2956 sub git_populate_project_tagcloud
{
2959 # First, merge different-cased tags; tags vote on casing
2961 foreach (keys %$ctags) {
2962 $ctags_lc{lc $_}->{count
} += $ctags->{$_};
2963 if (not $ctags_lc{lc $_}->{topcount
}
2964 or $ctags_lc{lc $_}->{topcount
} < $ctags->{$_}) {
2965 $ctags_lc{lc $_}->{topcount
} = $ctags->{$_};
2966 $ctags_lc{lc $_}->{topname
} = $_;
2971 my $matched = $input_params{'ctag'};
2972 if (eval { require HTML
::TagCloud
; 1; }) {
2973 $cloud = HTML
::TagCloud-
>new;
2974 foreach my $ctag (sort keys %ctags_lc) {
2975 # Pad the title with spaces so that the cloud looks
2977 my $title = esc_html
($ctags_lc{$ctag}->{topname
});
2978 $title =~ s/ / /g;
2979 $title =~ s/^/ /g;
2980 $title =~ s/$/ /g;
2981 if (defined $matched && $matched eq $ctag) {
2982 $title = qq(<span class="match">$title</span>);
2984 $cloud->add($title, href
(project
=>undef, ctag
=>$ctag),
2985 $ctags_lc{$ctag}->{count
});
2989 foreach my $ctag (keys %ctags_lc) {
2990 my $title = esc_html
($ctags_lc{$ctag}->{topname
}, -nbsp
=>1);
2991 if (defined $matched && $matched eq $ctag) {
2992 $title = qq(<span class="match">$title</span>);
2994 $cloud->{$ctag}{count
} = $ctags_lc{$ctag}->{count
};
2995 $cloud->{$ctag}{ctag
} =
2996 $cgi->a({-href
=>href
(project
=>undef, ctag
=>$ctag)}, $title);
3002 sub git_show_project_tagcloud
{
3003 my ($cloud, $count) = @_;
3004 if (ref $cloud eq 'HTML::TagCloud') {
3005 return $cloud->html_and_css($count);
3007 my @tags = sort { $cloud->{$a}->{'count'} <=> $cloud->{$b}->{'count'} } keys %$cloud;
3009 '<div id="htmltagcloud"'.($project ? '' : ' align="center"').'>' .
3011 $cloud->{$_}->{'ctag'}
3012 } splice(@tags, 0, $count)) .
3017 sub git_get_project_url_list
{
3020 $git_dir = "$projectroot/$path";
3021 open my $fd, '<', "$git_dir/cloneurl"
3022 or return wantarray ?
3023 @{ config_to_multi
(git_get_project_config
('url')) } :
3024 config_to_multi
(git_get_project_config
('url'));
3025 my @git_project_url_list = map { chomp; $_ } <$fd>;
3028 return wantarray ? @git_project_url_list : \
@git_project_url_list;
3031 sub git_get_projects_list
{
3032 my $filter = shift || '';
3033 my $paranoid = shift;
3036 if (-d
$projects_list) {
3037 # search in directory
3038 my $dir = $projects_list;
3039 # remove the trailing "/"
3041 my $pfxlen = length("$dir");
3042 my $pfxdepth = ($dir =~ tr!/!!);
3043 # when filtering, search only given subdirectory
3044 if ($filter && !$paranoid) {
3050 follow_fast
=> 1, # follow symbolic links
3051 follow_skip
=> 2, # ignore duplicates
3052 dangling_symlinks
=> 0, # ignore dangling symlinks, silently
3055 our $project_maxdepth;
3057 # skip project-list toplevel, if we get it.
3058 return if (m!^[/.]$!);
3059 # only directories can be git repositories
3060 return unless (-d
$_);
3061 # don't traverse too deep (Find is super slow on os x)
3062 # $project_maxdepth excludes depth of $projectroot
3063 if (($File::Find
::name
=~ tr!/!!) - $pfxdepth > $project_maxdepth) {
3064 $File::Find
::prune
= 1;
3068 my $path = substr($File::Find
::name
, $pfxlen + 1);
3069 # paranoidly only filter here
3070 if ($paranoid && $filter && $path !~ m!^\Q$filter\E/!) {
3073 # we check related file in $projectroot
3074 if (check_export_ok
("$projectroot/$path")) {
3075 push @list, { path
=> $path };
3076 $File::Find
::prune
= 1;
3081 } elsif (-f
$projects_list) {
3082 # read from file(url-encoded):
3083 # 'git%2Fgit.git Linus+Torvalds'
3084 # 'libs%2Fklibc%2Fklibc.git H.+Peter+Anvin'
3085 # 'linux%2Fhotplug%2Fudev.git Greg+Kroah-Hartman'
3086 open my $fd, '<', $projects_list or return;
3088 while (my $line = <$fd>) {
3090 my ($path, $owner) = split ' ', $line;
3091 $path = unescape
($path);
3092 $owner = unescape
($owner);
3093 if (!defined $path) {
3096 # if $filter is rpovided, check if $path begins with $filter
3097 if ($filter && $path !~ m!^\Q$filter\E/!) {
3100 if (check_export_ok
("$projectroot/$path")) {
3105 $pr->{'owner'} = to_utf8
($owner);
3115 # written with help of Tree::Trie module (Perl Artistic License, GPL compatibile)
3116 # as side effects it sets 'forks' field to list of forks for forked projects
3117 sub filter_forks_from_projects_list
{
3118 my $projects = shift;
3120 my %trie; # prefix tree of directories (path components)
3121 # generate trie out of those directories that might contain forks
3122 foreach my $pr (@$projects) {
3123 my $path = $pr->{'path'};
3124 $path =~ s/\.git$//; # forks of 'repo.git' are in 'repo/' directory
3125 next if ($path =~ m!/$!); # skip non-bare repositories, e.g. 'repo/.git'
3126 next unless ($path); # skip '.git' repository: tests, git-instaweb
3127 next unless (-d
"$projectroot/$path"); # containing directory exists
3128 $pr->{'forks'} = []; # there can be 0 or more forks of project
3131 my @dirs = split('/', $path);
3132 # walk the trie, until either runs out of components or out of trie
3134 while (scalar @dirs &&
3135 exists($ref->{$dirs[0]})) {
3136 $ref = $ref->{shift @dirs};
3138 # create rest of trie structure from rest of components
3139 foreach my $dir (@dirs) {
3140 $ref = $ref->{$dir} = {};
3142 # create end marker, store $pr as a data
3143 $ref->{''} = $pr if (!exists $ref->{''});
3146 # filter out forks, by finding shortest prefix match for paths
3149 foreach my $pr (@$projects) {
3153 foreach my $dir (split('/', $pr->{'path'})) {
3154 if (exists $ref->{''}) {
3155 # found [shortest] prefix, is a fork - skip it
3156 push @{$ref->{''}{'forks'}}, $pr;
3159 if (!exists $ref->{$dir}) {
3160 # not in trie, cannot have prefix, not a fork
3161 push @filtered, $pr;
3164 # If the dir is there, we just walk one step down the trie.
3165 $ref = $ref->{$dir};
3167 # we ran out of trie
3168 # (shouldn't happen: it's either no match, or end marker)
3169 push @filtered, $pr;
3175 # note: fill_project_list_info must be run first,
3176 # for 'descr_long' and 'ctags' to be filled
3177 sub search_projects_list
{
3178 my ($projlist, %opts) = @_;
3179 my $tagfilter = $opts{'tagfilter'};
3180 my $search_re = $opts{'search_regexp'};
3183 unless ($tagfilter || $search_re);
3185 # searching projects require filling to be run before it;
3186 fill_project_list_info
($projlist,
3187 $tagfilter ? 'ctags' : (),
3188 $search_re ? ('path', 'descr') : ());
3191 foreach my $pr (@$projlist) {
3194 next unless ref($pr->{'ctags'}) eq 'HASH';
3196 grep { lc($_) eq lc($tagfilter) } keys %{$pr->{'ctags'}};
3201 $pr->{'path'} =~ /$search_re/ ||
3202 $pr->{'descr_long'} =~ /$search_re/;
3205 push @projects, $pr;
3211 our $gitweb_project_owner = undef;
3212 sub git_get_project_list_from_file
{
3214 return if (defined $gitweb_project_owner);
3216 $gitweb_project_owner = {};
3217 # read from file (url-encoded):
3218 # 'git%2Fgit.git Linus+Torvalds'
3219 # 'libs%2Fklibc%2Fklibc.git H.+Peter+Anvin'
3220 # 'linux%2Fhotplug%2Fudev.git Greg+Kroah-Hartman'
3221 if (-f
$projects_list) {
3222 open(my $fd, '<', $projects_list);
3223 while (my $line = <$fd>) {
3225 my ($pr, $ow) = split ' ', $line;
3226 $pr = unescape
($pr);
3227 $ow = unescape
($ow);
3228 $gitweb_project_owner->{$pr} = to_utf8
($ow);
3234 sub git_get_project_owner
{
3235 my $project = shift;
3238 return undef unless $project;
3239 $git_dir = "$projectroot/$project";
3241 if (!defined $gitweb_project_owner) {
3242 git_get_project_list_from_file
();
3245 if (exists $gitweb_project_owner->{$project}) {
3246 $owner = $gitweb_project_owner->{$project};
3248 if (!defined $owner){
3249 $owner = git_get_project_config
('owner');
3251 if (!defined $owner) {
3252 $owner = get_file_owner
("$git_dir");
3258 sub git_get_last_activity
{
3262 $git_dir = "$projectroot/$path";
3263 open($fd, "-|", git_cmd
(), 'for-each-ref',
3264 '--format=%(committer)',
3265 '--sort=-committerdate',
3267 map { "refs/$_" } get_branch_refs
()) or return;
3268 my $most_recent = <$fd>;
3269 close $fd or return;
3270 if (defined $most_recent &&
3271 $most_recent =~ / (\d+) [-+][01]\d\d\d$/) {
3273 my $age = time - $timestamp;
3274 return ($age, age_string
($age));
3276 return (undef, undef);
3279 # Implementation note: when a single remote is wanted, we cannot use 'git
3280 # remote show -n' because that command always work (assuming it's a remote URL
3281 # if it's not defined), and we cannot use 'git remote show' because that would
3282 # try to make a network roundtrip. So the only way to find if that particular
3283 # remote is defined is to walk the list provided by 'git remote -v' and stop if
3284 # and when we find what we want.
3285 sub git_get_remotes_list
{
3289 open my $fd, '-|' , git_cmd
(), 'remote', '-v';
3291 while (my $remote = <$fd>) {
3293 $remote =~ s!\t(.*?)\s+\((\w+)\)$!!;
3294 next if $wanted and not $remote eq $wanted;
3295 my ($url, $key) = ($1, $2);
3297 $remotes{$remote} ||= { 'heads' => () };
3298 $remotes{$remote}{$key} = $url;
3300 close $fd or return;
3301 return wantarray ? %remotes : \
%remotes;
3304 # Takes a hash of remotes as first parameter and fills it by adding the
3305 # available remote heads for each of the indicated remotes.
3306 sub fill_remote_heads
{
3307 my $remotes = shift;
3308 my @heads = map { "remotes/$_" } keys %$remotes;
3309 my @remoteheads = git_get_heads_list
(undef, @heads);
3310 foreach my $remote (keys %$remotes) {
3311 $remotes->{$remote}{'heads'} = [ grep {
3312 $_->{'name'} =~ s!^$remote/!!
3317 sub git_get_references
{
3318 my $type = shift || "";
3320 # 5dc01c595e6c6ec9ccda4f6f69c131c0dd945f8c refs/tags/v2.6.11
3321 # c39ae07f393806ccf406ef966e9a15afc43cc36a refs/tags/v2.6.11^{}
3322 open my $fd, "-|", git_cmd
(), "show-ref", "--dereference",
3323 ($type ? ("--", "refs/$type") : ()) # use -- <pattern> if $type
3326 while (my $line = <$fd>) {
3328 if ($line =~ m!^([0-9a-fA-F]{40})\srefs/($type.*)$!) {
3329 if (defined $refs{$1}) {
3330 push @{$refs{$1}}, $2;
3336 close $fd or return;
3340 sub git_get_rev_name_tags
{
3341 my $hash = shift || return undef;
3343 open my $fd, "-|", git_cmd
(), "name-rev", "--tags", $hash
3345 my $name_rev = <$fd>;
3348 if ($name_rev =~ m
|^$hash tags
/(.*)$|) {
3351 # catches also '$hash undefined' output
3356 ## ----------------------------------------------------------------------
3357 ## parse to hash functions
3361 my $tz = shift || "-0000";
3364 my @months = ("Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec");
3365 my @days = ("Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat");
3366 my ($sec, $min, $hour, $mday, $mon, $year, $wday, $yday) = gmtime($epoch);
3367 $date{'hour'} = $hour;
3368 $date{'minute'} = $min;
3369 $date{'mday'} = $mday;
3370 $date{'day'} = $days[$wday];
3371 $date{'month'} = $months[$mon];
3372 $date{'rfc2822'} = sprintf "%s, %d %s %4d %02d:%02d:%02d +0000",
3373 $days[$wday], $mday, $months[$mon], 1900+$year, $hour ,$min, $sec;
3374 $date{'mday-time'} = sprintf "%d %s %02d:%02d",
3375 $mday, $months[$mon], $hour ,$min;
3376 $date{'iso-8601'} = sprintf "%04d-%02d-%02dT%02d:%02d:%02dZ",
3377 1900+$year, 1+$mon, $mday, $hour ,$min, $sec;
3379 my ($tz_sign, $tz_hour, $tz_min) =
3380 ($tz =~ m/^([-+])(\d\d)(\d\d)$/);
3381 $tz_sign = ($tz_sign eq '-' ? -1 : +1);
3382 my $local = $epoch + $tz_sign*((($tz_hour*60) + $tz_min)*60);
3383 ($sec, $min, $hour, $mday, $mon, $year, $wday, $yday) = gmtime($local);
3384 $date{'hour_local'} = $hour;
3385 $date{'minute_local'} = $min;
3386 $date{'tz_local'} = $tz;
3387 $date{'iso-tz'} = sprintf("%04d-%02d-%02d %02d:%02d:%02d %s",
3388 1900+$year, $mon+1, $mday,
3389 $hour, $min, $sec, $tz);
3398 open my $fd, "-|", git_cmd
(), "cat-file", "tag", $tag_id or return;
3399 $tag{'id'} = $tag_id;
3400 while (my $line = <$fd>) {
3402 if ($line =~ m/^object ([0-9a-fA-F]{40})$/) {
3403 $tag{'object'} = $1;
3404 } elsif ($line =~ m/^type (.+)$/) {
3406 } elsif ($line =~ m/^tag (.+)$/) {
3408 } elsif ($line =~ m/^tagger (.*) ([0-9]+) (.*)$/) {
3409 $tag{'author'} = $1;
3410 $tag{'author_epoch'} = $2;
3411 $tag{'author_tz'} = $3;
3412 if ($tag{'author'} =~ m/^([^<]+) <([^>]*)>/) {
3413 $tag{'author_name'} = $1;
3414 $tag{'author_email'} = $2;
3416 $tag{'author_name'} = $tag{'author'};
3418 } elsif ($line =~ m/--BEGIN/) {
3419 push @comment, $line;
3421 } elsif ($line eq "") {
3425 push @comment, <$fd>;
3426 $tag{'comment'} = \
@comment;
3427 close $fd or return;
3428 if (!defined $tag{'name'}) {
3434 sub parse_commit_text
{
3435 my ($commit_text, $withparents) = @_;
3436 my @commit_lines = split '\n', $commit_text;
3439 pop @commit_lines; # Remove '\0'
3441 if (! @commit_lines) {
3445 my $header = shift @commit_lines;
3446 if ($header !~ m/^[0-9a-fA-F]{40}/) {
3449 ($co{'id'}, my @parents) = split ' ', $header;
3450 while (my $line = shift @commit_lines) {
3451 last if $line eq "\n";
3452 if ($line =~ m/^tree ([0-9a-fA-F]{40})$/) {
3454 } elsif ((!defined $withparents) && ($line =~ m/^parent ([0-9a-fA-F]{40})$/)) {
3456 } elsif ($line =~ m/^author (.*) ([0-9]+) (.*)$/) {
3457 $co{'author'} = to_utf8
($1);
3458 $co{'author_epoch'} = $2;
3459 $co{'author_tz'} = $3;
3460 if ($co{'author'} =~ m/^([^<]+) <([^>]*)>/) {
3461 $co{'author_name'} = $1;
3462 $co{'author_email'} = $2;
3464 $co{'author_name'} = $co{'author'};
3466 } elsif ($line =~ m/^committer (.*) ([0-9]+) (.*)$/) {
3467 $co{'committer'} = to_utf8
($1);
3468 $co{'committer_epoch'} = $2;
3469 $co{'committer_tz'} = $3;
3470 if ($co{'committer'} =~ m/^([^<]+) <([^>]*)>/) {
3471 $co{'committer_name'} = $1;
3472 $co{'committer_email'} = $2;
3474 $co{'committer_name'} = $co{'committer'};
3478 if (!defined $co{'tree'}) {
3481 $co{'parents'} = \
@parents;
3482 $co{'parent'} = $parents[0];
3484 foreach my $title (@commit_lines) {
3487 $co{'title'} = chop_str
($title, 80, 5);
3488 # remove leading stuff of merges to make the interesting part visible
3489 if (length($title) > 50) {
3490 $title =~ s/^Automatic //;
3491 $title =~ s/^merge (of|with) /Merge ... /i;
3492 if (length($title) > 50) {
3493 $title =~ s/(http|rsync):\/\///;
3495 if (length($title) > 50) {
3496 $title =~ s/(master|www|rsync)\.//;
3498 if (length($title) > 50) {
3499 $title =~ s/kernel.org:?//;
3501 if (length($title) > 50) {
3502 $title =~ s/\/pub\/scm//;
3505 $co{'title_short'} = chop_str
($title, 50, 5);
3509 if (! defined $co{'title'} || $co{'title'} eq "") {
3510 $co{'title'} = $co{'title_short'} = '(no commit message)';
3512 # remove added spaces
3513 foreach my $line (@commit_lines) {
3516 $co{'comment'} = \
@commit_lines;
3518 my $age = time - $co{'committer_epoch'};
3520 $co{'age_string'} = age_string
($age);
3521 my ($sec, $min, $hour, $mday, $mon, $year, $wday, $yday) = gmtime($co{'committer_epoch'});
3522 if ($age > 60*60*24*7*2) {
3523 $co{'age_string_date'} = sprintf "%4i-%02u-%02i", 1900 + $year, $mon+1, $mday;
3524 $co{'age_string_age'} = $co{'age_string'};
3526 $co{'age_string_date'} = $co{'age_string'};
3527 $co{'age_string_age'} = sprintf "%4i-%02u-%02i", 1900 + $year, $mon+1, $mday;
3533 my ($commit_id) = @_;
3538 open my $fd, "-|", git_cmd
(), "rev-list",
3544 or die_error
(500, "Open git-rev-list failed");
3545 %co = parse_commit_text
(<$fd>, 1);
3552 my ($commit_id, $maxcount, $skip, $filename, @args) = @_;
3560 open my $fd, "-|", git_cmd
(), "rev-list",
3563 ("--max-count=" . $maxcount),
3564 ("--skip=" . $skip),
3568 ($filename ? ($filename) : ())
3569 or die_error
(500, "Open git-rev-list failed");
3570 while (my $line = <$fd>) {
3571 my %co = parse_commit_text
($line);
3576 return wantarray ? @cos : \
@cos;
3579 # parse line of git-diff-tree "raw" output
3580 sub parse_difftree_raw_line
{
3584 # ':100644 100644 03b218260e99b78c6df0ed378e59ed9205ccc96d 3b93d5e7cc7f7dd4ebed13a5cc1a4ad976fc94d8 M ls-files.c'
3585 # ':100644 100644 7f9281985086971d3877aca27704f2aaf9c448ce bc190ebc71bbd923f2b728e505408f5e54bd073a M rev-tree.c'
3586 if ($line =~ m/^:([0-7]{6}) ([0-7]{6}) ([0-9a-fA-F]{40}) ([0-9a-fA-F]{40}) (.)([0-9]{0,3})\t(.*)$/) {
3587 $res{'from_mode'} = $1;
3588 $res{'to_mode'} = $2;
3589 $res{'from_id'} = $3;
3591 $res{'status'} = $5;
3592 $res{'similarity'} = $6;
3593 if ($res{'status'} eq 'R' || $res{'status'} eq 'C') { # renamed or copied
3594 ($res{'from_file'}, $res{'to_file'}) = map { unquote
($_) } split("\t", $7);
3596 $res{'from_file'} = $res{'to_file'} = $res{'file'} = unquote
($7);
3599 # '::100755 100755 100755 60e79ca1b01bc8b057abe17ddab484699a7f5fdb 94067cc5f73388f33722d52ae02f44692bc07490 94067cc5f73388f33722d52ae02f44692bc07490 MR git-gui/git-gui.sh'
3600 # combined diff (for merge commit)
3601 elsif ($line =~ s/^(::+)((?:[0-7]{6} )+)((?:[0-9a-fA-F]{40} )+)([a-zA-Z]+)\t(.*)$//) {
3602 $res{'nparents'} = length($1);
3603 $res{'from_mode'} = [ split(' ', $2) ];
3604 $res{'to_mode'} = pop @{$res{'from_mode'}};
3605 $res{'from_id'} = [ split(' ', $3) ];
3606 $res{'to_id'} = pop @{$res{'from_id'}};
3607 $res{'status'} = [ split('', $4) ];
3608 $res{'to_file'} = unquote
($5);
3610 # 'c512b523472485aef4fff9e57b229d9d243c967f'
3611 elsif ($line =~ m/^([0-9a-fA-F]{40})$/) {
3612 $res{'commit'} = $1;
3615 return wantarray ? %res : \
%res;
3618 # wrapper: return parsed line of git-diff-tree "raw" output
3619 # (the argument might be raw line, or parsed info)
3620 sub parsed_difftree_line
{
3621 my $line_or_ref = shift;
3623 if (ref($line_or_ref) eq "HASH") {
3624 # pre-parsed (or generated by hand)
3625 return $line_or_ref;
3627 return parse_difftree_raw_line
($line_or_ref);
3631 # parse line of git-ls-tree output
3632 sub parse_ls_tree_line
{
3638 #'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa 16717 panic.c'
3639 $line =~ m/^([0-9]+) (.+) ([0-9a-fA-F]{40}) +(-|[0-9]+)\t(.+)$/s;
3648 $res{'name'} = unquote
($5);
3651 #'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'
3652 $line =~ m/^([0-9]+) (.+) ([0-9a-fA-F]{40})\t(.+)$/s;
3660 $res{'name'} = unquote
($4);
3664 return wantarray ? %res : \
%res;
3667 # generates _two_ hashes, references to which are passed as 2 and 3 argument
3668 sub parse_from_to_diffinfo
{
3669 my ($diffinfo, $from, $to, @parents) = @_;
3671 if ($diffinfo->{'nparents'}) {
3673 $from->{'file'} = [];
3674 $from->{'href'} = [];
3675 fill_from_file_info
($diffinfo, @parents)
3676 unless exists $diffinfo->{'from_file'};
3677 for (my $i = 0; $i < $diffinfo->{'nparents'}; $i++) {
3678 $from->{'file'}[$i] =
3679 defined $diffinfo->{'from_file'}[$i] ?
3680 $diffinfo->{'from_file'}[$i] :
3681 $diffinfo->{'to_file'};
3682 if ($diffinfo->{'status'}[$i] ne "A") { # not new (added) file
3683 $from->{'href'}[$i] = href
(action
=>"blob",
3684 hash_base
=>$parents[$i],
3685 hash
=>$diffinfo->{'from_id'}[$i],
3686 file_name
=>$from->{'file'}[$i]);
3688 $from->{'href'}[$i] = undef;
3692 # ordinary (not combined) diff
3693 $from->{'file'} = $diffinfo->{'from_file'};
3694 if ($diffinfo->{'status'} ne "A") { # not new (added) file
3695 $from->{'href'} = href
(action
=>"blob", hash_base
=>$hash_parent,
3696 hash
=>$diffinfo->{'from_id'},
3697 file_name
=>$from->{'file'});
3699 delete $from->{'href'};
3703 $to->{'file'} = $diffinfo->{'to_file'};
3704 if (!is_deleted
($diffinfo)) { # file exists in result
3705 $to->{'href'} = href
(action
=>"blob", hash_base
=>$hash,
3706 hash
=>$diffinfo->{'to_id'},
3707 file_name
=>$to->{'file'});
3709 delete $to->{'href'};
3713 ## ......................................................................
3714 ## parse to array of hashes functions
3716 sub git_get_heads_list
{
3717 my ($limit, @classes) = @_;
3718 @classes = get_branch_refs
() unless @classes;
3719 my @patterns = map { "refs/$_" } @classes;
3722 open my $fd, '-|', git_cmd
(), 'for-each-ref',
3723 ($limit ? '--count='.($limit+1) : ()), '--sort=-committerdate',
3724 '--format=%(objectname) %(refname) %(subject)%00%(committer)',
3727 while (my $line = <$fd>) {
3731 my ($refinfo, $committerinfo) = split(/\0/, $line);
3732 my ($hash, $name, $title) = split(' ', $refinfo, 3);
3733 my ($committer, $epoch, $tz) =
3734 ($committerinfo =~ /^(.*) ([0-9]+) (.*)$/);
3735 $ref_item{'fullname'} = $name;
3736 my $strip_refs = join '|', map { quotemeta } get_branch_refs
();
3737 $name =~ s!^refs/($strip_refs|remotes)/!!;
3738 $ref_item{'name'} = $name;
3739 # for refs neither in 'heads' nor 'remotes' we want to
3740 # show their ref dir
3741 my $ref_dir = (defined $1) ? $1 : '';
3742 if ($ref_dir ne '' and $ref_dir ne 'heads' and $ref_dir ne 'remotes') {
3743 $ref_item{'name'} .= ' (' . $ref_dir . ')';
3746 $ref_item{'id'} = $hash;
3747 $ref_item{'title'} = $title || '(no commit message)';
3748 $ref_item{'epoch'} = $epoch;
3750 $ref_item{'age'} = age_string
(time - $ref_item{'epoch'});
3752 $ref_item{'age'} = "unknown";
3755 push @headslist, \
%ref_item;
3759 return wantarray ? @headslist : \
@headslist;
3762 sub git_get_tags_list
{
3766 open my $fd, '-|', git_cmd
(), 'for-each-ref',
3767 ($limit ? '--count='.($limit+1) : ()), '--sort=-creatordate',
3768 '--format=%(objectname) %(objecttype) %(refname) '.
3769 '%(*objectname) %(*objecttype) %(subject)%00%(creator)',
3772 while (my $line = <$fd>) {
3776 my ($refinfo, $creatorinfo) = split(/\0/, $line);
3777 my ($id, $type, $name, $refid, $reftype, $title) = split(' ', $refinfo, 6);
3778 my ($creator, $epoch, $tz) =
3779 ($creatorinfo =~ /^(.*) ([0-9]+) (.*)$/);
3780 $ref_item{'fullname'} = $name;
3781 $name =~ s!^refs/tags/!!;
3783 $ref_item{'type'} = $type;
3784 $ref_item{'id'} = $id;
3785 $ref_item{'name'} = $name;
3786 if ($type eq "tag") {
3787 $ref_item{'subject'} = $title;
3788 $ref_item{'reftype'} = $reftype;
3789 $ref_item{'refid'} = $refid;
3791 $ref_item{'reftype'} = $type;
3792 $ref_item{'refid'} = $id;
3795 if ($type eq "tag" || $type eq "commit") {
3796 $ref_item{'epoch'} = $epoch;
3798 $ref_item{'age'} = age_string
(time - $ref_item{'epoch'});
3800 $ref_item{'age'} = "unknown";
3804 push @tagslist, \
%ref_item;
3808 return wantarray ? @tagslist : \
@tagslist;
3811 ## ----------------------------------------------------------------------
3812 ## filesystem-related functions
3814 sub get_file_owner
{
3817 my ($dev, $ino, $mode, $nlink, $st_uid, $st_gid, $rdev, $size) = stat($path);
3818 my ($name, $passwd, $uid, $gid, $quota, $comment, $gcos, $dir, $shell) = getpwuid($st_uid);
3819 if (!defined $gcos) {
3823 $owner =~ s/[,;].*$//;
3824 return to_utf8
($owner);
3827 # assume that file exists
3829 my $filename = shift;
3831 open my $fd, '<', $filename;
3832 print map { to_utf8
($_) } <$fd>;
3836 ## ......................................................................
3837 ## mimetype related functions
3839 sub mimetype_guess_file
{
3840 my $filename = shift;
3841 my $mimemap = shift;
3842 -r
$mimemap or return undef;
3845 open(my $mh, '<', $mimemap) or return undef;
3847 next if m/^#/; # skip comments
3848 my ($mimetype, @exts) = split(/\s+/);
3849 foreach my $ext (@exts) {
3850 $mimemap{$ext} = $mimetype;
3855 $filename =~ /\.([^.]*)$/;
3856 return $mimemap{$1};
3859 sub mimetype_guess
{
3860 my $filename = shift;
3862 $filename =~ /\./ or return undef;
3864 if ($mimetypes_file) {
3865 my $file = $mimetypes_file;
3866 if ($file !~ m!^/!) { # if it is relative path
3867 # it is relative to project
3868 $file = "$projectroot/$project/$file";
3870 $mime = mimetype_guess_file
($filename, $file);
3872 $mime ||= mimetype_guess_file
($filename, '/etc/mime.types');
3878 my $filename = shift;
3881 my $mime = mimetype_guess
($filename);
3882 $mime and return $mime;
3886 return $default_blob_plain_mimetype unless $fd;
3889 return 'text/plain';
3890 } elsif (! $filename) {
3891 return 'application/octet-stream';
3892 } elsif ($filename =~ m/\.png$/i) {
3894 } elsif ($filename =~ m/\.gif$/i) {
3896 } elsif ($filename =~ m/\.jpe?g$/i) {
3897 return 'image/jpeg';
3899 return 'application/octet-stream';
3903 sub blob_contenttype
{
3904 my ($fd, $file_name, $type) = @_;
3906 $type ||= blob_mimetype
($fd, $file_name);
3907 if ($type eq 'text/plain' && defined $default_text_plain_charset) {
3908 $type .= "; charset=$default_text_plain_charset";
3914 # guess file syntax for syntax highlighting; return undef if no highlighting
3915 # the name of syntax can (in the future) depend on syntax highlighter used
3916 sub guess_file_syntax
{
3917 my ($highlight, $file_name) = @_;
3918 return undef unless ($highlight && defined $file_name);
3919 my $basename = basename
($file_name, '.in');
3920 return $highlight_basename{$basename}
3921 if exists $highlight_basename{$basename};
3923 $basename =~ /\.([^.]*)$/;
3924 my $ext = $1 or return undef;
3925 return $highlight_ext{$ext}
3926 if exists $highlight_ext{$ext};
3931 # run highlighter and return FD of its output,
3932 # or return original FD if no highlighting
3933 sub run_highlighter
{
3934 my ($fd, $highlight, $syntax) = @_;
3935 return $fd unless ($highlight);
3938 my $syntax_arg = (defined $syntax) ? "--syntax $syntax" : "--force";
3939 open $fd, quote_command
(git_cmd
(), "cat-file", "blob", $hash)." | ".
3940 quote_command
($^X, '-CO', '-MEncode=decode,FB_DEFAULT', '-pse',
3941 '$_ = decode($fe, $_, FB_DEFAULT) if !utf8::decode($_);',
3942 '--', "-fe=$fallback_encoding")." | ".
3943 quote_command
($highlight_bin).
3944 " --replace-tabs=8 --fragment $syntax_arg |"
3945 or die_error
(500, "Couldn't open file or run syntax highlighter");
3949 ## ======================================================================
3950 ## functions printing HTML: header, footer, error page
3952 sub get_page_title
{
3953 my $title = to_utf8
($site_name);
3955 unless (defined $project) {
3956 if (defined $project_filter) {
3957 $title .= " - projects in '" . esc_path
($project_filter) . "'";
3961 $title .= " - " . to_utf8
($project);
3963 return $title unless (defined $action);
3964 $title .= "/$action"; # $action is US-ASCII (7bit ASCII)
3966 return $title unless (defined $file_name);
3967 $title .= " - " . esc_path
($file_name);
3968 if ($action eq "tree" && $file_name !~ m
|/$|) {
3975 sub get_content_type_html
{
3976 # require explicit support from the UA if we are to send the page as
3977 # 'application/xhtml+xml', otherwise send it as plain old 'text/html'.
3978 # we have to do this because MSIE sometimes globs '*/*', pretending to
3979 # support xhtml+xml but choking when it gets what it asked for.
3980 if (defined $cgi->http('HTTP_ACCEPT') &&
3981 $cgi->http('HTTP_ACCEPT') =~ m/(,|;|\s|^)application\/xhtml\
+xml
(,|;|\s
|$)/ &&
3982 $cgi->Accept('application/xhtml+xml') != 0) {
3983 return 'application/xhtml+xml';
3989 sub print_feed_meta
{
3990 if (defined $project) {
3991 my %href_params = get_feed_info
();
3992 if (!exists $href_params{'-title'}) {
3993 $href_params{'-title'} = 'log';
3996 foreach my $format (qw(RSS Atom)) {
3997 my $type = lc($format);
3999 '-rel' => 'alternate',
4000 '-title' => esc_attr
("$project - $href_params{'-title'} - $format feed"),
4001 '-type' => "application/$type+xml"
4004 $href_params{'extra_options'} = undef;
4005 $href_params{'action'} = $type;
4006 $link_attr{'-href'} = href
(%href_params);
4008 "rel=\"$link_attr{'-rel'}\" ".
4009 "title=\"$link_attr{'-title'}\" ".
4010 "href=\"$link_attr{'-href'}\" ".
4011 "type=\"$link_attr{'-type'}\" ".
4014 $href_params{'extra_options'} = '--no-merges';
4015 $link_attr{'-href'} = href
(%href_params);
4016 $link_attr{'-title'} .= ' (no merges)';
4018 "rel=\"$link_attr{'-rel'}\" ".
4019 "title=\"$link_attr{'-title'}\" ".
4020 "href=\"$link_attr{'-href'}\" ".
4021 "type=\"$link_attr{'-type'}\" ".
4026 printf('<link rel="alternate" title="%s projects list" '.
4027 'href="%s" type="text/plain; charset=utf-8" />'."\n",
4028 esc_attr
($site_name), href
(project
=>undef, action
=>"project_index"));
4029 printf('<link rel="alternate" title="%s projects feeds" '.
4030 'href="%s" type="text/x-opml" />'."\n",
4031 esc_attr
($site_name), href
(project
=>undef, action
=>"opml"));
4035 sub print_header_links
{
4038 # print out each stylesheet that exist, providing backwards capability
4039 # for those people who defined $stylesheet in a config file
4040 if (defined $stylesheet) {
4041 print '<link rel="stylesheet" type="text/css" href="'.esc_url
($stylesheet).'"/>'."\n";
4043 foreach my $stylesheet (@stylesheets) {
4044 next unless $stylesheet;
4045 print '<link rel="stylesheet" type="text/css" href="'.esc_url
($stylesheet).'"/>'."\n";
4049 if ($status eq '200 OK');
4050 if (defined $favicon) {
4051 print qq(<link rel="shortcut icon" href=").esc_url
($favicon).qq(" type="image/png" />\n);
4055 sub print_nav_breadcrumbs_path
{
4056 my $dirprefix = undef;
4057 while (my $part = shift) {
4058 $dirprefix .= "/" if defined $dirprefix;
4059 $dirprefix .= $part;
4060 print $cgi->a({-href
=> href
(project
=> undef,
4061 project_filter
=> $dirprefix,
4062 action
=> "project_list")},
4063 esc_html
($part)) . " / ";
4067 sub print_nav_breadcrumbs
{
4070 for my $crumb (@extra_breadcrumbs, [ $home_link_str => $home_link ]) {
4071 print $cgi->a({-href
=> esc_url
($crumb->[1])}, $crumb->[0]) . " / ";
4073 if (defined $project) {
4074 my @dirname = split '/', $project;
4075 my $projectbasename = pop @dirname;
4076 print_nav_breadcrumbs_path
(@dirname);
4077 print $cgi->a({-href
=> href
(action
=>"summary")}, esc_html
($projectbasename));
4078 if (defined $action) {
4079 my $action_print = $action ;
4080 if (defined $opts{-action_extra
}) {
4081 $action_print = $cgi->a({-href
=> href
(action
=>$action)},
4084 print " / $action_print";
4086 if (defined $opts{-action_extra
}) {
4087 print " / $opts{-action_extra}";
4090 } elsif (defined $project_filter) {
4091 print_nav_breadcrumbs_path
(split '/', $project_filter);
4095 sub print_search_form
{
4096 if (!defined $searchtext) {
4100 if (defined $hash_base) {
4101 $search_hash = $hash_base;
4102 } elsif (defined $hash) {
4103 $search_hash = $hash;
4105 $search_hash = "HEAD";
4107 my $action = $my_uri;
4108 my $use_pathinfo = gitweb_check_feature
('pathinfo');
4109 if ($use_pathinfo) {
4110 $action .= "/".esc_url
($project);
4112 print $cgi->start_form(-method => "get", -action
=> $action) .
4113 "<div class=\"search\">\n" .
4115 $cgi->input({-name
=>"p", -value
=>$project, -type
=>"hidden"}) . "\n") .
4116 $cgi->input({-name
=>"a", -value
=>"search", -type
=>"hidden"}) . "\n" .
4117 $cgi->input({-name
=>"h", -value
=>$search_hash, -type
=>"hidden"}) . "\n" .
4118 $cgi->popup_menu(-name
=> 'st', -default => 'commit',
4119 -values => ['commit', 'grep', 'author', 'committer', 'pickaxe']) .
4120 " " . $cgi->a({-href
=> href
(action
=>"search_help"),
4121 -title
=> "search help" }, "?") . " search:\n",
4122 $cgi->textfield(-name
=> "s", -value
=> $searchtext, -override
=> 1) . "\n" .
4123 "<span title=\"Extended regular expression\">" .
4124 $cgi->checkbox(-name
=> 'sr', -value
=> 1, -label
=> 're',
4125 -checked
=> $search_use_regexp) .
4128 $cgi->end_form() . "\n";
4131 sub git_header_html
{
4132 my $status = shift || "200 OK";
4133 my $expires = shift;
4136 my $title = get_page_title
();
4137 my $content_type = get_content_type_html
();
4138 print $cgi->header(-type
=>$content_type, -charset
=> 'utf-8',
4139 -status
=> $status, -expires
=> $expires)
4140 unless ($opts{'-no_http_header'});
4141 my $mod_perl_version = $ENV{'MOD_PERL'} ? " $ENV{'MOD_PERL'}" : '';
4143 <?xml version="1.0" encoding="utf-8"?>
4144 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4145 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" lang="en-US">
4146 <!-- git web interface version $version, (C) 2005-2006, Kay Sievers <kay.sievers\@vrfy.org>, Christian Gierke -->
4147 <!-- git core binaries version $git_version -->
4149 <meta http-equiv="content-type" content="$content_type; charset=utf-8"/>
4150 <meta name="generator" content="gitweb/$version git/$git_version$mod_perl_version"/>
4151 <meta name="robots" content="index, nofollow"/>
4152 <title>$title</title>
4154 # the stylesheet, favicon etc urls won't work correctly with path_info
4155 # unless we set the appropriate base URL
4156 if ($ENV{'PATH_INFO'}) {
4157 print "<base href=\"".esc_url
($base_url)."\" />\n";
4159 print_header_links
($status);
4161 if (defined $site_html_head_string) {
4162 print to_utf8
($site_html_head_string);
4168 if (defined $site_header && -f
$site_header) {
4169 insert_file
($site_header);
4172 print "<div class=\"page_header\">\n";
4173 if (defined $logo) {
4174 print $cgi->a({-href
=> esc_url
($logo_url),
4175 -title
=> $logo_label},
4176 $cgi->img({-src
=> esc_url
($logo),
4177 -width
=> 72, -height
=> 27,
4179 -class => "logo"}));
4181 print_nav_breadcrumbs
(%opts);
4184 my $have_search = gitweb_check_feature
('search');
4185 if (defined $project && $have_search) {
4186 print_search_form
();
4190 sub git_footer_html
{
4191 my $feed_class = 'rss_logo';
4193 print "<div class=\"page_footer\">\n";
4194 if (defined $project) {
4195 my $descr = git_get_project_description
($project);
4196 if (defined $descr) {
4197 print "<div class=\"page_footer_text\">" . esc_html
($descr) . "</div>\n";
4200 my %href_params = get_feed_info
();
4201 if (!%href_params) {
4202 $feed_class .= ' generic';
4204 $href_params{'-title'} ||= 'log';
4206 foreach my $format (qw(RSS Atom)) {
4207 $href_params{'action'} = lc($format);
4208 print $cgi->a({-href
=> href
(%href_params),
4209 -title
=> "$href_params{'-title'} $format feed",
4210 -class => $feed_class}, $format)."\n";
4214 print $cgi->a({-href
=> href
(project
=>undef, action
=>"opml",
4215 project_filter
=> $project_filter),
4216 -class => $feed_class}, "OPML") . " ";
4217 print $cgi->a({-href
=> href
(project
=>undef, action
=>"project_index",
4218 project_filter
=> $project_filter),
4219 -class => $feed_class}, "TXT") . "\n";
4221 print "</div>\n"; # class="page_footer"
4223 if (defined $t0 && gitweb_check_feature
('timed')) {
4224 print "<div id=\"generating_info\">\n";
4225 print 'This page took '.
4226 '<span id="generating_time" class="time_span">'.
4227 tv_interval
($t0, [ gettimeofday
() ]).
4230 '<span id="generating_cmd">'.
4231 $number_of_git_cmds.
4232 '</span> git commands '.
4234 print "</div>\n"; # class="page_footer"
4237 if (defined $site_footer && -f
$site_footer) {
4238 insert_file
($site_footer);
4241 print qq
!<script type
="text/javascript" src
="!.esc_url($javascript).qq!"></script
>\n!;
4242 if (defined $action &&
4243 $action eq 'blame_incremental') {
4244 print qq
!<script type
="text/javascript">\n!.
4245 qq
!startBlame
("!. href(action=>"blame_data
", -replay=>1) .qq!",\n!.
4246 qq
! "!. href() .qq!");\n!.
4249 my ($jstimezone, $tz_cookie, $datetime_class) =
4250 gitweb_get_feature
('javascript-timezone');
4252 print qq
!<script type
="text/javascript">\n!.
4253 qq
!window
.onload
= function
() {\n!;
4254 if (gitweb_check_feature
('javascript-actions')) {
4255 print qq
! fixLinks
();\n!;
4257 if ($jstimezone && $tz_cookie && $datetime_class) {
4258 print qq
! var tz_cookie
= { name
: '$tz_cookie', expires
: 14, path
: '/' };\n!. # in days
4259 qq
! onloadTZSetup
('$jstimezone', tz_cookie
, '$datetime_class');\n!;
4269 # die_error(<http_status_code>, <error_message>[, <detailed_html_description>])
4270 # Example: die_error(404, 'Hash not found')
4271 # By convention, use the following status codes (as defined in RFC 2616):
4272 # 400: Invalid or missing CGI parameters, or
4273 # requested object exists but has wrong type.
4274 # 403: Requested feature (like "pickaxe" or "snapshot") not enabled on
4275 # this server or project.
4276 # 404: Requested object/revision/project doesn't exist.
4277 # 500: The server isn't configured properly, or
4278 # an internal error occurred (e.g. failed assertions caused by bugs), or
4279 # an unknown error occurred (e.g. the git binary died unexpectedly).
4280 # 503: The server is currently unavailable (because it is overloaded,
4281 # or down for maintenance). Generally, this is a temporary state.
4283 my $status = shift || 500;
4284 my $error = esc_html
(shift) || "Internal Server Error";
4288 my %http_responses = (
4289 400 => '400 Bad Request',
4290 403 => '403 Forbidden',
4291 404 => '404 Not Found',
4292 500 => '500 Internal Server Error',
4293 503 => '503 Service Unavailable',
4295 git_header_html
($http_responses{$status}, undef, %opts);
4297 <div class="page_body">
4302 if (defined $extra) {
4310 unless ($opts{'-error_handler'});
4313 ## ----------------------------------------------------------------------
4314 ## functions printing or outputting HTML: navigation
4316 sub git_print_page_nav
{
4317 my ($current, $suppress, $head, $treehead, $treebase, $extra) = @_;
4318 $extra = '' if !defined $extra; # pager or formats
4320 my @navs = qw(summary shortlog log commit commitdiff tree);
4322 @navs = grep { $_ ne $suppress } @navs;
4325 my %arg = map { $_ => {action
=>$_} } @navs;
4326 if (defined $head) {
4327 for (qw(commit commitdiff)) {
4328 $arg{$_}{'hash'} = $head;
4330 if ($current =~ m/^(tree | log | shortlog | commit | commitdiff | search)$/x) {
4331 for (qw(shortlog log)) {
4332 $arg{$_}{'hash'} = $head;
4337 $arg{'tree'}{'hash'} = $treehead if defined $treehead;
4338 $arg{'tree'}{'hash_base'} = $treebase if defined $treebase;
4340 my @actions = gitweb_get_feature
('actions');
4343 'n' => $project, # project name
4344 'f' => $git_dir, # project path within filesystem
4345 'h' => $treehead || '', # current hash ('h' parameter)
4346 'b' => $treebase || '', # hash base ('hb' parameter)
4349 my ($label, $link, $pos) = splice(@actions,0,3);
4351 @navs = map { $_ eq $pos ? ($_, $label) : $_ } @navs;
4353 $link =~ s/%([%nfhb])/$repl{$1}/g;
4354 $arg{$label}{'_href'} = $link;
4357 print "<div class=\"page_nav\">\n" .
4359 map { $_ eq $current ?
4360 $_ : $cgi->a({-href
=> ($arg{$_}{_href
} ? $arg{$_}{_href
} : href
(%{$arg{$_}}))}, "$_")
4362 print "<br/>\n$extra<br/>\n" .
4366 # returns a submenu for the nagivation of the refs views (tags, heads,
4367 # remotes) with the current view disabled and the remotes view only
4368 # available if the feature is enabled
4369 sub format_ref_views
{
4371 my @ref_views = qw{tags heads};
4372 push @ref_views, 'remotes' if gitweb_check_feature
('remote_heads');
4373 return join " | ", map {
4374 $_ eq $current ? $_ :
4375 $cgi->a({-href
=> href
(action
=>$_)}, $_)
4379 sub format_paging_nav
{
4380 my ($action, $page, $has_next_link) = @_;
4386 $cgi->a({-href
=> href
(-replay
=>1, page
=>undef)}, "first") .
4388 $cgi->a({-href
=> href
(-replay
=>1, page
=>$page-1),
4389 -accesskey
=> "p", -title
=> "Alt-p"}, "prev");
4391 $paging_nav .= "first ⋅ prev";
4394 if ($has_next_link) {
4395 $paging_nav .= " ⋅ " .
4396 $cgi->a({-href
=> href
(-replay
=>1, page
=>$page+1),
4397 -accesskey
=> "n", -title
=> "Alt-n"}, "next");
4399 $paging_nav .= " ⋅ next";
4405 ## ......................................................................
4406 ## functions printing or outputting HTML: div
4408 sub git_print_header_div
{
4409 my ($action, $title, $hash, $hash_base) = @_;
4412 $args{'action'} = $action;
4413 $args{'hash'} = $hash if $hash;
4414 $args{'hash_base'} = $hash_base if $hash_base;
4416 print "<div class=\"header\">\n" .
4417 $cgi->a({-href
=> href
(%args), -class => "title"},
4418 $title ? $title : $action) .
4422 sub format_repo_url
{
4423 my ($name, $url) = @_;
4424 return "<tr class=\"metadata_url\"><td>$name</td><td>$url</td></tr>\n";
4427 # Group output by placing it in a DIV element and adding a header.
4428 # Options for start_div() can be provided by passing a hash reference as the
4429 # first parameter to the function.
4430 # Options to git_print_header_div() can be provided by passing an array
4431 # reference. This must follow the options to start_div if they are present.
4432 # The content can be a scalar, which is output as-is, a scalar reference, which
4433 # is output after html escaping, an IO handle passed either as *handle or
4434 # *handle{IO}, or a function reference. In the latter case all following
4435 # parameters will be taken as argument to the content function call.
4436 sub git_print_section
{
4437 my ($div_args, $header_args, $content);
4439 if (ref($arg) eq 'HASH') {
4443 if (ref($arg) eq 'ARRAY') {
4444 $header_args = $arg;
4449 print $cgi->start_div($div_args);
4450 git_print_header_div
(@$header_args);
4452 if (ref($content) eq 'CODE') {
4454 } elsif (ref($content) eq 'SCALAR') {
4455 print esc_html
($$content);
4456 } elsif (ref($content) eq 'GLOB' or ref($content) eq 'IO::Handle') {
4458 } elsif (!ref($content) && defined($content)) {
4462 print $cgi->end_div;
4465 sub format_timestamp_html
{
4467 my $strtime = $date->{'rfc2822'};
4469 my (undef, undef, $datetime_class) =
4470 gitweb_get_feature
('javascript-timezone');
4471 if ($datetime_class) {
4472 $strtime = qq
!<span
class="$datetime_class">$strtime</span
>!;
4475 my $localtime_format = '(%02d:%02d %s)';
4476 if ($date->{'hour_local'} < 6) {
4477 $localtime_format = '(<span class="atnight">%02d:%02d</span> %s)';
4480 sprintf($localtime_format,
4481 $date->{'hour_local'}, $date->{'minute_local'}, $date->{'tz_local'});
4486 # Outputs the author name and date in long form
4487 sub git_print_authorship
{
4490 my $tag = $opts{-tag
} || 'div';
4491 my $author = $co->{'author_name'};
4493 my %ad = parse_date
($co->{'author_epoch'}, $co->{'author_tz'});
4494 print "<$tag class=\"author_date\">" .
4495 format_search_author
($author, "author", esc_html
($author)) .
4496 " [".format_timestamp_html
(\
%ad)."]".
4497 git_get_avatar
($co->{'author_email'}, -pad_before
=> 1) .
4501 # Outputs table rows containing the full author or committer information,
4502 # in the format expected for 'commit' view (& similar).
4503 # Parameters are a commit hash reference, followed by the list of people
4504 # to output information for. If the list is empty it defaults to both
4505 # author and committer.
4506 sub git_print_authorship_rows
{
4508 # too bad we can't use @people = @_ || ('author', 'committer')
4510 @people = ('author', 'committer') unless @people;
4511 foreach my $who (@people) {
4512 my %wd = parse_date
($co->{"${who}_epoch"}, $co->{"${who}_tz"});
4513 print "<tr><td>$who</td><td>" .
4514 format_search_author
($co->{"${who}_name"}, $who,
4515 esc_html
($co->{"${who}_name"})) . " " .
4516 format_search_author
($co->{"${who}_email"}, $who,
4517 esc_html
("<" . $co->{"${who}_email"} . ">")) .
4518 "</td><td rowspan=\"2\">" .
4519 git_get_avatar
($co->{"${who}_email"}, -size
=> 'double') .
4523 format_timestamp_html
(\
%wd) .
4529 sub git_print_page_path
{
4535 print "<div class=\"page_path\">";
4536 print $cgi->a({-href
=> href
(action
=>"tree", hash_base
=>$hb),
4537 -title
=> 'tree root'}, to_utf8
("[$project]"));
4539 if (defined $name) {
4540 my @dirname = split '/', $name;
4541 my $basename = pop @dirname;
4544 foreach my $dir (@dirname) {
4545 $fullname .= ($fullname ? '/' : '') . $dir;
4546 print $cgi->a({-href
=> href
(action
=>"tree", file_name
=>$fullname,
4548 -title
=> $fullname}, esc_path
($dir));
4551 if (defined $type && $type eq 'blob') {
4552 print $cgi->a({-href
=> href
(action
=>"blob_plain", file_name
=>$file_name,
4554 -title
=> $name}, esc_path
($basename));
4555 } elsif (defined $type && $type eq 'tree') {
4556 print $cgi->a({-href
=> href
(action
=>"tree", file_name
=>$file_name,
4558 -title
=> $name}, esc_path
($basename));
4561 print esc_path
($basename);
4564 print "<br/></div>\n";
4571 if ($opts{'-remove_title'}) {
4572 # remove title, i.e. first line of log
4575 # remove leading empty lines
4576 while (defined $log->[0] && $log->[0] eq "") {
4581 my $skip_blank_line = 0;
4582 foreach my $line (@$log) {
4583 if ($line =~ m/^\s*([A-Z][-A-Za-z]*-[Bb]y|C[Cc]): /) {
4584 if (! $opts{'-remove_signoff'}) {
4585 print "<span class=\"signoff\">" . esc_html
($line) . "</span><br/>\n";
4586 $skip_blank_line = 1;
4591 if ($line =~ m
,\s
*([a-z
]*link): (https
?://\S
+),i
) {
4592 if (! $opts{'-remove_signoff'}) {
4593 print "<span class=\"signoff\">" . esc_html
($1) . ": " .
4594 "<a href=\"" . esc_html
($2) . "\">" . esc_html
($2) . "</a>" .
4596 $skip_blank_line = 1;
4601 # print only one empty line
4602 # do not print empty line after signoff
4604 next if ($skip_blank_line);
4605 $skip_blank_line = 1;
4607 $skip_blank_line = 0;
4610 print format_log_line_html
($line) . "<br/>\n";
4613 if ($opts{'-final_empty_line'}) {
4614 # end with single empty line
4615 print "<br/>\n" unless $skip_blank_line;
4619 # return link target (what link points to)
4620 sub git_get_link_target
{
4625 open my $fd, "-|", git_cmd
(), "cat-file", "blob", $hash
4629 $link_target = <$fd>;
4634 return $link_target;
4637 # given link target, and the directory (basedir) the link is in,
4638 # return target of link relative to top directory (top tree);
4639 # return undef if it is not possible (including absolute links).
4640 sub normalize_link_target
{
4641 my ($link_target, $basedir) = @_;
4643 # absolute symlinks (beginning with '/') cannot be normalized
4644 return if (substr($link_target, 0, 1) eq '/');
4646 # normalize link target to path from top (root) tree (dir)
4649 $path = $basedir . '/' . $link_target;
4651 # we are in top (root) tree (dir)
4652 $path = $link_target;
4655 # remove //, /./, and /../
4657 foreach my $part (split('/', $path)) {
4658 # discard '.' and ''
4659 next if (!$part || $part eq '.');
4661 if ($part eq '..') {
4665 # link leads outside repository (outside top dir)
4669 push @path_parts, $part;
4672 $path = join('/', @path_parts);
4677 # print tree entry (row of git_tree), but without encompassing <tr> element
4678 sub git_print_tree_entry
{
4679 my ($t, $basedir, $hash_base, $have_blame) = @_;
4682 $base_key{'hash_base'} = $hash_base if defined $hash_base;
4684 # The format of a table row is: mode list link. Where mode is
4685 # the mode of the entry, list is the name of the entry, an href,
4686 # and link is the action links of the entry.
4688 print "<td class=\"mode\">" . mode_str
($t->{'mode'}) . "</td>\n";
4689 if (exists $t->{'size'}) {
4690 print "<td class=\"size\">$t->{'size'}</td>\n";
4692 if ($t->{'type'} eq "blob") {
4693 print "<td class=\"list\">" .
4694 $cgi->a({-href
=> href
(action
=>"blob", hash
=>$t->{'hash'},
4695 file_name
=>"$basedir$t->{'name'}", %base_key),
4696 -class => "list"}, esc_path
($t->{'name'}));
4697 if (S_ISLNK
(oct $t->{'mode'})) {
4698 my $link_target = git_get_link_target
($t->{'hash'});
4700 my $norm_target = normalize_link_target
($link_target, $basedir);
4701 if (defined $norm_target) {
4703 $cgi->a({-href
=> href
(action
=>"object", hash_base
=>$hash_base,
4704 file_name
=>$norm_target),
4705 -title
=> $norm_target}, esc_path
($link_target));
4707 print " -> " . esc_path
($link_target);
4712 print "<td class=\"link\">";
4713 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$t->{'hash'},
4714 file_name
=>"$basedir$t->{'name'}", %base_key)},
4718 $cgi->a({-href
=> href
(action
=>"blame", hash
=>$t->{'hash'},
4719 file_name
=>"$basedir$t->{'name'}", %base_key)},
4722 if (defined $hash_base) {
4724 $cgi->a({-href
=> href
(action
=>"history", hash_base
=>$hash_base,
4725 hash
=>$t->{'hash'}, file_name
=>"$basedir$t->{'name'}")},
4729 $cgi->a({-href
=> href
(action
=>"blob_plain", hash_base
=>$hash_base,
4730 file_name
=>"$basedir$t->{'name'}")},
4734 } elsif ($t->{'type'} eq "tree") {
4735 print "<td class=\"list\">";
4736 print $cgi->a({-href
=> href
(action
=>"tree", hash
=>$t->{'hash'},
4737 file_name
=>"$basedir$t->{'name'}",
4739 esc_path
($t->{'name'}));
4741 print "<td class=\"link\">";
4742 print $cgi->a({-href
=> href
(action
=>"tree", hash
=>$t->{'hash'},
4743 file_name
=>"$basedir$t->{'name'}",
4746 if (defined $hash_base) {
4748 $cgi->a({-href
=> href
(action
=>"history", hash_base
=>$hash_base,
4749 file_name
=>"$basedir$t->{'name'}")},
4754 # unknown object: we can only present history for it
4755 # (this includes 'commit' object, i.e. submodule support)
4756 print "<td class=\"list\">" .
4757 esc_path
($t->{'name'}) .
4759 print "<td class=\"link\">";
4760 if (defined $hash_base) {
4761 print $cgi->a({-href
=> href
(action
=>"history",
4762 hash_base
=>$hash_base,
4763 file_name
=>"$basedir$t->{'name'}")},
4770 ## ......................................................................
4771 ## functions printing large fragments of HTML
4773 # get pre-image filenames for merge (combined) diff
4774 sub fill_from_file_info
{
4775 my ($diff, @parents) = @_;
4777 $diff->{'from_file'} = [ ];
4778 $diff->{'from_file'}[$diff->{'nparents'} - 1] = undef;
4779 for (my $i = 0; $i < $diff->{'nparents'}; $i++) {
4780 if ($diff->{'status'}[$i] eq 'R' ||
4781 $diff->{'status'}[$i] eq 'C') {
4782 $diff->{'from_file'}[$i] =
4783 git_get_path_by_hash
($parents[$i], $diff->{'from_id'}[$i]);
4790 # is current raw difftree line of file deletion
4792 my $diffinfo = shift;
4794 return $diffinfo->{'to_id'} eq ('0' x
40);
4797 # does patch correspond to [previous] difftree raw line
4798 # $diffinfo - hashref of parsed raw diff format
4799 # $patchinfo - hashref of parsed patch diff format
4800 # (the same keys as in $diffinfo)
4801 sub is_patch_split
{
4802 my ($diffinfo, $patchinfo) = @_;
4804 return defined $diffinfo && defined $patchinfo
4805 && $diffinfo->{'to_file'} eq $patchinfo->{'to_file'};
4809 sub git_difftree_body
{
4810 my ($difftree, $hash, @parents) = @_;
4811 my ($parent) = $parents[0];
4812 my $have_blame = gitweb_check_feature
('blame');
4813 print "<div class=\"list_head\">\n";
4814 if ($#{$difftree} > 10) {
4815 print(($#{$difftree} + 1) . " files changed:\n");
4819 print "<table class=\"" .
4820 (@parents > 1 ? "combined " : "") .
4823 # header only for combined diff in 'commitdiff' view
4824 my $has_header = @$difftree && @parents > 1 && $action eq 'commitdiff';
4827 print "<thead><tr>\n" .
4828 "<th></th><th></th>\n"; # filename, patchN link
4829 for (my $i = 0; $i < @parents; $i++) {
4830 my $par = $parents[$i];
4832 $cgi->a({-href
=> href
(action
=>"commitdiff",
4833 hash
=>$hash, hash_parent
=>$par),
4834 -title
=> 'commitdiff to parent number ' .
4835 ($i+1) . ': ' . substr($par,0,7)},
4839 print "</tr></thead>\n<tbody>\n";
4844 foreach my $line (@{$difftree}) {
4845 my $diff = parsed_difftree_line
($line);
4848 print "<tr class=\"dark\">\n";
4850 print "<tr class=\"light\">\n";
4854 if (exists $diff->{'nparents'}) { # combined diff
4856 fill_from_file_info
($diff, @parents)
4857 unless exists $diff->{'from_file'};
4859 if (!is_deleted
($diff)) {
4860 # file exists in the result (child) commit
4862 $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff->{'to_id'},
4863 file_name
=>$diff->{'to_file'},
4865 -class => "list"}, esc_path
($diff->{'to_file'})) .
4869 esc_path
($diff->{'to_file'}) .
4873 if ($action eq 'commitdiff') {
4876 print "<td class=\"link\">" .
4877 $cgi->a({-href
=> href
(-anchor
=>"patch$patchno")},
4883 my $has_history = 0;
4884 my $not_deleted = 0;
4885 for (my $i = 0; $i < $diff->{'nparents'}; $i++) {
4886 my $hash_parent = $parents[$i];
4887 my $from_hash = $diff->{'from_id'}[$i];
4888 my $from_path = $diff->{'from_file'}[$i];
4889 my $status = $diff->{'status'}[$i];
4891 $has_history ||= ($status ne 'A');
4892 $not_deleted ||= ($status ne 'D');
4894 if ($status eq 'A') {
4895 print "<td class=\"link\" align=\"right\"> | </td>\n";
4896 } elsif ($status eq 'D') {
4897 print "<td class=\"link\">" .
4898 $cgi->a({-href
=> href
(action
=>"blob",
4901 file_name
=>$from_path)},
4905 if ($diff->{'to_id'} eq $from_hash) {
4906 print "<td class=\"link nochange\">";
4908 print "<td class=\"link\">";
4910 print $cgi->a({-href
=> href
(action
=>"blobdiff",
4911 hash
=>$diff->{'to_id'},
4912 hash_parent
=>$from_hash,
4914 hash_parent_base
=>$hash_parent,
4915 file_name
=>$diff->{'to_file'},
4916 file_parent
=>$from_path)},
4922 print "<td class=\"link\">";
4924 print $cgi->a({-href
=> href
(action
=>"blob",
4925 hash
=>$diff->{'to_id'},
4926 file_name
=>$diff->{'to_file'},
4929 print " | " if ($has_history);
4932 print $cgi->a({-href
=> href
(action
=>"history",
4933 file_name
=>$diff->{'to_file'},
4940 next; # instead of 'else' clause, to avoid extra indent
4942 # else ordinary diff
4944 my ($to_mode_oct, $to_mode_str, $to_file_type);
4945 my ($from_mode_oct, $from_mode_str, $from_file_type);
4946 if ($diff->{'to_mode'} ne ('0' x
6)) {
4947 $to_mode_oct = oct $diff->{'to_mode'};
4948 if (S_ISREG
($to_mode_oct)) { # only for regular file
4949 $to_mode_str = sprintf("%04o", $to_mode_oct & 0777); # permission bits
4951 $to_file_type = file_type
($diff->{'to_mode'});
4953 if ($diff->{'from_mode'} ne ('0' x
6)) {
4954 $from_mode_oct = oct $diff->{'from_mode'};
4955 if (S_ISREG
($from_mode_oct)) { # only for regular file
4956 $from_mode_str = sprintf("%04o", $from_mode_oct & 0777); # permission bits
4958 $from_file_type = file_type
($diff->{'from_mode'});
4961 if ($diff->{'status'} eq "A") { # created
4962 my $mode_chng = "<span class=\"file_status new\">[new $to_file_type";
4963 $mode_chng .= " with mode: $to_mode_str" if $to_mode_str;
4964 $mode_chng .= "]</span>";
4966 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff->{'to_id'},
4967 hash_base
=>$hash, file_name
=>$diff->{'file'}),
4968 -class => "list"}, esc_path
($diff->{'file'}));
4970 print "<td>$mode_chng</td>\n";
4971 print "<td class=\"link\">";
4972 if ($action eq 'commitdiff') {
4975 print $cgi->a({-href
=> href
(-anchor
=>"patch$patchno")},
4979 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff->{'to_id'},
4980 hash_base
=>$hash, file_name
=>$diff->{'file'})},
4984 } elsif ($diff->{'status'} eq "D") { # deleted
4985 my $mode_chng = "<span class=\"file_status deleted\">[deleted $from_file_type]</span>";
4987 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff->{'from_id'},
4988 hash_base
=>$parent, file_name
=>$diff->{'file'}),
4989 -class => "list"}, esc_path
($diff->{'file'}));
4991 print "<td>$mode_chng</td>\n";
4992 print "<td class=\"link\">";
4993 if ($action eq 'commitdiff') {
4996 print $cgi->a({-href
=> href
(-anchor
=>"patch$patchno")},
5000 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff->{'from_id'},
5001 hash_base
=>$parent, file_name
=>$diff->{'file'})},
5004 print $cgi->a({-href
=> href
(action
=>"blame", hash_base
=>$parent,
5005 file_name
=>$diff->{'file'})},
5008 print $cgi->a({-href
=> href
(action
=>"history", hash_base
=>$parent,
5009 file_name
=>$diff->{'file'})},
5013 } elsif ($diff->{'status'} eq "M" || $diff->{'status'} eq "T") { # modified, or type changed
5014 my $mode_chnge = "";
5015 if ($diff->{'from_mode'} != $diff->{'to_mode'}) {
5016 $mode_chnge = "<span class=\"file_status mode_chnge\">[changed";
5017 if ($from_file_type ne $to_file_type) {
5018 $mode_chnge .= " from $from_file_type to $to_file_type";
5020 if (($from_mode_oct & 0777) != ($to_mode_oct & 0777)) {
5021 if ($from_mode_str && $to_mode_str) {
5022 $mode_chnge .= " mode: $from_mode_str->$to_mode_str";
5023 } elsif ($to_mode_str) {
5024 $mode_chnge .= " mode: $to_mode_str";
5027 $mode_chnge .= "]</span>\n";
5030 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff->{'to_id'},
5031 hash_base
=>$hash, file_name
=>$diff->{'file'}),
5032 -class => "list"}, esc_path
($diff->{'file'}));
5034 print "<td>$mode_chnge</td>\n";
5035 print "<td class=\"link\">";
5036 if ($action eq 'commitdiff') {
5039 print $cgi->a({-href
=> href
(-anchor
=>"patch$patchno")},
5042 } elsif ($diff->{'to_id'} ne $diff->{'from_id'}) {
5043 # "commit" view and modified file (not onlu mode changed)
5044 print $cgi->a({-href
=> href
(action
=>"blobdiff",
5045 hash
=>$diff->{'to_id'}, hash_parent
=>$diff->{'from_id'},
5046 hash_base
=>$hash, hash_parent_base
=>$parent,
5047 file_name
=>$diff->{'file'})},
5051 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff->{'to_id'},
5052 hash_base
=>$hash, file_name
=>$diff->{'file'})},
5055 print $cgi->a({-href
=> href
(action
=>"blame", hash_base
=>$hash,
5056 file_name
=>$diff->{'file'})},
5059 print $cgi->a({-href
=> href
(action
=>"history", hash_base
=>$hash,
5060 file_name
=>$diff->{'file'})},
5064 } elsif ($diff->{'status'} eq "R" || $diff->{'status'} eq "C") { # renamed or copied
5065 my %status_name = ('R' => 'moved', 'C' => 'copied');
5066 my $nstatus = $status_name{$diff->{'status'}};
5068 if ($diff->{'from_mode'} != $diff->{'to_mode'}) {
5069 # mode also for directories, so we cannot use $to_mode_str
5070 $mode_chng = sprintf(", mode: %04o", $to_mode_oct & 0777);
5073 $cgi->a({-href
=> href
(action
=>"blob", hash_base
=>$hash,
5074 hash
=>$diff->{'to_id'}, file_name
=>$diff->{'to_file'}),
5075 -class => "list"}, esc_path
($diff->{'to_file'})) . "</td>\n" .
5076 "<td><span class=\"file_status $nstatus\">[$nstatus from " .
5077 $cgi->a({-href
=> href
(action
=>"blob", hash_base
=>$parent,
5078 hash
=>$diff->{'from_id'}, file_name
=>$diff->{'from_file'}),
5079 -class => "list"}, esc_path
($diff->{'from_file'})) .
5080 " with " . (int $diff->{'similarity'}) . "% similarity$mode_chng]</span></td>\n" .
5081 "<td class=\"link\">";
5082 if ($action eq 'commitdiff') {
5085 print $cgi->a({-href
=> href
(-anchor
=>"patch$patchno")},
5088 } elsif ($diff->{'to_id'} ne $diff->{'from_id'}) {
5089 # "commit" view and modified file (not only pure rename or copy)
5090 print $cgi->a({-href
=> href
(action
=>"blobdiff",
5091 hash
=>$diff->{'to_id'}, hash_parent
=>$diff->{'from_id'},
5092 hash_base
=>$hash, hash_parent_base
=>$parent,
5093 file_name
=>$diff->{'to_file'}, file_parent
=>$diff->{'from_file'})},
5097 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff->{'to_id'},
5098 hash_base
=>$parent, file_name
=>$diff->{'to_file'})},
5101 print $cgi->a({-href
=> href
(action
=>"blame", hash_base
=>$hash,
5102 file_name
=>$diff->{'to_file'})},
5105 print $cgi->a({-href
=> href
(action
=>"history", hash_base
=>$hash,
5106 file_name
=>$diff->{'to_file'})},
5110 } # we should not encounter Unmerged (U) or Unknown (X) status
5113 print "</tbody>" if $has_header;
5117 # Print context lines and then rem/add lines in a side-by-side manner.
5118 sub print_sidebyside_diff_lines
{
5119 my ($ctx, $rem, $add) = @_;
5121 # print context block before add/rem block
5124 '<div class="chunk_block ctx">',
5125 '<div class="old">',
5128 '<div class="new">',
5137 '<div class="chunk_block rem">',
5138 '<div class="old">',
5145 '<div class="chunk_block add">',
5146 '<div class="new">',
5152 '<div class="chunk_block chg">',
5153 '<div class="old">',
5156 '<div class="new">',
5163 # Print context lines and then rem/add lines in inline manner.
5164 sub print_inline_diff_lines
{
5165 my ($ctx, $rem, $add) = @_;
5167 print @$ctx, @$rem, @$add;
5170 # Format removed and added line, mark changed part and HTML-format them.
5171 # Implementation is based on contrib/diff-highlight
5172 sub format_rem_add_lines_pair
{
5173 my ($rem, $add, $num_parents) = @_;
5175 # We need to untabify lines before split()'ing them;
5176 # otherwise offsets would be invalid.
5179 $rem = untabify
($rem);
5180 $add = untabify
($add);
5182 my @rem = split(//, $rem);
5183 my @add = split(//, $add);
5184 my ($esc_rem, $esc_add);
5185 # Ignore leading +/- characters for each parent.
5186 my ($prefix_len, $suffix_len) = ($num_parents, 0);
5187 my ($prefix_has_nonspace, $suffix_has_nonspace);
5189 my $shorter = (@rem < @add) ? @rem : @add;
5190 while ($prefix_len < $shorter) {
5191 last if ($rem[$prefix_len] ne $add[$prefix_len]);
5193 $prefix_has_nonspace = 1 if ($rem[$prefix_len] !~ /\s/);
5197 while ($prefix_len + $suffix_len < $shorter) {
5198 last if ($rem[-1 - $suffix_len] ne $add[-1 - $suffix_len]);
5200 $suffix_has_nonspace = 1 if ($rem[-1 - $suffix_len] !~ /\s/);
5204 # Mark lines that are different from each other, but have some common
5205 # part that isn't whitespace. If lines are completely different, don't
5206 # mark them because that would make output unreadable, especially if
5207 # diff consists of multiple lines.
5208 if ($prefix_has_nonspace || $suffix_has_nonspace) {
5209 $esc_rem = esc_html_hl_regions
($rem, 'marked',
5210 [$prefix_len, @rem - $suffix_len], -nbsp
=>1);
5211 $esc_add = esc_html_hl_regions
($add, 'marked',
5212 [$prefix_len, @add - $suffix_len], -nbsp
=>1);
5214 $esc_rem = esc_html
($rem, -nbsp
=>1);
5215 $esc_add = esc_html
($add, -nbsp
=>1);
5218 return format_diff_line
(\
$esc_rem, 'rem'),
5219 format_diff_line
(\
$esc_add, 'add');
5222 # HTML-format diff context, removed and added lines.
5223 sub format_ctx_rem_add_lines
{
5224 my ($ctx, $rem, $add, $num_parents) = @_;
5225 my (@new_ctx, @new_rem, @new_add);
5226 my $can_highlight = 0;
5227 my $is_combined = ($num_parents > 1);
5229 # Highlight if every removed line has a corresponding added line.
5230 if (@$add > 0 && @$add == @$rem) {
5233 # Highlight lines in combined diff only if the chunk contains
5234 # diff between the same version, e.g.
5241 # Otherwise the highlightling would be confusing.
5243 for (my $i = 0; $i < @$add; $i++) {
5244 my $prefix_rem = substr($rem->[$i], 0, $num_parents);
5245 my $prefix_add = substr($add->[$i], 0, $num_parents);
5247 $prefix_rem =~ s/-/+/g;
5249 if ($prefix_rem ne $prefix_add) {
5257 if ($can_highlight) {
5258 for (my $i = 0; $i < @$add; $i++) {
5259 my ($line_rem, $line_add) = format_rem_add_lines_pair
(
5260 $rem->[$i], $add->[$i], $num_parents);
5261 push @new_rem, $line_rem;
5262 push @new_add, $line_add;
5265 @new_rem = map { format_diff_line
($_, 'rem') } @$rem;
5266 @new_add = map { format_diff_line
($_, 'add') } @$add;
5269 @new_ctx = map { format_diff_line
($_, 'ctx') } @$ctx;
5271 return (\
@new_ctx, \
@new_rem, \
@new_add);
5274 # Print context lines and then rem/add lines.
5275 sub print_diff_lines
{
5276 my ($ctx, $rem, $add, $diff_style, $num_parents) = @_;
5277 my $is_combined = $num_parents > 1;
5279 ($ctx, $rem, $add) = format_ctx_rem_add_lines
($ctx, $rem, $add,
5282 if ($diff_style eq 'sidebyside' && !$is_combined) {
5283 print_sidebyside_diff_lines
($ctx, $rem, $add);
5285 # default 'inline' style and unknown styles
5286 print_inline_diff_lines
($ctx, $rem, $add);
5290 sub print_diff_chunk
{
5291 my ($diff_style, $num_parents, $from, $to, @chunk) = @_;
5292 my (@ctx, @rem, @add);
5294 # The class of the previous line.
5295 my $prev_class = '';
5297 return unless @chunk;
5299 # incomplete last line might be among removed or added lines,
5300 # or both, or among context lines: find which
5301 for (my $i = 1; $i < @chunk; $i++) {
5302 if ($chunk[$i][0] eq 'incomplete') {
5303 $chunk[$i][0] = $chunk[$i-1][0];
5308 push @chunk, ["", ""];
5310 foreach my $line_info (@chunk) {
5311 my ($class, $line) = @$line_info;
5313 # print chunk headers
5314 if ($class && $class eq 'chunk_header') {
5315 print format_diff_line
($line, $class, $from, $to);
5319 ## print from accumulator when have some add/rem lines or end
5320 # of chunk (flush context lines), or when have add and rem
5321 # lines and new block is reached (otherwise add/rem lines could
5323 if (!$class || ((@rem || @add) && $class eq 'ctx') ||
5324 (@rem && @add && $class ne $prev_class)) {
5325 print_diff_lines
(\
@ctx, \
@rem, \
@add,
5326 $diff_style, $num_parents);
5327 @ctx = @rem = @add = ();
5330 ## adding lines to accumulator
5333 # rem, add or change
5334 if ($class eq 'rem') {
5336 } elsif ($class eq 'add') {
5340 if ($class eq 'ctx') {
5344 $prev_class = $class;
5348 sub git_patchset_body
{
5349 my ($fd, $diff_style, $difftree, $hash, @hash_parents) = @_;
5350 my ($hash_parent) = $hash_parents[0];
5352 my $is_combined = (@hash_parents > 1);
5354 my $patch_number = 0;
5359 my @chunk; # for side-by-side diff
5361 print "<div class=\"patchset\">\n";
5363 # skip to first patch
5364 while ($patch_line = <$fd>) {
5367 last if ($patch_line =~ m/^diff /);
5371 while ($patch_line) {
5373 # parse "git diff" header line
5374 if ($patch_line =~ m/^diff --git (\"(?:[^\\\"]*(?:\\.[^\\\"]*)*)\"|[^ "]*) (.*)$/) {
5375 # $1 is from_name, which we do not use
5376 $to_name = unquote
($2);
5377 $to_name =~ s!^b/!!;
5378 } elsif ($patch_line =~ m/^diff --(cc|combined) ("?.*"?)$/) {
5379 # $1 is 'cc' or 'combined', which we do not use
5380 $to_name = unquote
($2);
5385 # check if current patch belong to current raw line
5386 # and parse raw git-diff line if needed
5387 if (is_patch_split
($diffinfo, { 'to_file' => $to_name })) {
5388 # this is continuation of a split patch
5389 print "<div class=\"patch cont\">\n";
5391 # advance raw git-diff output if needed
5392 $patch_idx++ if defined $diffinfo;
5394 # read and prepare patch information
5395 $diffinfo = parsed_difftree_line
($difftree->[$patch_idx]);
5397 # compact combined diff output can have some patches skipped
5398 # find which patch (using pathname of result) we are at now;
5400 while ($to_name ne $diffinfo->{'to_file'}) {
5401 print "<div class=\"patch\" id=\"patch". ($patch_idx+1) ."\">\n" .
5402 format_diff_cc_simplified
($diffinfo, @hash_parents) .
5403 "</div>\n"; # class="patch"
5408 last if $patch_idx > $#$difftree;
5409 $diffinfo = parsed_difftree_line
($difftree->[$patch_idx]);
5413 # modifies %from, %to hashes
5414 parse_from_to_diffinfo
($diffinfo, \
%from, \
%to, @hash_parents);
5416 # this is first patch for raw difftree line with $patch_idx index
5417 # we index @$difftree array from 0, but number patches from 1
5418 print "<div class=\"patch\" id=\"patch". ($patch_idx+1) ."\">\n";
5422 #assert($patch_line =~ m/^diff /) if DEBUG;
5423 #assert($patch_line !~ m!$/$!) if DEBUG; # is chomp-ed
5425 # print "git diff" header
5426 print format_git_diff_header_line
($patch_line, $diffinfo,
5429 # print extended diff header
5430 print "<div class=\"diff extended_header\">\n";
5432 while ($patch_line = <$fd>) {
5435 last EXTENDED_HEADER
if ($patch_line =~ m/^--- |^diff /);
5437 print format_extended_diff_header_line
($patch_line, $diffinfo,
5440 print "</div>\n"; # class="diff extended_header"
5442 # from-file/to-file diff header
5443 if (! $patch_line) {
5444 print "</div>\n"; # class="patch"
5447 next PATCH
if ($patch_line =~ m/^diff /);
5448 #assert($patch_line =~ m/^---/) if DEBUG;
5450 my $last_patch_line = $patch_line;
5451 $patch_line = <$fd>;
5453 #assert($patch_line =~ m/^\+\+\+/) if DEBUG;
5455 print format_diff_from_to_header
($last_patch_line, $patch_line,
5456 $diffinfo, \
%from, \
%to,
5461 while ($patch_line = <$fd>) {
5464 next PATCH
if ($patch_line =~ m/^diff /);
5466 my $class = diff_line_class
($patch_line, \
%from, \
%to);
5468 if ($class eq 'chunk_header') {
5469 print_diff_chunk
($diff_style, scalar @hash_parents, \
%from, \
%to, @chunk);
5473 push @chunk, [ $class, $patch_line ];
5478 print_diff_chunk
($diff_style, scalar @hash_parents, \
%from, \
%to, @chunk);
5481 print "</div>\n"; # class="patch"
5484 # for compact combined (--cc) format, with chunk and patch simplification
5485 # the patchset might be empty, but there might be unprocessed raw lines
5486 for (++$patch_idx if $patch_number > 0;
5487 $patch_idx < @$difftree;
5489 # read and prepare patch information
5490 $diffinfo = parsed_difftree_line
($difftree->[$patch_idx]);
5492 # generate anchor for "patch" links in difftree / whatchanged part
5493 print "<div class=\"patch\" id=\"patch". ($patch_idx+1) ."\">\n" .
5494 format_diff_cc_simplified
($diffinfo, @hash_parents) .
5495 "</div>\n"; # class="patch"
5500 if ($patch_number == 0) {
5501 if (@hash_parents > 1) {
5502 print "<div class=\"diff nodifferences\">Trivial merge</div>\n";
5504 print "<div class=\"diff nodifferences\">No differences found</div>\n";
5508 print "</div>\n"; # class="patchset"
5511 # . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
5513 sub git_project_search_form
{
5514 my ($searchtext, $search_use_regexp) = @_;
5517 if ($project_filter) {
5518 $limit = " in '$project_filter/'";
5521 print "<div class=\"projsearch\">\n";
5522 print $cgi->start_form(-method => 'get', -action
=> $my_uri) .
5523 $cgi->hidden(-name
=> 'a', -value
=> 'project_list') . "\n";
5524 print $cgi->hidden(-name
=> 'pf', -value
=> $project_filter). "\n"
5525 if (defined $project_filter);
5526 print $cgi->textfield(-name
=> 's', -value
=> $searchtext,
5527 -title
=> "Search project by name and description$limit",
5528 -size
=> 60) . "\n" .
5529 "<span title=\"Extended regular expression\">" .
5530 $cgi->checkbox(-name
=> 'sr', -value
=> 1, -label
=> 're',
5531 -checked
=> $search_use_regexp) .
5533 $cgi->submit(-name
=> 'btnS', -value
=> 'Search') .
5534 $cgi->end_form() . "\n" .
5535 $cgi->a({-href
=> href
(project
=> undef, searchtext
=> undef,
5536 project_filter
=> $project_filter)},
5537 esc_html
("List all projects$limit")) . "<br />\n";
5541 # entry for given @keys needs filling if at least one of keys in list
5542 # is not present in %$project_info
5543 sub project_info_needs_filling
{
5544 my ($project_info, @keys) = @_;
5546 # return List::MoreUtils::any { !exists $project_info->{$_} } @keys;
5547 foreach my $key (@keys) {
5548 if (!exists $project_info->{$key}) {
5555 # fills project list info (age, description, owner, category, forks, etc.)
5556 # for each project in the list, removing invalid projects from
5557 # returned list, or fill only specified info.
5559 # Invalid projects are removed from the returned list if and only if you
5560 # ask 'age' or 'age_string' to be filled, because they are the only fields
5561 # that run unconditionally git command that requires repository, and
5562 # therefore do always check if project repository is invalid.
5565 # * fill_project_list_info(\@project_list, 'descr_long', 'ctags')
5566 # ensures that 'descr_long' and 'ctags' fields are filled
5567 # * @project_list = fill_project_list_info(\@project_list)
5568 # ensures that all fields are filled (and invalid projects removed)
5570 # NOTE: modifies $projlist, but does not remove entries from it
5571 sub fill_project_list_info
{
5572 my ($projlist, @wanted_keys) = @_;
5574 my $filter_set = sub { return @_; };
5576 my %wanted_keys = map { $_ => 1 } @wanted_keys;
5577 $filter_set = sub { return grep { $wanted_keys{$_} } @_; };
5580 my $show_ctags = gitweb_check_feature
('ctags');
5582 foreach my $pr (@$projlist) {
5583 if (project_info_needs_filling
($pr, $filter_set->('age', 'age_string'))) {
5584 my (@activity) = git_get_last_activity
($pr->{'path'});
5585 unless (@activity) {
5588 ($pr->{'age'}, $pr->{'age_string'}) = @activity;
5590 if (project_info_needs_filling
($pr, $filter_set->('descr', 'descr_long'))) {
5591 my $descr = git_get_project_description
($pr->{'path'}) || "";
5592 $descr = to_utf8
($descr);
5593 $pr->{'descr_long'} = $descr;
5594 $pr->{'descr'} = chop_str
($descr, $projects_list_description_width, 5);
5596 if (project_info_needs_filling
($pr, $filter_set->('owner'))) {
5597 $pr->{'owner'} = git_get_project_owner
("$pr->{'path'}") || "";
5600 project_info_needs_filling
($pr, $filter_set->('ctags'))) {
5601 $pr->{'ctags'} = git_get_project_ctags
($pr->{'path'});
5603 if ($projects_list_group_categories &&
5604 project_info_needs_filling
($pr, $filter_set->('category'))) {
5605 my $cat = git_get_project_category
($pr->{'path'}) ||
5606 $project_list_default_category;
5607 $pr->{'category'} = to_utf8
($cat);
5610 push @projects, $pr;
5616 sub sort_projects_list
{
5617 my ($projlist, $order) = @_;
5621 return sub { $a->{$key} cmp $b->{$key} };
5624 sub order_num_then_undef
{
5627 defined $a->{$key} ?
5628 (defined $b->{$key} ? $a->{$key} <=> $b->{$key} : -1) :
5629 (defined $b->{$key} ? 1 : 0)
5634 project
=> order_str
('path'),
5635 descr
=> order_str
('descr_long'),
5636 owner
=> order_str
('owner'),
5637 age
=> order_num_then_undef
('age'),
5640 my $ordering = $orderings{$order};
5641 return defined $ordering ? sort $ordering @$projlist : @$projlist;
5644 # returns a hash of categories, containing the list of project
5645 # belonging to each category
5646 sub build_projlist_by_category
{
5647 my ($projlist, $from, $to) = @_;
5650 $from = 0 unless defined $from;
5651 $to = $#$projlist if (!defined $to || $#$projlist < $to);
5653 for (my $i = $from; $i <= $to; $i++) {
5654 my $pr = $projlist->[$i];
5655 push @{$categories{ $pr->{'category'} }}, $pr;
5658 return wantarray ? %categories : \
%categories;
5661 # print 'sort by' <th> element, generating 'sort by $name' replay link
5662 # if that order is not selected
5664 print format_sort_th
(@_);
5667 sub format_sort_th
{
5668 my ($name, $order, $header) = @_;
5670 $header ||= ucfirst($name);
5672 if ($order eq $name) {
5673 $sort_th .= "<th>$header</th>\n";
5675 $sort_th .= "<th>" .
5676 $cgi->a({-href
=> href
(-replay
=>1, order
=>$name),
5677 -class => "header"}, $header) .
5684 sub git_project_list_rows
{
5685 my ($projlist, $from, $to, $check_forks) = @_;
5687 $from = 0 unless defined $from;
5688 $to = $#$projlist if (!defined $to || $#$projlist < $to);
5691 for (my $i = $from; $i <= $to; $i++) {
5692 my $pr = $projlist->[$i];
5695 print "<tr class=\"dark\">\n";
5697 print "<tr class=\"light\">\n";
5703 if ($pr->{'forks'}) {
5704 my $nforks = scalar @{$pr->{'forks'}};
5706 print $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"forks"),
5707 -title
=> "$nforks forks"}, "+");
5709 print $cgi->span({-title
=> "$nforks forks"}, "+");
5714 print "<td>" . $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"summary"),
5716 esc_html_match_hl
($pr->{'path'}, $search_regexp)) .
5718 "<td>" . $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"summary"),
5720 -title
=> $pr->{'descr_long'}},
5722 ? esc_html_match_hl_chopped
($pr->{'descr_long'},
5723 $pr->{'descr'}, $search_regexp)
5724 : esc_html
($pr->{'descr'})) .
5726 unless ($omit_owner) {
5727 print "<td><i>" . chop_and_escape_str
($pr->{'owner'}, 15) . "</i></td>\n";
5729 unless ($omit_age_column) {
5730 print "<td class=\"". age_class
($pr->{'age'}) . "\">" .
5731 (defined $pr->{'age_string'} ? $pr->{'age_string'} : "No commits") . "</td>\n";
5733 print"<td class=\"link\">" .
5734 $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"summary")}, "summary") . " | " .
5735 $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"shortlog")}, "shortlog") . " | " .
5736 $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"log")}, "log") . " | " .
5737 $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"tree")}, "tree") .
5738 ($pr->{'forks'} ? " | " . $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"forks")}, "forks") : '') .
5744 sub git_project_list_body
{
5745 # actually uses global variable $project
5746 my ($projlist, $order, $from, $to, $extra, $no_header) = @_;
5747 my @projects = @$projlist;
5749 my $check_forks = gitweb_check_feature
('forks');
5750 my $show_ctags = gitweb_check_feature
('ctags');
5751 my $tagfilter = $show_ctags ? $input_params{'ctag'} : undef;
5752 $check_forks = undef
5753 if ($tagfilter || $search_regexp);
5755 # filtering out forks before filling info allows to do less work
5756 @projects = filter_forks_from_projects_list
(\
@projects)
5758 # search_projects_list pre-fills required info
5759 @projects = search_projects_list
(\
@projects,
5760 'search_regexp' => $search_regexp,
5761 'tagfilter' => $tagfilter)
5762 if ($tagfilter || $search_regexp);
5764 my @all_fields = ('descr', 'descr_long', 'ctags', 'category');
5765 push @all_fields, ('age', 'age_string') unless($omit_age_column);
5766 push @all_fields, 'owner' unless($omit_owner);
5767 @projects = fill_project_list_info
(\
@projects, @all_fields);
5769 $order ||= $default_projects_order;
5770 $from = 0 unless defined $from;
5771 $to = $#projects if (!defined $to || $#projects < $to);
5776 "<b>No such projects found</b><br />\n".
5777 "Click ".$cgi->a({-href
=>href
(project
=>undef)},"here")." to view all projects<br />\n".
5778 "</center>\n<br />\n";
5782 @projects = sort_projects_list
(\
@projects, $order);
5785 my $ctags = git_gather_all_ctags
(\
@projects);
5786 my $cloud = git_populate_project_tagcloud
($ctags);
5787 print git_show_project_tagcloud
($cloud, 64);
5790 print "<table class=\"project_list\">\n";
5791 unless ($no_header) {
5794 print "<th></th>\n";
5796 print_sort_th
('project', $order, 'Project');
5797 print_sort_th
('descr', $order, 'Description');
5798 print_sort_th
('owner', $order, 'Owner') unless $omit_owner;
5799 print_sort_th
('age', $order, 'Last Change') unless $omit_age_column;
5800 print "<th></th>\n" . # for links
5804 if ($projects_list_group_categories) {
5805 # only display categories with projects in the $from-$to window
5806 @projects = sort {$a->{'category'} cmp $b->{'category'}} @projects[$from..$to];
5807 my %categories = build_projlist_by_category
(\
@projects, $from, $to);
5808 foreach my $cat (sort keys %categories) {
5809 unless ($cat eq "") {
5812 print "<td></td>\n";
5814 print "<td class=\"category\" colspan=\"5\">".esc_html
($cat)."</td>\n";
5818 git_project_list_rows
($categories{$cat}, undef, undef, $check_forks);
5821 git_project_list_rows
(\
@projects, $from, $to, $check_forks);
5824 if (defined $extra) {
5827 print "<td></td>\n";
5829 print "<td colspan=\"5\">$extra</td>\n" .
5836 # uses global variable $project
5837 my ($commitlist, $from, $to, $refs, $extra) = @_;
5839 $from = 0 unless defined $from;
5840 $to = $#{$commitlist} if (!defined $to || $#{$commitlist} < $to);
5842 for (my $i = 0; $i <= $to; $i++) {
5843 my %co = %{$commitlist->[$i]};
5845 my $commit = $co{'id'};
5846 my $ref = format_ref_marker
($refs, $commit);
5847 git_print_header_div
('commit',
5848 "<span class=\"age\">$co{'age_string'}</span>" .
5849 esc_html
($co{'title'}) . $ref,
5851 print "<div class=\"title_text\">\n" .
5852 "<div class=\"log_link\">\n" .
5853 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$commit)}, "commit") .
5855 $cgi->a({-href
=> href
(action
=>"commitdiff", hash
=>$commit)}, "commitdiff") .
5857 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$commit, hash_base
=>$commit)}, "tree") .
5860 git_print_authorship
(\
%co, -tag
=> 'span');
5861 print "<br/>\n</div>\n";
5863 print "<div class=\"log_body\">\n";
5864 git_print_log
($co{'comment'}, -final_empty_line
=> 1);
5868 print "<div class=\"page_nav\">\n";
5874 sub git_shortlog_body
{
5875 # uses global variable $project
5876 my ($commitlist, $from, $to, $refs, $extra) = @_;
5878 $from = 0 unless defined $from;
5879 $to = $#{$commitlist} if (!defined $to || $#{$commitlist} < $to);
5881 print "<table class=\"shortlog\">\n";
5883 for (my $i = $from; $i <= $to; $i++) {
5884 my %co = %{$commitlist->[$i]};
5885 my $commit = $co{'id'};
5886 my $ref = format_ref_marker
($refs, $commit);
5888 print "<tr class=\"dark\">\n";
5890 print "<tr class=\"light\">\n";
5893 # git_summary() used print "<td><i>$co{'age_string'}</i></td>\n" .
5894 print "<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n" .
5895 format_author_html
('td', \
%co, 10) . "<td>";
5896 print format_subject_html
($co{'title'}, $co{'title_short'},
5897 href
(action
=>"commit", hash
=>$commit), $ref);
5899 "<td class=\"link\">" .
5900 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$commit)}, "commit") . " | " .
5901 $cgi->a({-href
=> href
(action
=>"commitdiff", hash
=>$commit)}, "commitdiff") . " | " .
5902 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$commit, hash_base
=>$commit)}, "tree");
5903 my $snapshot_links = format_snapshot_links
($commit);
5904 if (defined $snapshot_links) {
5905 print " | " . $snapshot_links;
5910 if (defined $extra) {
5912 "<td colspan=\"4\">$extra</td>\n" .
5918 sub git_history_body
{
5919 # Warning: assumes constant type (blob or tree) during history
5920 my ($commitlist, $from, $to, $refs, $extra,
5921 $file_name, $file_hash, $ftype) = @_;
5923 $from = 0 unless defined $from;
5924 $to = $#{$commitlist} unless (defined $to && $to <= $#{$commitlist});
5926 print "<table class=\"history\">\n";
5928 for (my $i = $from; $i <= $to; $i++) {
5929 my %co = %{$commitlist->[$i]};
5933 my $commit = $co{'id'};
5935 my $ref = format_ref_marker
($refs, $commit);
5938 print "<tr class=\"dark\">\n";
5940 print "<tr class=\"light\">\n";
5943 print "<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n" .
5944 # shortlog: format_author_html('td', \%co, 10)
5945 format_author_html
('td', \
%co, 15, 3) . "<td>";
5946 # originally git_history used chop_str($co{'title'}, 50)
5947 print format_subject_html
($co{'title'}, $co{'title_short'},
5948 href
(action
=>"commit", hash
=>$commit), $ref);
5950 "<td class=\"link\">" .
5951 $cgi->a({-href
=> href
(action
=>$ftype, hash_base
=>$commit, file_name
=>$file_name)}, $ftype) . " | " .
5952 $cgi->a({-href
=> href
(action
=>"commitdiff", hash
=>$commit)}, "commitdiff");
5954 if ($ftype eq 'blob') {
5955 my $blob_current = $file_hash;
5956 my $blob_parent = git_get_hash_by_path
($commit, $file_name);
5957 if (defined $blob_current && defined $blob_parent &&
5958 $blob_current ne $blob_parent) {
5960 $cgi->a({-href
=> href
(action
=>"blobdiff",
5961 hash
=>$blob_current, hash_parent
=>$blob_parent,
5962 hash_base
=>$hash_base, hash_parent_base
=>$commit,
5963 file_name
=>$file_name)},
5970 if (defined $extra) {
5972 "<td colspan=\"4\">$extra</td>\n" .
5979 # uses global variable $project
5980 my ($taglist, $from, $to, $extra) = @_;
5981 $from = 0 unless defined $from;
5982 $to = $#{$taglist} if (!defined $to || $#{$taglist} < $to);
5984 print "<table class=\"tags\">\n";
5986 for (my $i = $from; $i <= $to; $i++) {
5987 my $entry = $taglist->[$i];
5989 my $comment = $tag{'subject'};
5991 if (defined $comment) {
5992 $comment_short = chop_str
($comment, 30, 5);
5995 print "<tr class=\"dark\">\n";
5997 print "<tr class=\"light\">\n";
6000 if (defined $tag{'age'}) {
6001 print "<td><i>$tag{'age'}</i></td>\n";
6003 print "<td></td>\n";
6006 $cgi->a({-href
=> href
(action
=>$tag{'reftype'}, hash
=>$tag{'refid'}),
6007 -class => "list name"}, esc_html
($tag{'name'})) .
6010 if (defined $comment) {
6011 print format_subject_html
($comment, $comment_short,
6012 href
(action
=>"tag", hash
=>$tag{'id'}));
6015 "<td class=\"selflink\">";
6016 if ($tag{'type'} eq "tag") {
6017 print $cgi->a({-href
=> href
(action
=>"tag", hash
=>$tag{'id'})}, "tag");
6022 "<td class=\"link\">" . " | " .
6023 $cgi->a({-href
=> href
(action
=>$tag{'reftype'}, hash
=>$tag{'refid'})}, $tag{'reftype'});
6024 if ($tag{'reftype'} eq "commit") {
6025 print " | " . $cgi->a({-href
=> href
(action
=>"shortlog", hash
=>$tag{'fullname'})}, "shortlog") .
6026 " | " . $cgi->a({-href
=> href
(action
=>"log", hash
=>$tag{'fullname'})}, "log");
6027 } elsif ($tag{'reftype'} eq "blob") {
6028 print " | " . $cgi->a({-href
=> href
(action
=>"blob_plain", hash
=>$tag{'refid'})}, "raw");
6033 if (defined $extra) {
6035 "<td colspan=\"5\">$extra</td>\n" .
6041 sub git_heads_body
{
6042 # uses global variable $project
6043 my ($headlist, $head_at, $from, $to, $extra) = @_;
6044 $from = 0 unless defined $from;
6045 $to = $#{$headlist} if (!defined $to || $#{$headlist} < $to);
6047 print "<table class=\"heads\">\n";
6049 for (my $i = $from; $i <= $to; $i++) {
6050 my $entry = $headlist->[$i];
6052 my $curr = defined $head_at && $ref{'id'} eq $head_at;
6054 print "<tr class=\"dark\">\n";
6056 print "<tr class=\"light\">\n";
6059 print "<td><i>$ref{'age'}</i></td>\n" .
6060 ($curr ? "<td class=\"current_head\">" : "<td>") .
6061 $cgi->a({-href
=> href
(action
=>"shortlog", hash
=>$ref{'fullname'}),
6062 -class => "list name"},esc_html
($ref{'name'})) .
6064 "<td class=\"link\">" .
6065 $cgi->a({-href
=> href
(action
=>"shortlog", hash
=>$ref{'fullname'})}, "shortlog") . " | " .
6066 $cgi->a({-href
=> href
(action
=>"log", hash
=>$ref{'fullname'})}, "log") . " | " .
6067 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$ref{'fullname'}, hash_base
=>$ref{'fullname'})}, "tree") .
6071 if (defined $extra) {
6073 "<td colspan=\"3\">$extra</td>\n" .
6079 # Display a single remote block
6080 sub git_remote_block
{
6081 my ($remote, $rdata, $limit, $head) = @_;
6083 my $heads = $rdata->{'heads'};
6084 my $fetch = $rdata->{'fetch'};
6085 my $push = $rdata->{'push'};
6087 my $urls_table = "<table class=\"projects_list\">\n" ;
6089 if (defined $fetch) {
6090 if ($fetch eq $push) {
6091 $urls_table .= format_repo_url
("URL", $fetch);
6093 $urls_table .= format_repo_url
("Fetch URL", $fetch);
6094 $urls_table .= format_repo_url
("Push URL", $push) if defined $push;
6096 } elsif (defined $push) {
6097 $urls_table .= format_repo_url
("Push URL", $push);
6099 $urls_table .= format_repo_url
("", "No remote URL");
6102 $urls_table .= "</table>\n";
6105 if (defined $limit && $limit < @$heads) {
6106 $dots = $cgi->a({-href
=> href
(action
=>"remotes", hash
=>$remote)}, "...");
6110 git_heads_body
($heads, $head, 0, $limit, $dots);
6113 # Display a list of remote names with the respective fetch and push URLs
6114 sub git_remotes_list
{
6115 my ($remotedata, $limit) = @_;
6116 print "<table class=\"heads\">\n";
6118 my @remotes = sort keys %$remotedata;
6120 my $limited = $limit && $limit < @remotes;
6122 $#remotes = $limit - 1 if $limited;
6124 while (my $remote = shift @remotes) {
6125 my $rdata = $remotedata->{$remote};
6126 my $fetch = $rdata->{'fetch'};
6127 my $push = $rdata->{'push'};
6129 print "<tr class=\"dark\">\n";
6131 print "<tr class=\"light\">\n";
6135 $cgi->a({-href
=> href
(action
=>'remotes', hash
=>$remote),
6136 -class=> "list name"},esc_html
($remote)) .
6138 print "<td class=\"link\">" .
6139 (defined $fetch ? $cgi->a({-href
=> $fetch}, "fetch") : "fetch") .
6141 (defined $push ? $cgi->a({-href
=> $push}, "push") : "push") .
6149 "<td colspan=\"3\">" .
6150 $cgi->a({-href
=> href
(action
=>"remotes")}, "...") .
6151 "</td>\n" . "</tr>\n";
6157 # Display remote heads grouped by remote, unless there are too many
6158 # remotes, in which case we only display the remote names
6159 sub git_remotes_body
{
6160 my ($remotedata, $limit, $head) = @_;
6161 if ($limit and $limit < keys %$remotedata) {
6162 git_remotes_list
($remotedata, $limit);
6164 fill_remote_heads
($remotedata);
6165 while (my ($remote, $rdata) = each %$remotedata) {
6166 git_print_section
({-class=>"remote", -id
=>$remote},
6167 ["remotes", $remote, $remote], sub {
6168 git_remote_block
($remote, $rdata, $limit, $head);
6174 sub git_search_message
{
6178 if ($searchtype eq 'commit') {
6179 $greptype = "--grep=";
6180 } elsif ($searchtype eq 'author') {
6181 $greptype = "--author=";
6182 } elsif ($searchtype eq 'committer') {
6183 $greptype = "--committer=";
6185 $greptype .= $searchtext;
6186 my @commitlist = parse_commits
($hash, 101, (100 * $page), undef,
6187 $greptype, '--regexp-ignore-case',
6188 $search_use_regexp ? '--extended-regexp' : '--fixed-strings');
6190 my $paging_nav = '';
6193 $cgi->a({-href
=> href
(-replay
=>1, page
=>undef)},
6196 $cgi->a({-href
=> href
(-replay
=>1, page
=>$page-1),
6197 -accesskey
=> "p", -title
=> "Alt-p"}, "prev");
6199 $paging_nav .= "first ⋅ prev";
6202 if ($#commitlist >= 100) {
6204 $cgi->a({-href
=> href
(-replay
=>1, page
=>$page+1),
6205 -accesskey
=> "n", -title
=> "Alt-n"}, "next");
6206 $paging_nav .= " ⋅ $next_link";
6208 $paging_nav .= " ⋅ next";
6213 git_print_page_nav
('','', $hash,$co{'tree'},$hash, $paging_nav);
6214 git_print_header_div
('commit', esc_html
($co{'title'}), $hash);
6215 if ($page == 0 && !@commitlist) {
6216 print "<p>No match.</p>\n";
6218 git_search_grep_body
(\
@commitlist, 0, 99, $next_link);
6224 sub git_search_changes
{
6228 open my $fd, '-|', git_cmd
(), '--no-pager', 'log', @diff_opts,
6229 '--pretty=format:%H', '--no-abbrev', '--raw', "-S$searchtext",
6230 ($search_use_regexp ? '--pickaxe-regex' : ())
6231 or die_error
(500, "Open git-log failed");
6235 git_print_page_nav
('','', $hash,$co{'tree'},$hash);
6236 git_print_header_div
('commit', esc_html
($co{'title'}), $hash);
6238 print "<table class=\"pickaxe search\">\n";
6242 while (my $line = <$fd>) {
6246 my %set = parse_difftree_raw_line
($line);
6247 if (defined $set{'commit'}) {
6248 # finish previous commit
6251 "<td class=\"link\">" .
6252 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$co{'id'})},
6255 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$co{'tree'},
6256 hash_base
=>$co{'id'})},
6263 print "<tr class=\"dark\">\n";
6265 print "<tr class=\"light\">\n";
6268 %co = parse_commit
($set{'commit'});
6269 my $author = chop_and_escape_str
($co{'author_name'}, 15, 5);
6270 print "<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n" .
6271 "<td><i>$author</i></td>\n" .
6273 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$co{'id'}),
6274 -class => "list subject"},
6275 chop_and_escape_str
($co{'title'}, 50) . "<br/>");
6276 } elsif (defined $set{'to_id'}) {
6277 next if ($set{'to_id'} =~ m/^0{40}$/);
6279 print $cgi->a({-href
=> href
(action
=>"blob", hash_base
=>$co{'id'},
6280 hash
=>$set{'to_id'}, file_name
=>$set{'to_file'}),
6282 "<span class=\"match\">" . esc_path
($set{'file'}) . "</span>") .
6288 # finish last commit (warning: repetition!)
6291 "<td class=\"link\">" .
6292 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$co{'id'})},
6295 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$co{'tree'},
6296 hash_base
=>$co{'id'})},
6307 sub git_search_files
{
6311 open my $fd, "-|", git_cmd
(), 'grep', '-n', '-z',
6312 $search_use_regexp ? ('-E', '-i') : '-F',
6313 $searchtext, $co{'tree'}
6314 or die_error
(500, "Open git-grep 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=\"grep_search\">\n";
6326 while (my $line = <$fd>) {
6328 my ($file, $lno, $ltext, $binary);
6329 last if ($matches++ > 1000);
6330 if ($line =~ /^Binary file (.+) matches$/) {
6334 ($file, $lno, $ltext) = split(/\0/, $line, 3);
6335 $file =~ s/^$co{'tree'}://;
6337 if ($file ne $lastfile) {
6338 $lastfile and print "</td></tr>\n";
6340 print "<tr class=\"dark\">\n";
6342 print "<tr class=\"light\">\n";
6344 $file_href = href
(action
=>"blob", hash_base
=>$co{'id'},
6346 print "<td class=\"list\">".
6347 $cgi->a({-href
=> $file_href, -class => "list"}, esc_path
($file));
6348 print "</td><td>\n";
6352 print "<div class=\"binary\">Binary file</div>\n";
6354 $ltext = untabify
($ltext);
6355 if ($ltext =~ m/^(.*)($search_regexp)(.*)$/i) {
6356 $ltext = esc_html
($1, -nbsp
=>1);
6357 $ltext .= '<span class="match">';
6358 $ltext .= esc_html
($2, -nbsp
=>1);
6359 $ltext .= '</span>';
6360 $ltext .= esc_html
($3, -nbsp
=>1);
6362 $ltext = esc_html
($ltext, -nbsp
=>1);
6364 print "<div class=\"pre\">" .
6365 $cgi->a({-href
=> $file_href.'#l'.$lno,
6366 -class => "linenr"}, sprintf('%4i', $lno)) .
6367 ' ' . $ltext . "</div>\n";
6371 print "</td></tr>\n";
6372 if ($matches > 1000) {
6373 print "<div class=\"diff nodifferences\">Too many matches, listing trimmed</div>\n";
6376 print "<div class=\"diff nodifferences\">No matches found</div>\n";
6385 sub git_search_grep_body
{
6386 my ($commitlist, $from, $to, $extra) = @_;
6387 $from = 0 unless defined $from;
6388 $to = $#{$commitlist} if (!defined $to || $#{$commitlist} < $to);
6390 print "<table class=\"commit_search\">\n";
6392 for (my $i = $from; $i <= $to; $i++) {
6393 my %co = %{$commitlist->[$i]};
6397 my $commit = $co{'id'};
6399 print "<tr class=\"dark\">\n";
6401 print "<tr class=\"light\">\n";
6404 print "<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n" .
6405 format_author_html
('td', \
%co, 15, 5) .
6407 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$co{'id'}),
6408 -class => "list subject"},
6409 chop_and_escape_str
($co{'title'}, 50) . "<br/>");
6410 my $comment = $co{'comment'};
6411 foreach my $line (@$comment) {
6412 if ($line =~ m/^(.*?)($search_regexp)(.*)$/i) {
6413 my ($lead, $match, $trail) = ($1, $2, $3);
6414 $match = chop_str
($match, 70, 5, 'center');
6415 my $contextlen = int((80 - length($match))/2);
6416 $contextlen = 30 if ($contextlen > 30);
6417 $lead = chop_str
($lead, $contextlen, 10, 'left');
6418 $trail = chop_str
($trail, $contextlen, 10, 'right');
6420 $lead = esc_html
($lead);
6421 $match = esc_html
($match);
6422 $trail = esc_html
($trail);
6424 print "$lead<span class=\"match\">$match</span>$trail<br />";
6428 "<td class=\"link\">" .
6429 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$co{'id'})}, "commit") .
6431 $cgi->a({-href
=> href
(action
=>"commitdiff", hash
=>$co{'id'})}, "commitdiff") .
6433 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$co{'tree'}, hash_base
=>$co{'id'})}, "tree");
6437 if (defined $extra) {
6439 "<td colspan=\"3\">$extra</td>\n" .
6445 ## ======================================================================
6446 ## ======================================================================
6449 sub git_project_list
{
6450 my $order = $input_params{'order'};
6451 if (defined $order && $order !~ m/none|project|descr|owner|age/) {
6452 die_error
(400, "Unknown order parameter");
6455 my @list = git_get_projects_list
($project_filter, $strict_export);
6457 die_error
(404, "No projects found");
6461 if (defined $home_text && -f
$home_text) {
6462 print "<div class=\"index_include\">\n";
6463 insert_file
($home_text);
6467 git_project_search_form
($searchtext, $search_use_regexp);
6468 git_project_list_body
(\
@list, $order);
6473 my $order = $input_params{'order'};
6474 if (defined $order && $order !~ m/none|project|descr|owner|age/) {
6475 die_error
(400, "Unknown order parameter");
6478 my $filter = $project;
6479 $filter =~ s/\.git$//;
6480 my @list = git_get_projects_list
($filter);
6482 die_error
(404, "No forks found");
6486 git_print_page_nav
('','');
6487 git_print_header_div
('summary', "$project forks");
6488 git_project_list_body
(\
@list, $order);
6492 sub git_project_index
{
6493 my @projects = git_get_projects_list
($project_filter, $strict_export);
6495 die_error
(404, "No projects found");
6499 -type
=> 'text/plain',
6500 -charset
=> 'utf-8',
6501 -content_disposition
=> 'inline; filename="index.aux"');
6503 foreach my $pr (@projects) {
6504 if (!exists $pr->{'owner'}) {
6505 $pr->{'owner'} = git_get_project_owner
("$pr->{'path'}");
6508 my ($path, $owner) = ($pr->{'path'}, $pr->{'owner'});
6509 # quote as in CGI::Util::encode, but keep the slash, and use '+' for ' '
6510 $path =~ s/([^a-zA-Z0-9_.\-\/ ])/sprintf
("%%%02X", ord($1))/eg
;
6511 $owner =~ s/([^a-zA-Z0-9_.\-\/ ])/sprintf
("%%%02X", ord($1))/eg
;
6515 print "$path $owner\n";
6520 my $descr = git_get_project_description
($project) || "none";
6521 my %co = parse_commit
("HEAD");
6522 my %cd = %co ? parse_date
($co{'committer_epoch'}, $co{'committer_tz'}) : ();
6523 my $head = $co{'id'};
6524 my $remote_heads = gitweb_check_feature
('remote_heads');
6526 my $owner = git_get_project_owner
($project);
6528 my $refs = git_get_references
();
6529 # These get_*_list functions return one more to allow us to see if
6530 # there are more ...
6531 my @taglist = git_get_tags_list
(16);
6532 my @headlist = git_get_heads_list
(16);
6533 my %remotedata = $remote_heads ? git_get_remotes_list
() : ();
6535 my $check_forks = gitweb_check_feature
('forks');
6538 # find forks of a project
6539 my $filter = $project;
6540 $filter =~ s/\.git$//;
6541 @forklist = git_get_projects_list
($filter);
6542 # filter out forks of forks
6543 @forklist = filter_forks_from_projects_list
(\
@forklist)
6548 git_print_page_nav
('summary','', $head);
6550 print "<div class=\"title\"> </div>\n";
6551 print "<table class=\"projects_list\">\n" .
6552 "<tr id=\"metadata_desc\"><td>description</td><td>" . esc_html
($descr) . "</td></tr>\n";
6553 if ($owner and not $omit_owner) {
6554 print "<tr id=\"metadata_owner\"><td>owner</td><td>" . esc_html
($owner) . "</td></tr>\n";
6556 if (defined $cd{'rfc2822'}) {
6557 print "<tr id=\"metadata_lchange\"><td>last change</td>" .
6558 "<td>".format_timestamp_html
(\
%cd)."</td></tr>\n";
6561 # use per project git URL list in $projectroot/$project/cloneurl
6562 # or make project git URL from git base URL and project name
6563 my $url_tag = "URL";
6564 my @url_list = git_get_project_url_list
($project);
6565 @url_list = map { "$_/$project" } @git_base_url_list unless @url_list;
6566 foreach my $git_url (@url_list) {
6567 next unless $git_url;
6568 print format_repo_url
($url_tag, $git_url);
6573 my $show_ctags = gitweb_check_feature
('ctags');
6575 my $ctags = git_get_project_ctags
($project);
6577 # without ability to add tags, don't show if there are none
6578 my $cloud = git_populate_project_tagcloud
($ctags);
6579 print "<tr id=\"metadata_ctags\">" .
6580 "<td>content tags</td>" .
6581 "<td>".git_show_project_tagcloud
($cloud, 48)."</td>" .
6588 # If XSS prevention is on, we don't include README.html.
6589 # TODO: Allow a readme in some safe format.
6590 if (!$prevent_xss && -s
"$projectroot/$project/README.html") {
6591 print "<div class=\"title\">readme</div>\n" .
6592 "<div class=\"readme\">\n";
6593 insert_file
("$projectroot/$project/README.html");
6594 print "\n</div>\n"; # class="readme"
6597 # we need to request one more than 16 (0..15) to check if
6599 my @commitlist = $head ? parse_commits
($head, 17) : ();
6601 git_print_header_div
('shortlog');
6602 git_shortlog_body
(\
@commitlist, 0, 15, $refs,
6603 $#commitlist <= 15 ? undef :
6604 $cgi->a({-href
=> href
(action
=>"shortlog")}, "..."));
6608 git_print_header_div
('tags');
6609 git_tags_body
(\
@taglist, 0, 15,
6610 $#taglist <= 15 ? undef :
6611 $cgi->a({-href
=> href
(action
=>"tags")}, "..."));
6615 git_print_header_div
('heads');
6616 git_heads_body
(\
@headlist, $head, 0, 15,
6617 $#headlist <= 15 ? undef :
6618 $cgi->a({-href
=> href
(action
=>"heads")}, "..."));
6622 git_print_header_div
('remotes');
6623 git_remotes_body
(\
%remotedata, 15, $head);
6627 git_print_header_div
('forks');
6628 git_project_list_body
(\
@forklist, 'age', 0, 15,
6629 $#forklist <= 15 ? undef :
6630 $cgi->a({-href
=> href
(action
=>"forks")}, "..."),
6638 my %tag = parse_tag
($hash);
6641 die_error
(404, "Unknown tag object");
6644 my $head = git_get_head_hash
($project);
6646 git_print_page_nav
('','', $head,undef,$head);
6647 git_print_header_div
('commit', esc_html
($tag{'name'}), $hash);
6648 print "<div class=\"title_text\">\n" .
6649 "<table class=\"object_header\">\n" .
6651 "<td>object</td>\n" .
6652 "<td>" . $cgi->a({-class => "list", -href
=> href
(action
=>$tag{'type'}, hash
=>$tag{'object'})},
6653 $tag{'object'}) . "</td>\n" .
6654 "<td class=\"link\">" . $cgi->a({-href
=> href
(action
=>$tag{'type'}, hash
=>$tag{'object'})},
6655 $tag{'type'}) . "</td>\n" .
6657 if (defined($tag{'author'})) {
6658 git_print_authorship_rows
(\
%tag, 'author');
6660 print "</table>\n\n" .
6662 print "<div class=\"page_body\">";
6663 my $comment = $tag{'comment'};
6664 foreach my $line (@$comment) {
6666 print esc_html
($line, -nbsp
=>1) . "<br/>\n";
6672 sub git_blame_common
{
6673 my $format = shift || 'porcelain';
6674 if ($format eq 'porcelain' && $input_params{'javascript'}) {
6675 $format = 'incremental';
6676 $action = 'blame_incremental'; # for page title etc
6680 gitweb_check_feature
('blame')
6681 or die_error
(403, "Blame view not allowed");
6684 die_error
(400, "No file name given") unless $file_name;
6685 $hash_base ||= git_get_head_hash
($project);
6686 die_error
(404, "Couldn't find base commit") unless $hash_base;
6687 my %co = parse_commit
($hash_base)
6688 or die_error
(404, "Commit not found");
6690 if (!defined $hash) {
6691 $hash = git_get_hash_by_path
($hash_base, $file_name, "blob")
6692 or die_error
(404, "Error looking up file");
6694 $ftype = git_get_type
($hash);
6695 if ($ftype !~ "blob") {
6696 die_error
(400, "Object is not a blob");
6701 if ($format eq 'incremental') {
6702 # get file contents (as base)
6703 open $fd, "-|", git_cmd
(), 'cat-file', 'blob', $hash
6704 or die_error
(500, "Open git-cat-file failed");
6705 } elsif ($format eq 'data') {
6706 # run git-blame --incremental
6707 open $fd, "-|", git_cmd
(), "blame", "--incremental",
6708 $hash_base, "--", $file_name
6709 or die_error
(500, "Open git-blame --incremental failed");
6711 # run git-blame --porcelain
6712 open $fd, "-|", git_cmd
(), "blame", '-p',
6713 $hash_base, '--', $file_name
6714 or die_error
(500, "Open git-blame --porcelain failed");
6716 binmode $fd, ':utf8';
6718 # incremental blame data returns early
6719 if ($format eq 'data') {
6721 -type
=>"text/plain", -charset
=> "utf-8",
6722 -status
=> "200 OK");
6723 local $| = 1; # output autoflush
6724 while (my $line = <$fd>) {
6725 print to_utf8
($line);
6728 or print "ERROR $!\n";
6731 if (defined $t0 && gitweb_check_feature
('timed')) {
6733 tv_interval
($t0, [ gettimeofday
() ]).
6734 ' '.$number_of_git_cmds;
6744 $cgi->a({-href
=> href
(action
=>"blob", -replay
=>1)},
6747 if ($format eq 'incremental') {
6749 $cgi->a({-href
=> href
(action
=>"blame", javascript
=>0, -replay
=>1)},
6750 "blame") . " (non-incremental)";
6753 $cgi->a({-href
=> href
(action
=>"blame_incremental", -replay
=>1)},
6754 "blame") . " (incremental)";
6758 $cgi->a({-href
=> href
(action
=>"history", -replay
=>1)},
6761 $cgi->a({-href
=> href
(action
=>$action, file_name
=>$file_name)},
6763 git_print_page_nav
('','', $hash_base,$co{'tree'},$hash_base, $formats_nav);
6764 git_print_header_div
('commit', esc_html
($co{'title'}), $hash_base);
6765 git_print_page_path
($file_name, $ftype, $hash_base);
6768 if ($format eq 'incremental') {
6769 print "<noscript>\n<div class=\"error\"><center><b>\n".
6770 "This page requires JavaScript to run.\n Use ".
6771 $cgi->a({-href
=> href
(action
=>'blame',javascript
=>0,-replay
=>1)},
6774 "</b></center></div>\n</noscript>\n";
6776 print qq
!<div id
="progress_bar" style
="width: 100%; background-color: yellow"></div
>\n!;
6779 print qq
!<div
class="page_body">\n!;
6780 print qq
!<div id
="progress_info">... / ...</div
>\n!
6781 if ($format eq 'incremental');
6782 print qq
!<table id
="blame_table" class="blame" width
="100%">\n!.
6783 #qq!<col width="5.5em" /><col width="2.5em" /><col width="*" />\n!.
6785 qq
!<tr
><th
>Commit
</th><th>Line</th
><th
>Data
</th></tr
>\n!.
6789 my @rev_color = qw(light dark);
6790 my $num_colors = scalar(@rev_color);
6791 my $current_color = 0;
6793 if ($format eq 'incremental') {
6794 my $color_class = $rev_color[$current_color];
6799 while (my $line = <$fd>) {
6803 print qq
!<tr id
="l$linenr" class="$color_class">!.
6804 qq
!<td
class="sha1"><a href
=""> </a></td
>!.
6805 qq
!<td
class="linenr">!.
6806 qq
!<a
class="linenr" href
="">$linenr</a></td
>!;
6807 print qq
!<td
class="pre">! . esc_html
($line) . "</td>\n";
6811 } else { # porcelain, i.e. ordinary blame
6812 my %metainfo = (); # saves information about commits
6816 while (my $line = <$fd>) {
6818 # the header: <SHA-1> <src lineno> <dst lineno> [<lines in group>]
6819 # no <lines in group> for subsequent lines in group of lines
6820 my ($full_rev, $orig_lineno, $lineno, $group_size) =
6821 ($line =~ /^([0-9a-f]{40}) (\d+) (\d+)(?: (\d+))?$/);
6822 if (!exists $metainfo{$full_rev}) {
6823 $metainfo{$full_rev} = { 'nprevious' => 0 };
6825 my $meta = $metainfo{$full_rev};
6827 while ($data = <$fd>) {
6829 last if ($data =~ s/^\t//); # contents of line
6830 if ($data =~ /^(\S+)(?: (.*))?$/) {
6831 $meta->{$1} = $2 unless exists $meta->{$1};
6833 if ($data =~ /^previous /) {
6834 $meta->{'nprevious'}++;
6837 my $short_rev = substr($full_rev, 0, 8);
6838 my $author = $meta->{'author'};
6840 parse_date
($meta->{'author-time'}, $meta->{'author-tz'});
6841 my $date = $date{'iso-tz'};
6843 $current_color = ($current_color + 1) % $num_colors;
6845 my $tr_class = $rev_color[$current_color];
6846 $tr_class .= ' boundary' if (exists $meta->{'boundary'});
6847 $tr_class .= ' no-previous' if ($meta->{'nprevious'} == 0);
6848 $tr_class .= ' multiple-previous' if ($meta->{'nprevious'} > 1);
6849 print "<tr id=\"l$lineno\" class=\"$tr_class\">\n";
6851 print "<td class=\"sha1\"";
6852 print " title=\"". esc_html
($author) . ", $date\"";
6853 print " rowspan=\"$group_size\"" if ($group_size > 1);
6855 print $cgi->a({-href
=> href
(action
=>"commit",
6857 file_name
=>$file_name)},
6858 esc_html
($short_rev));
6859 if ($group_size >= 2) {
6860 my @author_initials = ($author =~ /\b([[:upper:]])\B/g);
6861 if (@author_initials) {
6863 esc_html
(join('', @author_initials));
6869 # 'previous' <sha1 of parent commit> <filename at commit>
6870 if (exists $meta->{'previous'} &&
6871 $meta->{'previous'} =~ /^([a-fA-F0-9]{40}) (.*)$/) {
6872 $meta->{'parent'} = $1;
6873 $meta->{'file_parent'} = unquote
($2);
6876 exists($meta->{'parent'}) ?
6877 $meta->{'parent'} : $full_rev;
6878 my $linenr_filename =
6879 exists($meta->{'file_parent'}) ?
6880 $meta->{'file_parent'} : unquote
($meta->{'filename'});
6881 my $blamed = href
(action
=> 'blame',
6882 file_name
=> $linenr_filename,
6883 hash_base
=> $linenr_commit);
6884 print "<td class=\"linenr\">";
6885 print $cgi->a({ -href
=> "$blamed#l$orig_lineno",
6886 -class => "linenr" },
6889 print "<td class=\"pre\">" . esc_html
($data) . "</td>\n";
6897 "</table>\n"; # class="blame"
6898 print "</div>\n"; # class="blame_body"
6900 or print "Reading blob failed\n";
6909 sub git_blame_incremental
{
6910 git_blame_common
('incremental');
6913 sub git_blame_data
{
6914 git_blame_common
('data');
6918 my $head = git_get_head_hash
($project);
6920 git_print_page_nav
('','', $head,undef,$head,format_ref_views
('tags'));
6921 git_print_header_div
('summary', $project);
6923 my @tagslist = git_get_tags_list
();
6925 git_tags_body
(\
@tagslist);
6931 my $head = git_get_head_hash
($project);
6933 git_print_page_nav
('','', $head,undef,$head,format_ref_views
('heads'));
6934 git_print_header_div
('summary', $project);
6936 my @headslist = git_get_heads_list
();
6938 git_heads_body
(\
@headslist, $head);
6943 # used both for single remote view and for list of all the remotes
6945 gitweb_check_feature
('remote_heads')
6946 or die_error
(403, "Remote heads view is disabled");
6948 my $head = git_get_head_hash
($project);
6949 my $remote = $input_params{'hash'};
6951 my $remotedata = git_get_remotes_list
($remote);
6952 die_error
(500, "Unable to get remote information") unless defined $remotedata;
6954 unless (%$remotedata) {
6955 die_error
(404, defined $remote ?
6956 "Remote $remote not found" :
6957 "No remotes found");
6960 git_header_html
(undef, undef, -action_extra
=> $remote);
6961 git_print_page_nav
('', '', $head, undef, $head,
6962 format_ref_views
($remote ? '' : 'remotes'));
6964 fill_remote_heads
($remotedata);
6965 if (defined $remote) {
6966 git_print_header_div
('remotes', "$remote remote for $project");
6967 git_remote_block
($remote, $remotedata->{$remote}, undef, $head);
6969 git_print_header_div
('summary', "$project remotes");
6970 git_remotes_body
($remotedata, undef, $head);
6976 sub git_blob_plain
{
6980 if (!defined $hash) {
6981 if (defined $file_name) {
6982 my $base = $hash_base || git_get_head_hash
($project);
6983 $hash = git_get_hash_by_path
($base, $file_name, "blob")
6984 or die_error
(404, "Cannot find file");
6986 die_error
(400, "No file name defined");
6988 } elsif ($hash =~ m/^[0-9a-fA-F]{40}$/) {
6989 # blobs defined by non-textual hash id's can be cached
6993 open my $fd, "-|", git_cmd
(), "cat-file", "blob", $hash
6994 or die_error
(500, "Open git-cat-file blob '$hash' failed");
6996 # content-type (can include charset)
6997 $type = blob_contenttype
($fd, $file_name, $type);
6999 # "save as" filename, even when no $file_name is given
7000 my $save_as = "$hash";
7001 if (defined $file_name) {
7002 $save_as = $file_name;
7003 } elsif ($type =~ m/^text\//) {
7007 # With XSS prevention on, blobs of all types except a few known safe
7008 # ones are served with "Content-Disposition: attachment" to make sure
7009 # they don't run in our security domain. For certain image types,
7010 # blob view writes an <img> tag referring to blob_plain view, and we
7011 # want to be sure not to break that by serving the image as an
7012 # attachment (though Firefox 3 doesn't seem to care).
7013 my $sandbox = $prevent_xss &&
7014 $type !~ m!^(?:text/[a-z]+|image/(?:gif|png|jpeg))(?:[ ;]|$)!;
7016 # serve text/* as text/plain
7018 ($type =~ m!^text/[a-z]+\b(.*)$! ||
7019 ($type =~ m!^[a-z]+/[a-z]\+xml\b(.*)$! && -T
$fd))) {
7021 $rest = defined $rest ? $rest : '';
7022 $type = "text/plain$rest";
7027 -expires
=> $expires,
7028 -content_disposition
=>
7029 ($sandbox ? 'attachment' : 'inline')
7030 . '; filename="' . $save_as . '"');
7032 binmode STDOUT
, ':raw';
7034 binmode STDOUT
, ':utf8'; # as set at the beginning of gitweb.cgi
7041 if (!defined $hash) {
7042 if (defined $file_name) {
7043 my $base = $hash_base || git_get_head_hash
($project);
7044 $hash = git_get_hash_by_path
($base, $file_name, "blob")
7045 or die_error
(404, "Cannot find file");
7047 die_error
(400, "No file name defined");
7049 } elsif ($hash =~ m/^[0-9a-fA-F]{40}$/) {
7050 # blobs defined by non-textual hash id's can be cached
7054 my $have_blame = gitweb_check_feature
('blame');
7055 open my $fd, "-|", git_cmd
(), "cat-file", "blob", $hash
7056 or die_error
(500, "Couldn't cat $file_name, $hash");
7057 my $mimetype = blob_mimetype
($fd, $file_name);
7058 # use 'blob_plain' (aka 'raw') view for files that cannot be displayed
7059 if ($mimetype !~ m!^(?:text/|image/(?:gif|png|jpeg)$)! && -B
$fd) {
7061 return git_blob_plain
($mimetype);
7063 # we can have blame only for text/* mimetype
7064 $have_blame &&= ($mimetype =~ m!^text/!);
7066 my $highlight = gitweb_check_feature
('highlight');
7067 my $syntax = guess_file_syntax
($highlight, $file_name);
7068 $fd = run_highlighter
($fd, $highlight, $syntax);
7070 git_header_html
(undef, $expires);
7071 my $formats_nav = '';
7072 if (defined $hash_base && (my %co = parse_commit
($hash_base))) {
7073 if (defined $file_name) {
7076 $cgi->a({-href
=> href
(action
=>"blame", -replay
=>1)},
7081 $cgi->a({-href
=> href
(action
=>"history", -replay
=>1)},
7084 $cgi->a({-href
=> href
(action
=>"blob_plain", -replay
=>1)},
7087 $cgi->a({-href
=> href
(action
=>"blob",
7088 hash_base
=>"HEAD", file_name
=>$file_name)},
7092 $cgi->a({-href
=> href
(action
=>"blob_plain", -replay
=>1)},
7095 git_print_page_nav
('','', $hash_base,$co{'tree'},$hash_base, $formats_nav);
7096 git_print_header_div
('commit', esc_html
($co{'title'}), $hash_base);
7098 print "<div class=\"page_nav\">\n" .
7099 "<br/><br/></div>\n" .
7100 "<div class=\"title\">".esc_html
($hash)."</div>\n";
7102 git_print_page_path
($file_name, "blob", $hash_base);
7103 print "<div class=\"page_body\">\n";
7104 if ($mimetype =~ m!^image/!) {
7105 print qq
!<img
class="blob" type
="!.esc_attr($mimetype).qq!"!;
7107 print qq
! alt
="!.esc_attr($file_name).qq!" title
="!.esc_attr($file_name).qq!"!;
7110 href(action=>"blob_plain
", hash=>$hash,
7111 hash_base=>$hash_base, file_name=>$file_name) .
7115 while (my $line = <$fd>) {
7118 $line = untabify
($line);
7119 printf qq
!<div
class="pre"><a id
="l%i" href
="%s#l%i" class="linenr">%4i</a> %s</div
>\n!,
7120 $nr, esc_attr
(href
(-replay
=> 1)), $nr, $nr,
7121 $highlight ? sanitize
($line) : esc_html
($line, -nbsp
=>1);
7125 or print "Reading blob failed.\n";
7131 if (!defined $hash_base) {
7132 $hash_base = "HEAD";
7134 if (!defined $hash) {
7135 if (defined $file_name) {
7136 $hash = git_get_hash_by_path
($hash_base, $file_name, "tree");
7141 die_error
(404, "No such tree") unless defined($hash);
7143 my $show_sizes = gitweb_check_feature
('show-sizes');
7144 my $have_blame = gitweb_check_feature
('blame');
7149 open my $fd, "-|", git_cmd
(), "ls-tree", '-z',
7150 ($show_sizes ? '-l' : ()), @extra_options, $hash
7151 or die_error
(500, "Open git-ls-tree failed");
7152 @entries = map { chomp; $_ } <$fd>;
7154 or die_error
(404, "Reading tree failed");
7157 my $refs = git_get_references
();
7158 my $ref = format_ref_marker
($refs, $hash_base);
7161 if (defined $hash_base && (my %co = parse_commit
($hash_base))) {
7163 if (defined $file_name) {
7165 $cgi->a({-href
=> href
(action
=>"history", -replay
=>1)},
7167 $cgi->a({-href
=> href
(action
=>"tree",
7168 hash_base
=>"HEAD", file_name
=>$file_name)},
7171 my $snapshot_links = format_snapshot_links
($hash);
7172 if (defined $snapshot_links) {
7173 # FIXME: Should be available when we have no hash base as well.
7174 push @views_nav, $snapshot_links;
7176 git_print_page_nav
('tree','', $hash_base, undef, undef,
7177 join(' | ', @views_nav));
7178 git_print_header_div
('commit', esc_html
($co{'title'}) . $ref, $hash_base);
7181 print "<div class=\"page_nav\">\n";
7182 print "<br/><br/></div>\n";
7183 print "<div class=\"title\">".esc_html
($hash)."</div>\n";
7185 if (defined $file_name) {
7186 $basedir = $file_name;
7187 if ($basedir ne '' && substr($basedir, -1) ne '/') {
7190 git_print_page_path
($file_name, 'tree', $hash_base);
7192 print "<div class=\"page_body\">\n";
7193 print "<table class=\"tree\">\n";
7195 # '..' (top directory) link if possible
7196 if (defined $hash_base &&
7197 defined $file_name && $file_name =~ m![^/]+$!) {
7199 print "<tr class=\"dark\">\n";
7201 print "<tr class=\"light\">\n";
7205 my $up = $file_name;
7206 $up =~ s!/?[^/]+$!!;
7207 undef $up unless $up;
7208 # based on git_print_tree_entry
7209 print '<td class="mode">' . mode_str
('040000') . "</td>\n";
7210 print '<td class="size"> </td>'."\n" if $show_sizes;
7211 print '<td class="list">';
7212 print $cgi->a({-href
=> href
(action
=>"tree",
7213 hash_base
=>$hash_base,
7217 print "<td class=\"link\"></td>\n";
7221 foreach my $line (@entries) {
7222 my %t = parse_ls_tree_line
($line, -z
=> 1, -l
=> $show_sizes);
7225 print "<tr class=\"dark\">\n";
7227 print "<tr class=\"light\">\n";
7231 git_print_tree_entry
(\
%t, $basedir, $hash_base, $have_blame);
7235 print "</table>\n" .
7240 sub sanitize_for_filename
{
7244 $name =~ s/[^[:alnum:]_.-]//g;
7250 my ($project, $hash) = @_;
7252 # path/to/project.git -> project
7253 # path/to/project/.git -> project
7254 my $name = to_utf8
($project);
7255 $name =~ s
,([^/])/*\
.git
$,$1,;
7256 $name = sanitize_for_filename
(basename
($name));
7259 if ($hash =~ /^[0-9a-fA-F]+$/) {
7260 # shorten SHA-1 hash
7261 my $full_hash = git_get_full_hash
($project, $hash);
7262 if ($full_hash =~ /^$hash/ && length($hash) > 7) {
7263 $ver = git_get_short_hash
($project, $hash);
7265 } elsif ($hash =~ m!^refs/tags/(.*)$!) {
7266 # tags don't need shortened SHA-1 hash
7269 # branches and other need shortened SHA-1 hash
7270 my $strip_refs = join '|', map { quotemeta } get_branch_refs
();
7271 if ($hash =~ m!^refs/($strip_refs|remotes)/(.*)$!) {
7272 my $ref_dir = (defined $1) ? $1 : '';
7275 $ref_dir = sanitize_for_filename
($ref_dir);
7276 # for refs neither in heads nor remotes we want to
7277 # add a ref dir to archive name
7278 if ($ref_dir ne '' and $ref_dir ne 'heads' and $ref_dir ne 'remotes') {
7279 $ver = $ref_dir . '-' . $ver;
7282 $ver .= '-' . git_get_short_hash
($project, $hash);
7284 # special case of sanitization for filename - we change
7285 # slashes to dots instead of dashes
7286 # in case of hierarchical branch names
7288 $ver =~ s/[^[:alnum:]_.-]//g;
7290 # name = project-version_string
7291 $name = "$name-$ver";
7293 return wantarray ? ($name, $name) : $name;
7296 sub exit_if_unmodified_since
{
7297 my ($latest_epoch) = @_;
7300 my $if_modified = $cgi->http('IF_MODIFIED_SINCE');
7301 if (defined $if_modified) {
7303 if (eval { require HTTP
::Date
; 1; }) {
7304 $since = HTTP
::Date
::str2time
($if_modified);
7305 } elsif (eval { require Time
::ParseDate
; 1; }) {
7306 $since = Time
::ParseDate
::parsedate
($if_modified, GMT
=> 1);
7308 if (defined $since && $latest_epoch <= $since) {
7309 my %latest_date = parse_date
($latest_epoch);
7311 -last_modified
=> $latest_date{'rfc2822'},
7312 -status
=> '304 Not Modified');
7319 my $format = $input_params{'snapshot_format'};
7320 if (!@snapshot_fmts) {
7321 die_error
(403, "Snapshots not allowed");
7323 # default to first supported snapshot format
7324 $format ||= $snapshot_fmts[0];
7325 if ($format !~ m/^[a-z0-9]+$/) {
7326 die_error
(400, "Invalid snapshot format parameter");
7327 } elsif (!exists($known_snapshot_formats{$format})) {
7328 die_error
(400, "Unknown snapshot format");
7329 } elsif ($known_snapshot_formats{$format}{'disabled'}) {
7330 die_error
(403, "Snapshot format not allowed");
7331 } elsif (!grep($_ eq $format, @snapshot_fmts)) {
7332 die_error
(403, "Unsupported snapshot format");
7335 my $type = git_get_type
("$hash^{}");
7337 die_error
(404, 'Object does not exist');
7338 } elsif ($type eq 'blob') {
7339 die_error
(400, 'Object is not a tree-ish');
7342 my ($name, $prefix) = snapshot_name
($project, $hash);
7343 my $filename = "$name$known_snapshot_formats{$format}{'suffix'}";
7345 my %co = parse_commit
($hash);
7346 exit_if_unmodified_since
($co{'committer_epoch'}) if %co;
7348 my $cmd = quote_command
(
7349 git_cmd
(), 'archive',
7350 "--format=$known_snapshot_formats{$format}{'format'}",
7351 "--prefix=$prefix/", $hash);
7352 if (exists $known_snapshot_formats{$format}{'compressor'}) {
7353 $cmd .= ' | ' . quote_command
(@{$known_snapshot_formats{$format}{'compressor'}});
7356 $filename =~ s/(["\\])/\\$1/g;
7359 %latest_date = parse_date
($co{'committer_epoch'}, $co{'committer_tz'});
7363 -type
=> $known_snapshot_formats{$format}{'type'},
7364 -content_disposition
=> 'inline; filename="' . $filename . '"',
7365 %co ? (-last_modified
=> $latest_date{'rfc2822'}) : (),
7366 -status
=> '200 OK');
7368 open my $fd, "-|", $cmd
7369 or die_error
(500, "Execute git-archive failed");
7370 binmode STDOUT
, ':raw';
7372 binmode STDOUT
, ':utf8'; # as set at the beginning of gitweb.cgi
7376 sub git_log_generic
{
7377 my ($fmt_name, $body_subr, $base, $parent, $file_name, $file_hash) = @_;
7379 my $head = git_get_head_hash
($project);
7380 if (!defined $base) {
7383 if (!defined $page) {
7386 my $refs = git_get_references
();
7388 my $commit_hash = $base;
7389 if (defined $parent) {
7390 $commit_hash = "$parent..$base";
7393 parse_commits
($commit_hash, 101, (100 * $page),
7394 defined $file_name ? ($file_name, "--full-history") : ());
7397 if (!defined $file_hash && defined $file_name) {
7398 # some commits could have deleted file in question,
7399 # and not have it in tree, but one of them has to have it
7400 for (my $i = 0; $i < @commitlist; $i++) {
7401 $file_hash = git_get_hash_by_path
($commitlist[$i]{'id'}, $file_name);
7402 last if defined $file_hash;
7405 if (defined $file_hash) {
7406 $ftype = git_get_type
($file_hash);
7408 if (defined $file_name && !defined $ftype) {
7409 die_error
(500, "Unknown type of object");
7412 if (defined $file_name) {
7413 %co = parse_commit
($base)
7414 or die_error
(404, "Unknown commit object");
7418 my $paging_nav = format_paging_nav
($fmt_name, $page, $#commitlist >= 100);
7420 if ($#commitlist >= 100) {
7422 $cgi->a({-href
=> href
(-replay
=>1, page
=>$page+1),
7423 -accesskey
=> "n", -title
=> "Alt-n"}, "next");
7425 my $patch_max = gitweb_get_feature
('patches');
7426 if ($patch_max && !defined $file_name) {
7427 if ($patch_max < 0 || @commitlist <= $patch_max) {
7428 $paging_nav .= " ⋅ " .
7429 $cgi->a({-href
=> href
(action
=>"patches", -replay
=>1)},
7435 git_print_page_nav
($fmt_name,'', $hash,$hash,$hash, $paging_nav);
7436 if (defined $file_name) {
7437 git_print_header_div
('commit', esc_html
($co{'title'}), $base);
7439 git_print_header_div
('summary', $project)
7441 git_print_page_path
($file_name, $ftype, $hash_base)
7442 if (defined $file_name);
7444 $body_subr->(\
@commitlist, 0, 99, $refs, $next_link,
7445 $file_name, $file_hash, $ftype);
7451 git_log_generic
('log', \
&git_log_body
,
7452 $hash, $hash_parent);
7456 $hash ||= $hash_base || "HEAD";
7457 my %co = parse_commit
($hash)
7458 or die_error
(404, "Unknown commit object");
7460 my $parent = $co{'parent'};
7461 my $parents = $co{'parents'}; # listref
7463 # we need to prepare $formats_nav before any parameter munging
7465 if (!defined $parent) {
7467 $formats_nav .= '(initial)';
7468 } elsif (@$parents == 1) {
7469 # single parent commit
7472 $cgi->a({-href
=> href
(action
=>"commit",
7474 esc_html
(substr($parent, 0, 7))) .
7481 $cgi->a({-href
=> href
(action
=>"commit",
7483 esc_html
(substr($_, 0, 7)));
7487 if (gitweb_check_feature
('patches') && @$parents <= 1) {
7488 $formats_nav .= " | " .
7489 $cgi->a({-href
=> href
(action
=>"patch", -replay
=>1)},
7493 if (!defined $parent) {
7497 open my $fd, "-|", git_cmd
(), "diff-tree", '-r', "--no-commit-id",
7499 (@$parents <= 1 ? $parent : '-c'),
7501 or die_error
(500, "Open git-diff-tree failed");
7502 @difftree = map { chomp; $_ } <$fd>;
7503 close $fd or die_error
(404, "Reading git-diff-tree failed");
7505 # non-textual hash id's can be cached
7507 if ($hash =~ m/^[0-9a-fA-F]{40}$/) {
7510 my $refs = git_get_references
();
7511 my $ref = format_ref_marker
($refs, $co{'id'});
7513 git_header_html
(undef, $expires);
7514 git_print_page_nav
('commit', '',
7515 $hash, $co{'tree'}, $hash,
7518 if (defined $co{'parent'}) {
7519 git_print_header_div
('commitdiff', esc_html
($co{'title'}) . $ref, $hash);
7521 git_print_header_div
('tree', esc_html
($co{'title'}) . $ref, $co{'tree'}, $hash);
7523 print "<div class=\"title_text\">\n" .
7524 "<table class=\"object_header\">\n";
7525 git_print_authorship_rows
(\
%co);
7526 print "<tr><td>commit</td><td class=\"sha1\">$co{'id'}</td></tr>\n";
7529 "<td class=\"sha1\">" .
7530 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$co{'tree'}, hash_base
=>$hash),
7531 class => "list"}, $co{'tree'}) .
7533 "<td class=\"link\">" .
7534 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$co{'tree'}, hash_base
=>$hash)},
7536 my $snapshot_links = format_snapshot_links
($hash);
7537 if (defined $snapshot_links) {
7538 print " | " . $snapshot_links;
7543 foreach my $par (@$parents) {
7546 "<td class=\"sha1\">" .
7547 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$par),
7548 class => "list"}, $par) .
7550 "<td class=\"link\">" .
7551 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$par)}, "commit") .
7553 $cgi->a({-href
=> href
(action
=>"commitdiff", hash
=>$hash, hash_parent
=>$par)}, "diff") .
7560 print "<div class=\"page_body\">\n";
7561 git_print_log
($co{'comment'});
7564 git_difftree_body
(\
@difftree, $hash, @$parents);
7570 # object is defined by:
7571 # - hash or hash_base alone
7572 # - hash_base and file_name
7575 # - hash or hash_base alone
7576 if ($hash || ($hash_base && !defined $file_name)) {
7577 my $object_id = $hash || $hash_base;
7579 open my $fd, "-|", quote_command
(
7580 git_cmd
(), 'cat-file', '-t', $object_id) . ' 2> /dev/null'
7581 or die_error
(404, "Object does not exist");
7583 defined $type && chomp $type;
7585 or die_error
(404, "Object does not exist");
7587 # - hash_base and file_name
7588 } elsif ($hash_base && defined $file_name) {
7589 $file_name =~ s
,/+$,,;
7591 system(git_cmd
(), "cat-file", '-e', $hash_base) == 0
7592 or die_error
(404, "Base object does not exist");
7594 # here errors should not happen
7595 open my $fd, "-|", git_cmd
(), "ls-tree", $hash_base, "--", $file_name
7596 or die_error
(500, "Open git-ls-tree failed");
7600 #'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'
7601 unless ($line && $line =~ m/^([0-9]+) (.+) ([0-9a-fA-F]{40})\t/) {
7602 die_error
(404, "File or directory for given base does not exist");
7607 die_error
(400, "Not enough information to find object");
7610 print $cgi->redirect(-uri
=> href
(action
=>$type, -full
=>1,
7611 hash
=>$hash, hash_base
=>$hash_base,
7612 file_name
=>$file_name),
7613 -status
=> '302 Found');
7617 my $format = shift || 'html';
7618 my $diff_style = $input_params{'diff_style'} || 'inline';
7625 # preparing $fd and %diffinfo for git_patchset_body
7627 if (defined $hash_base && defined $hash_parent_base) {
7628 if (defined $file_name) {
7630 open $fd, "-|", git_cmd
(), "diff-tree", '-r', @diff_opts,
7631 $hash_parent_base, $hash_base,
7632 "--", (defined $file_parent ? $file_parent : ()), $file_name
7633 or die_error
(500, "Open git-diff-tree failed");
7634 @difftree = map { chomp; $_ } <$fd>;
7636 or die_error
(404, "Reading git-diff-tree failed");
7638 or die_error
(404, "Blob diff not found");
7640 } elsif (defined $hash &&
7641 $hash =~ /[0-9a-fA-F]{40}/) {
7642 # try to find filename from $hash
7644 # read filtered raw output
7645 open $fd, "-|", git_cmd
(), "diff-tree", '-r', @diff_opts,
7646 $hash_parent_base, $hash_base, "--"
7647 or die_error
(500, "Open git-diff-tree failed");
7649 # ':100644 100644 03b21826... 3b93d5e7... M ls-files.c'
7651 grep { /^:[0-7]{6} [0-7]{6} [0-9a-fA-F]{40} $hash/ }
7652 map { chomp; $_ } <$fd>;
7654 or die_error
(404, "Reading git-diff-tree failed");
7656 or die_error
(404, "Blob diff not found");
7659 die_error
(400, "Missing one of the blob diff parameters");
7662 if (@difftree > 1) {
7663 die_error
(400, "Ambiguous blob diff specification");
7666 %diffinfo = parse_difftree_raw_line
($difftree[0]);
7667 $file_parent ||= $diffinfo{'from_file'} || $file_name;
7668 $file_name ||= $diffinfo{'to_file'};
7670 $hash_parent ||= $diffinfo{'from_id'};
7671 $hash ||= $diffinfo{'to_id'};
7673 # non-textual hash id's can be cached
7674 if ($hash_base =~ m/^[0-9a-fA-F]{40}$/ &&
7675 $hash_parent_base =~ m/^[0-9a-fA-F]{40}$/) {
7680 open $fd, "-|", git_cmd
(), "diff-tree", '-r', @diff_opts,
7681 '-p', ($format eq 'html' ? "--full-index" : ()),
7682 $hash_parent_base, $hash_base,
7683 "--", (defined $file_parent ? $file_parent : ()), $file_name
7684 or die_error
(500, "Open git-diff-tree failed");
7687 # old/legacy style URI -- not generated anymore since 1.4.3.
7689 die_error
('404 Not Found', "Missing one of the blob diff parameters")
7693 if ($format eq 'html') {
7695 $cgi->a({-href
=> href
(action
=>"blobdiff_plain", -replay
=>1)},
7697 $formats_nav .= diff_style_nav
($diff_style);
7698 git_header_html
(undef, $expires);
7699 if (defined $hash_base && (my %co = parse_commit
($hash_base))) {
7700 git_print_page_nav
('','', $hash_base,$co{'tree'},$hash_base, $formats_nav);
7701 git_print_header_div
('commit', esc_html
($co{'title'}), $hash_base);
7703 print "<div class=\"page_nav\"><br/>$formats_nav<br/></div>\n";
7704 print "<div class=\"title\">".esc_html
("$hash vs $hash_parent")."</div>\n";
7706 if (defined $file_name) {
7707 git_print_page_path
($file_name, "blob", $hash_base);
7709 print "<div class=\"page_path\"></div>\n";
7712 } elsif ($format eq 'plain') {
7714 -type
=> 'text/plain',
7715 -charset
=> 'utf-8',
7716 -expires
=> $expires,
7717 -content_disposition
=> 'inline; filename="' . "$file_name" . '.patch"');
7719 print "X-Git-Url: " . $cgi->self_url() . "\n\n";
7722 die_error
(400, "Unknown blobdiff format");
7726 if ($format eq 'html') {
7727 print "<div class=\"page_body\">\n";
7729 git_patchset_body
($fd, $diff_style,
7730 [ \
%diffinfo ], $hash_base, $hash_parent_base);
7733 print "</div>\n"; # class="page_body"
7737 while (my $line = <$fd>) {
7738 $line =~ s!a/($hash|$hash_parent)!'a/'.esc_path($diffinfo{'from_file'})!eg;
7739 $line =~ s!b/($hash|$hash_parent)!'b/'.esc_path($diffinfo{'to_file'})!eg;
7743 last if $line =~ m!^\+\+\+!;
7751 sub git_blobdiff_plain
{
7752 git_blobdiff
('plain');
7755 # assumes that it is added as later part of already existing navigation,
7756 # so it returns "| foo | bar" rather than just "foo | bar"
7757 sub diff_style_nav
{
7758 my ($diff_style, $is_combined) = @_;
7759 $diff_style ||= 'inline';
7761 return "" if ($is_combined);
7763 my @styles = (inline
=> 'inline', 'sidebyside' => 'side by side');
7764 my %styles = @styles;
7766 @styles[ map { $_ * 2 } 0..$#styles/2 ];
7771 $_ eq $diff_style ? $styles{$_} :
7772 $cgi->a({-href
=> href
(-replay
=>1, diff_style
=> $_)}, $styles{$_})
7776 sub git_commitdiff
{
7778 my $format = $params{-format
} || 'html';
7779 my $diff_style = $input_params{'diff_style'} || 'inline';
7781 my ($patch_max) = gitweb_get_feature
('patches');
7782 if ($format eq 'patch') {
7783 die_error
(403, "Patch view not allowed") unless $patch_max;
7786 $hash ||= $hash_base || "HEAD";
7787 my %co = parse_commit
($hash)
7788 or die_error
(404, "Unknown commit object");
7790 # choose format for commitdiff for merge
7791 if (! defined $hash_parent && @{$co{'parents'}} > 1) {
7792 $hash_parent = '--cc';
7794 # we need to prepare $formats_nav before almost any parameter munging
7796 if ($format eq 'html') {
7798 $cgi->a({-href
=> href
(action
=>"commitdiff_plain", -replay
=>1)},
7800 if ($patch_max && @{$co{'parents'}} <= 1) {
7801 $formats_nav .= " | " .
7802 $cgi->a({-href
=> href
(action
=>"patch", -replay
=>1)},
7805 $formats_nav .= diff_style_nav
($diff_style, @{$co{'parents'}} > 1);
7807 if (defined $hash_parent &&
7808 $hash_parent ne '-c' && $hash_parent ne '--cc') {
7809 # commitdiff with two commits given
7810 my $hash_parent_short = $hash_parent;
7811 if ($hash_parent =~ m/^[0-9a-fA-F]{40}$/) {
7812 $hash_parent_short = substr($hash_parent, 0, 7);
7816 for (my $i = 0; $i < @{$co{'parents'}}; $i++) {
7817 if ($co{'parents'}[$i] eq $hash_parent) {
7818 $formats_nav .= ' parent ' . ($i+1);
7822 $formats_nav .= ': ' .
7823 $cgi->a({-href
=> href
(-replay
=>1,
7824 hash
=>$hash_parent, hash_base
=>undef)},
7825 esc_html
($hash_parent_short)) .
7827 } elsif (!$co{'parent'}) {
7829 $formats_nav .= ' (initial)';
7830 } elsif (scalar @{$co{'parents'}} == 1) {
7831 # single parent commit
7834 $cgi->a({-href
=> href
(-replay
=>1,
7835 hash
=>$co{'parent'}, hash_base
=>undef)},
7836 esc_html
(substr($co{'parent'}, 0, 7))) .
7840 if ($hash_parent eq '--cc') {
7841 $formats_nav .= ' | ' .
7842 $cgi->a({-href
=> href
(-replay
=>1,
7843 hash
=>$hash, hash_parent
=>'-c')},
7845 } else { # $hash_parent eq '-c'
7846 $formats_nav .= ' | ' .
7847 $cgi->a({-href
=> href
(-replay
=>1,
7848 hash
=>$hash, hash_parent
=>'--cc')},
7854 $cgi->a({-href
=> href
(-replay
=>1,
7855 hash
=>$_, hash_base
=>undef)},
7856 esc_html
(substr($_, 0, 7)));
7857 } @{$co{'parents'}} ) .
7862 my $hash_parent_param = $hash_parent;
7863 if (!defined $hash_parent_param) {
7864 # --cc for multiple parents, --root for parentless
7865 $hash_parent_param =
7866 @{$co{'parents'}} > 1 ? '--cc' : $co{'parent'} || '--root';
7872 if ($format eq 'html') {
7873 open $fd, "-|", git_cmd
(), "diff-tree", '-r', @diff_opts,
7874 "--no-commit-id", "--patch-with-raw", "--full-index",
7875 $hash_parent_param, $hash, "--"
7876 or die_error
(500, "Open git-diff-tree failed");
7878 while (my $line = <$fd>) {
7880 # empty line ends raw part of diff-tree output
7882 push @difftree, scalar parse_difftree_raw_line
($line);
7885 } elsif ($format eq 'plain') {
7886 open $fd, "-|", git_cmd
(), "diff-tree", '-r', @diff_opts,
7887 '-p', $hash_parent_param, $hash, "--"
7888 or die_error
(500, "Open git-diff-tree failed");
7889 } elsif ($format eq 'patch') {
7890 # For commit ranges, we limit the output to the number of
7891 # patches specified in the 'patches' feature.
7892 # For single commits, we limit the output to a single patch,
7893 # diverging from the git-format-patch default.
7894 my @commit_spec = ();
7896 if ($patch_max > 0) {
7897 push @commit_spec, "-$patch_max";
7899 push @commit_spec, '-n', "$hash_parent..$hash";
7901 if ($params{-single
}) {
7902 push @commit_spec, '-1';
7904 if ($patch_max > 0) {
7905 push @commit_spec, "-$patch_max";
7907 push @commit_spec, "-n";
7909 push @commit_spec, '--root', $hash;
7911 open $fd, "-|", git_cmd
(), "format-patch", @diff_opts,
7912 '--encoding=utf8', '--stdout', @commit_spec
7913 or die_error
(500, "Open git-format-patch failed");
7915 die_error
(400, "Unknown commitdiff format");
7918 # non-textual hash id's can be cached
7920 if ($hash =~ m/^[0-9a-fA-F]{40}$/) {
7924 # write commit message
7925 if ($format eq 'html') {
7926 my $refs = git_get_references
();
7927 my $ref = format_ref_marker
($refs, $co{'id'});
7929 git_header_html
(undef, $expires);
7930 git_print_page_nav
('commitdiff','', $hash,$co{'tree'},$hash, $formats_nav);
7931 git_print_header_div
('commit', esc_html
($co{'title'}) . $ref, $hash);
7932 print "<div class=\"title_text\">\n" .
7933 "<table class=\"object_header\">\n";
7934 git_print_authorship_rows
(\
%co);
7937 print "<div class=\"page_body\">\n";
7938 if (@{$co{'comment'}} > 1) {
7939 print "<div class=\"log\">\n";
7940 git_print_log
($co{'comment'}, -final_empty_line
=> 1, -remove_title
=> 1);
7941 print "</div>\n"; # class="log"
7944 } elsif ($format eq 'plain') {
7945 my $refs = git_get_references
("tags");
7946 my $tagname = git_get_rev_name_tags
($hash);
7947 my $filename = basename
($project) . "-$hash.patch";
7950 -type
=> 'text/plain',
7951 -charset
=> 'utf-8',
7952 -expires
=> $expires,
7953 -content_disposition
=> 'inline; filename="' . "$filename" . '"');
7954 my %ad = parse_date
($co{'author_epoch'}, $co{'author_tz'});
7955 print "From: " . to_utf8
($co{'author'}) . "\n";
7956 print "Date: $ad{'rfc2822'} ($ad{'tz_local'})\n";
7957 print "Subject: " . to_utf8
($co{'title'}) . "\n";
7959 print "X-Git-Tag: $tagname\n" if $tagname;
7960 print "X-Git-Url: " . $cgi->self_url() . "\n\n";
7962 foreach my $line (@{$co{'comment'}}) {
7963 print to_utf8
($line) . "\n";
7966 } elsif ($format eq 'patch') {
7967 my $filename = basename
($project) . "-$hash.patch";
7970 -type
=> 'text/plain',
7971 -charset
=> 'utf-8',
7972 -expires
=> $expires,
7973 -content_disposition
=> 'inline; filename="' . "$filename" . '"');
7977 if ($format eq 'html') {
7978 my $use_parents = !defined $hash_parent ||
7979 $hash_parent eq '-c' || $hash_parent eq '--cc';
7980 git_difftree_body
(\
@difftree, $hash,
7981 $use_parents ? @{$co{'parents'}} : $hash_parent);
7984 git_patchset_body
($fd, $diff_style,
7986 $use_parents ? @{$co{'parents'}} : $hash_parent);
7988 print "</div>\n"; # class="page_body"
7991 } elsif ($format eq 'plain') {
7995 or print "Reading git-diff-tree failed\n";
7996 } elsif ($format eq 'patch') {
8000 or print "Reading git-format-patch failed\n";
8004 sub git_commitdiff_plain
{
8005 git_commitdiff
(-format
=> 'plain');
8008 # format-patch-style patches
8010 git_commitdiff
(-format
=> 'patch', -single
=> 1);
8014 git_commitdiff
(-format
=> 'patch');
8018 git_log_generic
('history', \
&git_history_body
,
8019 $hash_base, $hash_parent_base,
8024 $searchtype ||= 'commit';
8026 # check if appropriate features are enabled
8027 gitweb_check_feature
('search')
8028 or die_error
(403, "Search is disabled");
8029 if ($searchtype eq 'pickaxe') {
8030 # pickaxe may take all resources of your box and run for several minutes
8031 # with every query - so decide by yourself how public you make this feature
8032 gitweb_check_feature
('pickaxe')
8033 or die_error
(403, "Pickaxe search is disabled");
8035 if ($searchtype eq 'grep') {
8036 # grep search might be potentially CPU-intensive, too
8037 gitweb_check_feature
('grep')
8038 or die_error
(403, "Grep search is disabled");
8041 if (!defined $searchtext) {
8042 die_error
(400, "Text field is empty");
8044 if (!defined $hash) {
8045 $hash = git_get_head_hash
($project);
8047 my %co = parse_commit
($hash);
8049 die_error
(404, "Unknown commit object");
8051 if (!defined $page) {
8055 if ($searchtype eq 'commit' ||
8056 $searchtype eq 'author' ||
8057 $searchtype eq 'committer') {
8058 git_search_message
(%co);
8059 } elsif ($searchtype eq 'pickaxe') {
8060 git_search_changes
(%co);
8061 } elsif ($searchtype eq 'grep') {
8062 git_search_files
(%co);
8064 die_error
(400, "Unknown search type");
8068 sub git_search_help
{
8070 git_print_page_nav
('','', $hash,$hash,$hash);
8072 <p><strong>Pattern</strong> is by default a normal string that is matched precisely (but without
8073 regard to case, except in the case of pickaxe). However, when you check the <em>re</em> checkbox,
8074 the pattern entered is recognized as the POSIX extended
8075 <a href="http://en.wikipedia.org/wiki/Regular_expression">regular expression</a> (also case
8078 <dt><b>commit</b></dt>
8079 <dd>The commit messages and authorship information will be scanned for the given pattern.</dd>
8081 my $have_grep = gitweb_check_feature
('grep');
8084 <dt><b>grep</b></dt>
8085 <dd>All files in the currently selected tree (HEAD unless you are explicitly browsing
8086 a different one) are searched for the given pattern. On large trees, this search can take
8087 a while and put some strain on the server, so please use it with some consideration. Note that
8088 due to git-grep peculiarity, currently if regexp mode is turned off, the matches are
8089 case-sensitive.</dd>
8093 <dt><b>author</b></dt>
8094 <dd>Name and e-mail of the change author and date of birth of the patch will be scanned for the given pattern.</dd>
8095 <dt><b>committer</b></dt>
8096 <dd>Name and e-mail of the committer and date of commit will be scanned for the given pattern.</dd>
8098 my $have_pickaxe = gitweb_check_feature
('pickaxe');
8099 if ($have_pickaxe) {
8101 <dt><b>pickaxe</b></dt>
8102 <dd>All commits that caused the string to appear or disappear from any file (changes that
8103 added, removed or "modified" the string) will be listed. This search can take a while and
8104 takes a lot of strain on the server, so please use it wisely. Note that since you may be
8105 interested even in changes just changing the case as well, this search is case sensitive.</dd>
8113 git_log_generic
('shortlog', \
&git_shortlog_body
,
8114 $hash, $hash_parent);
8117 ## ......................................................................
8118 ## feeds (RSS, Atom; OPML)
8121 my $format = shift || 'atom';
8122 my $have_blame = gitweb_check_feature
('blame');
8124 # Atom: http://www.atomenabled.org/developers/syndication/
8125 # RSS: http://www.notestips.com/80256B3A007F2692/1/NAMO5P9UPQ
8126 if ($format ne 'rss' && $format ne 'atom') {
8127 die_error
(400, "Unknown web feed format");
8130 # log/feed of current (HEAD) branch, log of given branch, history of file/directory
8131 my $head = $hash || 'HEAD';
8132 my @commitlist = parse_commits
($head, 150, 0, $file_name);
8136 my $content_type = "application/$format+xml";
8137 if (defined $cgi->http('HTTP_ACCEPT') &&
8138 $cgi->Accept('text/xml') > $cgi->Accept($content_type)) {
8139 # browser (feed reader) prefers text/xml
8140 $content_type = 'text/xml';
8142 if (defined($commitlist[0])) {
8143 %latest_commit = %{$commitlist[0]};
8144 my $latest_epoch = $latest_commit{'committer_epoch'};
8145 exit_if_unmodified_since
($latest_epoch);
8146 %latest_date = parse_date
($latest_epoch, $latest_commit{'committer_tz'});
8149 -type
=> $content_type,
8150 -charset
=> 'utf-8',
8151 %latest_date ? (-last_modified
=> $latest_date{'rfc2822'}) : (),
8152 -status
=> '200 OK');
8154 # Optimization: skip generating the body if client asks only
8155 # for Last-Modified date.
8156 return if ($cgi->request_method() eq 'HEAD');
8159 my $title = "$site_name - $project/$action";
8160 my $feed_type = 'log';
8161 if (defined $hash) {
8162 $title .= " - '$hash'";
8163 $feed_type = 'branch log';
8164 if (defined $file_name) {
8165 $title .= " :: $file_name";
8166 $feed_type = 'history';
8168 } elsif (defined $file_name) {
8169 $title .= " - $file_name";
8170 $feed_type = 'history';
8172 $title .= " $feed_type";
8173 $title = esc_html
($title);
8174 my $descr = git_get_project_description
($project);
8175 if (defined $descr) {
8176 $descr = esc_html
($descr);
8178 $descr = "$project " .
8179 ($format eq 'rss' ? 'RSS' : 'Atom') .
8182 my $owner = git_get_project_owner
($project);
8183 $owner = esc_html
($owner);
8187 if (defined $file_name) {
8188 $alt_url = href
(-full
=>1, action
=>"history", hash
=>$hash, file_name
=>$file_name);
8189 } elsif (defined $hash) {
8190 $alt_url = href
(-full
=>1, action
=>"log", hash
=>$hash);
8192 $alt_url = href
(-full
=>1, action
=>"summary");
8194 print qq
!<?xml version
="1.0" encoding
="utf-8"?>\n!;
8195 if ($format eq 'rss') {
8197 <rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/">
8200 print "<title>$title</title>\n" .
8201 "<link>$alt_url</link>\n" .
8202 "<description>$descr</description>\n" .
8203 "<language>en</language>\n" .
8204 # project owner is responsible for 'editorial' content
8205 "<managingEditor>$owner</managingEditor>\n";
8206 if (defined $logo || defined $favicon) {
8207 # prefer the logo to the favicon, since RSS
8208 # doesn't allow both
8209 my $img = esc_url
($logo || $favicon);
8211 "<url>$img</url>\n" .
8212 "<title>$title</title>\n" .
8213 "<link>$alt_url</link>\n" .
8217 print "<pubDate>$latest_date{'rfc2822'}</pubDate>\n";
8218 print "<lastBuildDate>$latest_date{'rfc2822'}</lastBuildDate>\n";
8220 print "<generator>gitweb v.$version/$git_version</generator>\n";
8221 } elsif ($format eq 'atom') {
8223 <feed xmlns="http://www.w3.org/2005/Atom">
8225 print "<title>$title</title>\n" .
8226 "<subtitle>$descr</subtitle>\n" .
8227 '<link rel="alternate" type="text/html" href="' .
8228 $alt_url . '" />' . "\n" .
8229 '<link rel="self" type="' . $content_type . '" href="' .
8230 $cgi->self_url() . '" />' . "\n" .
8231 "<id>" . href
(-full
=>1) . "</id>\n" .
8232 # use project owner for feed author
8233 "<author><name>$owner</name></author>\n";
8234 if (defined $favicon) {
8235 print "<icon>" . esc_url
($favicon) . "</icon>\n";
8237 if (defined $logo) {
8238 # not twice as wide as tall: 72 x 27 pixels
8239 print "<logo>" . esc_url
($logo) . "</logo>\n";
8241 if (! %latest_date) {
8242 # dummy date to keep the feed valid until commits trickle in:
8243 print "<updated>1970-01-01T00:00:00Z</updated>\n";
8245 print "<updated>$latest_date{'iso-8601'}</updated>\n";
8247 print "<generator version='$version/$git_version'>gitweb</generator>\n";
8251 for (my $i = 0; $i <= $#commitlist; $i++) {
8252 my %co = %{$commitlist[$i]};
8253 my $commit = $co{'id'};
8254 # we read 150, we always show 30 and the ones more recent than 48 hours
8255 if (($i >= 20) && ((time - $co{'author_epoch'}) > 48*60*60)) {
8258 my %cd = parse_date
($co{'author_epoch'}, $co{'author_tz'});
8260 # get list of changed files
8261 open my $fd, "-|", git_cmd
(), "diff-tree", '-r', @diff_opts,
8262 $co{'parent'} || "--root",
8263 $co{'id'}, "--", (defined $file_name ? $file_name : ())
8265 my @difftree = map { chomp; $_ } <$fd>;
8269 # print element (entry, item)
8270 my $co_url = href
(-full
=>1, action
=>"commitdiff", hash
=>$commit);
8271 if ($format eq 'rss') {
8273 "<title>" . esc_html
($co{'title'}) . "</title>\n" .
8274 "<author>" . esc_html
($co{'author'}) . "</author>\n" .
8275 "<pubDate>$cd{'rfc2822'}</pubDate>\n" .
8276 "<guid isPermaLink=\"true\">$co_url</guid>\n" .
8277 "<link>$co_url</link>\n" .
8278 "<description>" . esc_html
($co{'title'}) . "</description>\n" .
8279 "<content:encoded>" .
8281 } elsif ($format eq 'atom') {
8283 "<title type=\"html\">" . esc_html
($co{'title'}) . "</title>\n" .
8284 "<updated>$cd{'iso-8601'}</updated>\n" .
8286 " <name>" . esc_html
($co{'author_name'}) . "</name>\n";
8287 if ($co{'author_email'}) {
8288 print " <email>" . esc_html
($co{'author_email'}) . "</email>\n";
8290 print "</author>\n" .
8291 # use committer for contributor
8293 " <name>" . esc_html
($co{'committer_name'}) . "</name>\n";
8294 if ($co{'committer_email'}) {
8295 print " <email>" . esc_html
($co{'committer_email'}) . "</email>\n";
8297 print "</contributor>\n" .
8298 "<published>$cd{'iso-8601'}</published>\n" .
8299 "<link rel=\"alternate\" type=\"text/html\" href=\"$co_url\" />\n" .
8300 "<id>$co_url</id>\n" .
8301 "<content type=\"xhtml\" xml:base=\"" . esc_url
($my_url) . "\">\n" .
8302 "<div xmlns=\"http://www.w3.org/1999/xhtml\">\n";
8304 my $comment = $co{'comment'};
8306 foreach my $line (@$comment) {
8307 $line = esc_html
($line);
8310 print "</pre><ul>\n";
8311 foreach my $difftree_line (@difftree) {
8312 my %difftree = parse_difftree_raw_line
($difftree_line);
8313 next if !$difftree{'from_id'};
8315 my $file = $difftree{'file'} || $difftree{'to_file'};
8319 $cgi->a({-href
=> href
(-full
=>1, action
=>"blobdiff",
8320 hash
=>$difftree{'to_id'}, hash_parent
=>$difftree{'from_id'},
8321 hash_base
=>$co{'id'}, hash_parent_base
=>$co{'parent'},
8322 file_name
=>$file, file_parent
=>$difftree{'from_file'}),
8323 -title
=> "diff"}, 'D');
8325 print $cgi->a({-href
=> href
(-full
=>1, action
=>"blame",
8326 file_name
=>$file, hash_base
=>$commit),
8327 -title
=> "blame"}, 'B');
8329 # if this is not a feed of a file history
8330 if (!defined $file_name || $file_name ne $file) {
8331 print $cgi->a({-href
=> href
(-full
=>1, action
=>"history",
8332 file_name
=>$file, hash
=>$commit),
8333 -title
=> "history"}, 'H');
8335 $file = esc_path
($file);
8339 if ($format eq 'rss') {
8340 print "</ul>]]>\n" .
8341 "</content:encoded>\n" .
8343 } elsif ($format eq 'atom') {
8344 print "</ul>\n</div>\n" .
8351 if ($format eq 'rss') {
8352 print "</channel>\n</rss>\n";
8353 } elsif ($format eq 'atom') {
8367 my @list = git_get_projects_list
($project_filter, $strict_export);
8369 die_error
(404, "No projects found");
8373 -type
=> 'text/xml',
8374 -charset
=> 'utf-8',
8375 -content_disposition
=> 'inline; filename="opml.xml"');
8377 my $title = esc_html
($site_name);
8378 my $filter = " within subdirectory ";
8379 if (defined $project_filter) {
8380 $filter .= esc_html
($project_filter);
8385 <?xml version="1.0" encoding="utf-8"?>
8386 <opml version="1.0">
8388 <title>$title OPML Export$filter</title>
8391 <outline text="git RSS feeds">
8394 foreach my $pr (@list) {
8396 my $head = git_get_head_hash
($proj{'path'});
8397 if (!defined $head) {
8400 $git_dir = "$projectroot/$proj{'path'}";
8401 my %co = parse_commit
($head);
8406 my $path = esc_html
(chop_str
($proj{'path'}, 25, 5));
8407 my $rss = href
('project' => $proj{'path'}, 'action' => 'rss', -full
=> 1);
8408 my $html = href
('project' => $proj{'path'}, 'action' => 'summary', -full
=> 1);
8409 print "<outline type=\"rss\" text=\"$path\" title=\"$path\" xmlUrl=\"$rss\" htmlUrl=\"$html\"/>\n";