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,
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, $mimetype, $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 && defined $syntax);
3938 open $fd, quote_command
(git_cmd
(), "cat-file", "blob", $hash)." | ".
3939 quote_command
($highlight_bin).
3940 " --replace-tabs=8 --fragment --syntax $syntax |"
3941 or die_error
(500, "Couldn't open file or run syntax highlighter");
3945 ## ======================================================================
3946 ## functions printing HTML: header, footer, error page
3948 sub get_page_title
{
3949 my $title = to_utf8
($site_name);
3951 unless (defined $project) {
3952 if (defined $project_filter) {
3953 $title .= " - projects in '" . esc_path
($project_filter) . "'";
3957 $title .= " - " . to_utf8
($project);
3959 return $title unless (defined $action);
3960 $title .= "/$action"; # $action is US-ASCII (7bit ASCII)
3962 return $title unless (defined $file_name);
3963 $title .= " - " . esc_path
($file_name);
3964 if ($action eq "tree" && $file_name !~ m
|/$|) {
3971 sub get_content_type_html
{
3972 # require explicit support from the UA if we are to send the page as
3973 # 'application/xhtml+xml', otherwise send it as plain old 'text/html'.
3974 # we have to do this because MSIE sometimes globs '*/*', pretending to
3975 # support xhtml+xml but choking when it gets what it asked for.
3976 if (defined $cgi->http('HTTP_ACCEPT') &&
3977 $cgi->http('HTTP_ACCEPT') =~ m/(,|;|\s|^)application\/xhtml\
+xml
(,|;|\s
|$)/ &&
3978 $cgi->Accept('application/xhtml+xml') != 0) {
3979 return 'application/xhtml+xml';
3985 sub print_feed_meta
{
3986 if (defined $project) {
3987 my %href_params = get_feed_info
();
3988 if (!exists $href_params{'-title'}) {
3989 $href_params{'-title'} = 'log';
3992 foreach my $format (qw(RSS Atom)) {
3993 my $type = lc($format);
3995 '-rel' => 'alternate',
3996 '-title' => esc_attr
("$project - $href_params{'-title'} - $format feed"),
3997 '-type' => "application/$type+xml"
4000 $href_params{'extra_options'} = undef;
4001 $href_params{'action'} = $type;
4002 $link_attr{'-href'} = href
(%href_params);
4004 "rel=\"$link_attr{'-rel'}\" ".
4005 "title=\"$link_attr{'-title'}\" ".
4006 "href=\"$link_attr{'-href'}\" ".
4007 "type=\"$link_attr{'-type'}\" ".
4010 $href_params{'extra_options'} = '--no-merges';
4011 $link_attr{'-href'} = href
(%href_params);
4012 $link_attr{'-title'} .= ' (no merges)';
4014 "rel=\"$link_attr{'-rel'}\" ".
4015 "title=\"$link_attr{'-title'}\" ".
4016 "href=\"$link_attr{'-href'}\" ".
4017 "type=\"$link_attr{'-type'}\" ".
4022 printf('<link rel="alternate" title="%s projects list" '.
4023 'href="%s" type="text/plain; charset=utf-8" />'."\n",
4024 esc_attr
($site_name), href
(project
=>undef, action
=>"project_index"));
4025 printf('<link rel="alternate" title="%s projects feeds" '.
4026 'href="%s" type="text/x-opml" />'."\n",
4027 esc_attr
($site_name), href
(project
=>undef, action
=>"opml"));
4031 sub print_header_links
{
4034 # print out each stylesheet that exist, providing backwards capability
4035 # for those people who defined $stylesheet in a config file
4036 if (defined $stylesheet) {
4037 print '<link rel="stylesheet" type="text/css" href="'.esc_url
($stylesheet).'"/>'."\n";
4039 foreach my $stylesheet (@stylesheets) {
4040 next unless $stylesheet;
4041 print '<link rel="stylesheet" type="text/css" href="'.esc_url
($stylesheet).'"/>'."\n";
4045 if ($status eq '200 OK');
4046 if (defined $favicon) {
4047 print qq(<link rel="shortcut icon" href=").esc_url
($favicon).qq(" type="image/png" />\n);
4051 sub print_nav_breadcrumbs_path
{
4052 my $dirprefix = undef;
4053 while (my $part = shift) {
4054 $dirprefix .= "/" if defined $dirprefix;
4055 $dirprefix .= $part;
4056 print $cgi->a({-href
=> href
(project
=> undef,
4057 project_filter
=> $dirprefix,
4058 action
=> "project_list")},
4059 esc_html
($part)) . " / ";
4063 sub print_nav_breadcrumbs
{
4066 for my $crumb (@extra_breadcrumbs, [ $home_link_str => $home_link ]) {
4067 print $cgi->a({-href
=> esc_url
($crumb->[1])}, $crumb->[0]) . " / ";
4069 if (defined $project) {
4070 my @dirname = split '/', $project;
4071 my $projectbasename = pop @dirname;
4072 print_nav_breadcrumbs_path
(@dirname);
4073 print $cgi->a({-href
=> href
(action
=>"summary")}, esc_html
($projectbasename));
4074 if (defined $action) {
4075 my $action_print = $action ;
4076 if (defined $opts{-action_extra
}) {
4077 $action_print = $cgi->a({-href
=> href
(action
=>$action)},
4080 print " / $action_print";
4082 if (defined $opts{-action_extra
}) {
4083 print " / $opts{-action_extra}";
4086 } elsif (defined $project_filter) {
4087 print_nav_breadcrumbs_path
(split '/', $project_filter);
4091 sub print_search_form
{
4092 if (!defined $searchtext) {
4096 if (defined $hash_base) {
4097 $search_hash = $hash_base;
4098 } elsif (defined $hash) {
4099 $search_hash = $hash;
4101 $search_hash = "HEAD";
4103 my $action = $my_uri;
4104 my $use_pathinfo = gitweb_check_feature
('pathinfo');
4105 if ($use_pathinfo) {
4106 $action .= "/".esc_url
($project);
4108 print $cgi->start_form(-method => "get", -action
=> $action) .
4109 "<div class=\"search\">\n" .
4111 $cgi->input({-name
=>"p", -value
=>$project, -type
=>"hidden"}) . "\n") .
4112 $cgi->input({-name
=>"a", -value
=>"search", -type
=>"hidden"}) . "\n" .
4113 $cgi->input({-name
=>"h", -value
=>$search_hash, -type
=>"hidden"}) . "\n" .
4114 $cgi->popup_menu(-name
=> 'st', -default => 'commit',
4115 -values => ['commit', 'grep', 'author', 'committer', 'pickaxe']) .
4116 " " . $cgi->a({-href
=> href
(action
=>"search_help"),
4117 -title
=> "search help" }, "?") . " search:\n",
4118 $cgi->textfield(-name
=> "s", -value
=> $searchtext, -override
=> 1) . "\n" .
4119 "<span title=\"Extended regular expression\">" .
4120 $cgi->checkbox(-name
=> 'sr', -value
=> 1, -label
=> 're',
4121 -checked
=> $search_use_regexp) .
4124 $cgi->end_form() . "\n";
4127 sub git_header_html
{
4128 my $status = shift || "200 OK";
4129 my $expires = shift;
4132 my $title = get_page_title
();
4133 my $content_type = get_content_type_html
();
4134 print $cgi->header(-type
=>$content_type, -charset
=> 'utf-8',
4135 -status
=> $status, -expires
=> $expires)
4136 unless ($opts{'-no_http_header'});
4137 my $mod_perl_version = $ENV{'MOD_PERL'} ? " $ENV{'MOD_PERL'}" : '';
4139 <?xml version="1.0" encoding="utf-8"?>
4140 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4141 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" lang="en-US">
4142 <!-- git web interface version $version, (C) 2005-2006, Kay Sievers <kay.sievers\@vrfy.org>, Christian Gierke -->
4143 <!-- git core binaries version $git_version -->
4145 <meta http-equiv="content-type" content="$content_type; charset=utf-8"/>
4146 <meta name="generator" content="gitweb/$version git/$git_version$mod_perl_version"/>
4147 <meta name="robots" content="index, nofollow"/>
4148 <title>$title</title>
4150 # the stylesheet, favicon etc urls won't work correctly with path_info
4151 # unless we set the appropriate base URL
4152 if ($ENV{'PATH_INFO'}) {
4153 print "<base href=\"".esc_url
($base_url)."\" />\n";
4155 print_header_links
($status);
4157 if (defined $site_html_head_string) {
4158 print to_utf8
($site_html_head_string);
4164 if (defined $site_header && -f
$site_header) {
4165 insert_file
($site_header);
4168 print "<div class=\"page_header\">\n";
4169 if (defined $logo) {
4170 print $cgi->a({-href
=> esc_url
($logo_url),
4171 -title
=> $logo_label},
4172 $cgi->img({-src
=> esc_url
($logo),
4173 -width
=> 72, -height
=> 27,
4175 -class => "logo"}));
4177 print_nav_breadcrumbs
(%opts);
4180 my $have_search = gitweb_check_feature
('search');
4181 if (defined $project && $have_search) {
4182 print_search_form
();
4186 sub git_footer_html
{
4187 my $feed_class = 'rss_logo';
4189 print "<div class=\"page_footer\">\n";
4190 if (defined $project) {
4191 my $descr = git_get_project_description
($project);
4192 if (defined $descr) {
4193 print "<div class=\"page_footer_text\">" . esc_html
($descr) . "</div>\n";
4196 my %href_params = get_feed_info
();
4197 if (!%href_params) {
4198 $feed_class .= ' generic';
4200 $href_params{'-title'} ||= 'log';
4202 foreach my $format (qw(RSS Atom)) {
4203 $href_params{'action'} = lc($format);
4204 print $cgi->a({-href
=> href
(%href_params),
4205 -title
=> "$href_params{'-title'} $format feed",
4206 -class => $feed_class}, $format)."\n";
4210 print $cgi->a({-href
=> href
(project
=>undef, action
=>"opml",
4211 project_filter
=> $project_filter),
4212 -class => $feed_class}, "OPML") . " ";
4213 print $cgi->a({-href
=> href
(project
=>undef, action
=>"project_index",
4214 project_filter
=> $project_filter),
4215 -class => $feed_class}, "TXT") . "\n";
4217 print "</div>\n"; # class="page_footer"
4219 if (defined $t0 && gitweb_check_feature
('timed')) {
4220 print "<div id=\"generating_info\">\n";
4221 print 'This page took '.
4222 '<span id="generating_time" class="time_span">'.
4223 tv_interval
($t0, [ gettimeofday
() ]).
4226 '<span id="generating_cmd">'.
4227 $number_of_git_cmds.
4228 '</span> git commands '.
4230 print "</div>\n"; # class="page_footer"
4233 if (defined $site_footer && -f
$site_footer) {
4234 insert_file
($site_footer);
4237 print qq
!<script type
="text/javascript" src
="!.esc_url($javascript).qq!"></script
>\n!;
4238 if (defined $action &&
4239 $action eq 'blame_incremental') {
4240 print qq
!<script type
="text/javascript">\n!.
4241 qq
!startBlame
("!. href(action=>"blame_data
", -replay=>1) .qq!",\n!.
4242 qq
! "!. href() .qq!");\n!.
4245 my ($jstimezone, $tz_cookie, $datetime_class) =
4246 gitweb_get_feature
('javascript-timezone');
4248 print qq
!<script type
="text/javascript">\n!.
4249 qq
!window
.onload
= function
() {\n!;
4250 if (gitweb_check_feature
('javascript-actions')) {
4251 print qq
! fixLinks
();\n!;
4253 if ($jstimezone && $tz_cookie && $datetime_class) {
4254 print qq
! var tz_cookie
= { name
: '$tz_cookie', expires
: 14, path
: '/' };\n!. # in days
4255 qq
! onloadTZSetup
('$jstimezone', tz_cookie
, '$datetime_class');\n!;
4265 # die_error(<http_status_code>, <error_message>[, <detailed_html_description>])
4266 # Example: die_error(404, 'Hash not found')
4267 # By convention, use the following status codes (as defined in RFC 2616):
4268 # 400: Invalid or missing CGI parameters, or
4269 # requested object exists but has wrong type.
4270 # 403: Requested feature (like "pickaxe" or "snapshot") not enabled on
4271 # this server or project.
4272 # 404: Requested object/revision/project doesn't exist.
4273 # 500: The server isn't configured properly, or
4274 # an internal error occurred (e.g. failed assertions caused by bugs), or
4275 # an unknown error occurred (e.g. the git binary died unexpectedly).
4276 # 503: The server is currently unavailable (because it is overloaded,
4277 # or down for maintenance). Generally, this is a temporary state.
4279 my $status = shift || 500;
4280 my $error = esc_html
(shift) || "Internal Server Error";
4284 my %http_responses = (
4285 400 => '400 Bad Request',
4286 403 => '403 Forbidden',
4287 404 => '404 Not Found',
4288 500 => '500 Internal Server Error',
4289 503 => '503 Service Unavailable',
4291 git_header_html
($http_responses{$status}, undef, %opts);
4293 <div class="page_body">
4298 if (defined $extra) {
4306 unless ($opts{'-error_handler'});
4309 ## ----------------------------------------------------------------------
4310 ## functions printing or outputting HTML: navigation
4312 sub git_print_page_nav
{
4313 my ($current, $suppress, $head, $treehead, $treebase, $extra) = @_;
4314 $extra = '' if !defined $extra; # pager or formats
4316 my @navs = qw(summary shortlog log commit commitdiff tree);
4318 @navs = grep { $_ ne $suppress } @navs;
4321 my %arg = map { $_ => {action
=>$_} } @navs;
4322 if (defined $head) {
4323 for (qw(commit commitdiff)) {
4324 $arg{$_}{'hash'} = $head;
4326 if ($current =~ m/^(tree | log | shortlog | commit | commitdiff | search)$/x) {
4327 for (qw(shortlog log)) {
4328 $arg{$_}{'hash'} = $head;
4333 $arg{'tree'}{'hash'} = $treehead if defined $treehead;
4334 $arg{'tree'}{'hash_base'} = $treebase if defined $treebase;
4336 my @actions = gitweb_get_feature
('actions');
4339 'n' => $project, # project name
4340 'f' => $git_dir, # project path within filesystem
4341 'h' => $treehead || '', # current hash ('h' parameter)
4342 'b' => $treebase || '', # hash base ('hb' parameter)
4345 my ($label, $link, $pos) = splice(@actions,0,3);
4347 @navs = map { $_ eq $pos ? ($_, $label) : $_ } @navs;
4349 $link =~ s/%([%nfhb])/$repl{$1}/g;
4350 $arg{$label}{'_href'} = $link;
4353 print "<div class=\"page_nav\">\n" .
4355 map { $_ eq $current ?
4356 $_ : $cgi->a({-href
=> ($arg{$_}{_href
} ? $arg{$_}{_href
} : href
(%{$arg{$_}}))}, "$_")
4358 print "<br/>\n$extra<br/>\n" .
4362 # returns a submenu for the nagivation of the refs views (tags, heads,
4363 # remotes) with the current view disabled and the remotes view only
4364 # available if the feature is enabled
4365 sub format_ref_views
{
4367 my @ref_views = qw{tags heads};
4368 push @ref_views, 'remotes' if gitweb_check_feature
('remote_heads');
4369 return join " | ", map {
4370 $_ eq $current ? $_ :
4371 $cgi->a({-href
=> href
(action
=>$_)}, $_)
4375 sub format_paging_nav
{
4376 my ($action, $page, $has_next_link) = @_;
4382 $cgi->a({-href
=> href
(-replay
=>1, page
=>undef)}, "first") .
4384 $cgi->a({-href
=> href
(-replay
=>1, page
=>$page-1),
4385 -accesskey
=> "p", -title
=> "Alt-p"}, "prev");
4387 $paging_nav .= "first ⋅ prev";
4390 if ($has_next_link) {
4391 $paging_nav .= " ⋅ " .
4392 $cgi->a({-href
=> href
(-replay
=>1, page
=>$page+1),
4393 -accesskey
=> "n", -title
=> "Alt-n"}, "next");
4395 $paging_nav .= " ⋅ next";
4401 ## ......................................................................
4402 ## functions printing or outputting HTML: div
4404 sub git_print_header_div
{
4405 my ($action, $title, $hash, $hash_base) = @_;
4408 $args{'action'} = $action;
4409 $args{'hash'} = $hash if $hash;
4410 $args{'hash_base'} = $hash_base if $hash_base;
4412 print "<div class=\"header\">\n" .
4413 $cgi->a({-href
=> href
(%args), -class => "title"},
4414 $title ? $title : $action) .
4418 sub format_repo_url
{
4419 my ($name, $url) = @_;
4420 return "<tr class=\"metadata_url\"><td>$name</td><td>$url</td></tr>\n";
4423 # Group output by placing it in a DIV element and adding a header.
4424 # Options for start_div() can be provided by passing a hash reference as the
4425 # first parameter to the function.
4426 # Options to git_print_header_div() can be provided by passing an array
4427 # reference. This must follow the options to start_div if they are present.
4428 # The content can be a scalar, which is output as-is, a scalar reference, which
4429 # is output after html escaping, an IO handle passed either as *handle or
4430 # *handle{IO}, or a function reference. In the latter case all following
4431 # parameters will be taken as argument to the content function call.
4432 sub git_print_section
{
4433 my ($div_args, $header_args, $content);
4435 if (ref($arg) eq 'HASH') {
4439 if (ref($arg) eq 'ARRAY') {
4440 $header_args = $arg;
4445 print $cgi->start_div($div_args);
4446 git_print_header_div
(@$header_args);
4448 if (ref($content) eq 'CODE') {
4450 } elsif (ref($content) eq 'SCALAR') {
4451 print esc_html
($$content);
4452 } elsif (ref($content) eq 'GLOB' or ref($content) eq 'IO::Handle') {
4454 } elsif (!ref($content) && defined($content)) {
4458 print $cgi->end_div;
4461 sub format_timestamp_html
{
4463 my $strtime = $date->{'rfc2822'};
4465 my (undef, undef, $datetime_class) =
4466 gitweb_get_feature
('javascript-timezone');
4467 if ($datetime_class) {
4468 $strtime = qq
!<span
class="$datetime_class">$strtime</span
>!;
4471 my $localtime_format = '(%02d:%02d %s)';
4472 if ($date->{'hour_local'} < 6) {
4473 $localtime_format = '(<span class="atnight">%02d:%02d</span> %s)';
4476 sprintf($localtime_format,
4477 $date->{'hour_local'}, $date->{'minute_local'}, $date->{'tz_local'});
4482 # Outputs the author name and date in long form
4483 sub git_print_authorship
{
4486 my $tag = $opts{-tag
} || 'div';
4487 my $author = $co->{'author_name'};
4489 my %ad = parse_date
($co->{'author_epoch'}, $co->{'author_tz'});
4490 print "<$tag class=\"author_date\">" .
4491 format_search_author
($author, "author", esc_html
($author)) .
4492 " [".format_timestamp_html
(\
%ad)."]".
4493 git_get_avatar
($co->{'author_email'}, -pad_before
=> 1) .
4497 # Outputs table rows containing the full author or committer information,
4498 # in the format expected for 'commit' view (& similar).
4499 # Parameters are a commit hash reference, followed by the list of people
4500 # to output information for. If the list is empty it defaults to both
4501 # author and committer.
4502 sub git_print_authorship_rows
{
4504 # too bad we can't use @people = @_ || ('author', 'committer')
4506 @people = ('author', 'committer') unless @people;
4507 foreach my $who (@people) {
4508 my %wd = parse_date
($co->{"${who}_epoch"}, $co->{"${who}_tz"});
4509 print "<tr><td>$who</td><td>" .
4510 format_search_author
($co->{"${who}_name"}, $who,
4511 esc_html
($co->{"${who}_name"})) . " " .
4512 format_search_author
($co->{"${who}_email"}, $who,
4513 esc_html
("<" . $co->{"${who}_email"} . ">")) .
4514 "</td><td rowspan=\"2\">" .
4515 git_get_avatar
($co->{"${who}_email"}, -size
=> 'double') .
4519 format_timestamp_html
(\
%wd) .
4525 sub git_print_page_path
{
4531 print "<div class=\"page_path\">";
4532 print $cgi->a({-href
=> href
(action
=>"tree", hash_base
=>$hb),
4533 -title
=> 'tree root'}, to_utf8
("[$project]"));
4535 if (defined $name) {
4536 my @dirname = split '/', $name;
4537 my $basename = pop @dirname;
4540 foreach my $dir (@dirname) {
4541 $fullname .= ($fullname ? '/' : '') . $dir;
4542 print $cgi->a({-href
=> href
(action
=>"tree", file_name
=>$fullname,
4544 -title
=> $fullname}, esc_path
($dir));
4547 if (defined $type && $type eq 'blob') {
4548 print $cgi->a({-href
=> href
(action
=>"blob_plain", file_name
=>$file_name,
4550 -title
=> $name}, esc_path
($basename));
4551 } elsif (defined $type && $type eq 'tree') {
4552 print $cgi->a({-href
=> href
(action
=>"tree", file_name
=>$file_name,
4554 -title
=> $name}, esc_path
($basename));
4557 print esc_path
($basename);
4560 print "<br/></div>\n";
4567 if ($opts{'-remove_title'}) {
4568 # remove title, i.e. first line of log
4571 # remove leading empty lines
4572 while (defined $log->[0] && $log->[0] eq "") {
4577 my $skip_blank_line = 0;
4578 foreach my $line (@$log) {
4579 if ($line =~ m/^\s*([A-Z][-A-Za-z]*-[Bb]y|C[Cc]): /) {
4580 if (! $opts{'-remove_signoff'}) {
4581 print "<span class=\"signoff\">" . esc_html
($line) . "</span><br/>\n";
4582 $skip_blank_line = 1;
4587 if ($line =~ m
,\s
*([a-z
]*link): (https
?://\S
+),i
) {
4588 if (! $opts{'-remove_signoff'}) {
4589 print "<span class=\"signoff\">" . esc_html
($1) . ": " .
4590 "<a href=\"" . esc_html
($2) . "\">" . esc_html
($2) . "</a>" .
4592 $skip_blank_line = 1;
4597 # print only one empty line
4598 # do not print empty line after signoff
4600 next if ($skip_blank_line);
4601 $skip_blank_line = 1;
4603 $skip_blank_line = 0;
4606 print format_log_line_html
($line) . "<br/>\n";
4609 if ($opts{'-final_empty_line'}) {
4610 # end with single empty line
4611 print "<br/>\n" unless $skip_blank_line;
4615 # return link target (what link points to)
4616 sub git_get_link_target
{
4621 open my $fd, "-|", git_cmd
(), "cat-file", "blob", $hash
4625 $link_target = <$fd>;
4630 return $link_target;
4633 # given link target, and the directory (basedir) the link is in,
4634 # return target of link relative to top directory (top tree);
4635 # return undef if it is not possible (including absolute links).
4636 sub normalize_link_target
{
4637 my ($link_target, $basedir) = @_;
4639 # absolute symlinks (beginning with '/') cannot be normalized
4640 return if (substr($link_target, 0, 1) eq '/');
4642 # normalize link target to path from top (root) tree (dir)
4645 $path = $basedir . '/' . $link_target;
4647 # we are in top (root) tree (dir)
4648 $path = $link_target;
4651 # remove //, /./, and /../
4653 foreach my $part (split('/', $path)) {
4654 # discard '.' and ''
4655 next if (!$part || $part eq '.');
4657 if ($part eq '..') {
4661 # link leads outside repository (outside top dir)
4665 push @path_parts, $part;
4668 $path = join('/', @path_parts);
4673 # print tree entry (row of git_tree), but without encompassing <tr> element
4674 sub git_print_tree_entry
{
4675 my ($t, $basedir, $hash_base, $have_blame) = @_;
4678 $base_key{'hash_base'} = $hash_base if defined $hash_base;
4680 # The format of a table row is: mode list link. Where mode is
4681 # the mode of the entry, list is the name of the entry, an href,
4682 # and link is the action links of the entry.
4684 print "<td class=\"mode\">" . mode_str
($t->{'mode'}) . "</td>\n";
4685 if (exists $t->{'size'}) {
4686 print "<td class=\"size\">$t->{'size'}</td>\n";
4688 if ($t->{'type'} eq "blob") {
4689 print "<td class=\"list\">" .
4690 $cgi->a({-href
=> href
(action
=>"blob", hash
=>$t->{'hash'},
4691 file_name
=>"$basedir$t->{'name'}", %base_key),
4692 -class => "list"}, esc_path
($t->{'name'}));
4693 if (S_ISLNK
(oct $t->{'mode'})) {
4694 my $link_target = git_get_link_target
($t->{'hash'});
4696 my $norm_target = normalize_link_target
($link_target, $basedir);
4697 if (defined $norm_target) {
4699 $cgi->a({-href
=> href
(action
=>"object", hash_base
=>$hash_base,
4700 file_name
=>$norm_target),
4701 -title
=> $norm_target}, esc_path
($link_target));
4703 print " -> " . esc_path
($link_target);
4708 print "<td class=\"link\">";
4709 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$t->{'hash'},
4710 file_name
=>"$basedir$t->{'name'}", %base_key)},
4714 $cgi->a({-href
=> href
(action
=>"blame", hash
=>$t->{'hash'},
4715 file_name
=>"$basedir$t->{'name'}", %base_key)},
4718 if (defined $hash_base) {
4720 $cgi->a({-href
=> href
(action
=>"history", hash_base
=>$hash_base,
4721 hash
=>$t->{'hash'}, file_name
=>"$basedir$t->{'name'}")},
4725 $cgi->a({-href
=> href
(action
=>"blob_plain", hash_base
=>$hash_base,
4726 file_name
=>"$basedir$t->{'name'}")},
4730 } elsif ($t->{'type'} eq "tree") {
4731 print "<td class=\"list\">";
4732 print $cgi->a({-href
=> href
(action
=>"tree", hash
=>$t->{'hash'},
4733 file_name
=>"$basedir$t->{'name'}",
4735 esc_path
($t->{'name'}));
4737 print "<td class=\"link\">";
4738 print $cgi->a({-href
=> href
(action
=>"tree", hash
=>$t->{'hash'},
4739 file_name
=>"$basedir$t->{'name'}",
4742 if (defined $hash_base) {
4744 $cgi->a({-href
=> href
(action
=>"history", hash_base
=>$hash_base,
4745 file_name
=>"$basedir$t->{'name'}")},
4750 # unknown object: we can only present history for it
4751 # (this includes 'commit' object, i.e. submodule support)
4752 print "<td class=\"list\">" .
4753 esc_path
($t->{'name'}) .
4755 print "<td class=\"link\">";
4756 if (defined $hash_base) {
4757 print $cgi->a({-href
=> href
(action
=>"history",
4758 hash_base
=>$hash_base,
4759 file_name
=>"$basedir$t->{'name'}")},
4766 ## ......................................................................
4767 ## functions printing large fragments of HTML
4769 # get pre-image filenames for merge (combined) diff
4770 sub fill_from_file_info
{
4771 my ($diff, @parents) = @_;
4773 $diff->{'from_file'} = [ ];
4774 $diff->{'from_file'}[$diff->{'nparents'} - 1] = undef;
4775 for (my $i = 0; $i < $diff->{'nparents'}; $i++) {
4776 if ($diff->{'status'}[$i] eq 'R' ||
4777 $diff->{'status'}[$i] eq 'C') {
4778 $diff->{'from_file'}[$i] =
4779 git_get_path_by_hash
($parents[$i], $diff->{'from_id'}[$i]);
4786 # is current raw difftree line of file deletion
4788 my $diffinfo = shift;
4790 return $diffinfo->{'to_id'} eq ('0' x
40);
4793 # does patch correspond to [previous] difftree raw line
4794 # $diffinfo - hashref of parsed raw diff format
4795 # $patchinfo - hashref of parsed patch diff format
4796 # (the same keys as in $diffinfo)
4797 sub is_patch_split
{
4798 my ($diffinfo, $patchinfo) = @_;
4800 return defined $diffinfo && defined $patchinfo
4801 && $diffinfo->{'to_file'} eq $patchinfo->{'to_file'};
4805 sub git_difftree_body
{
4806 my ($difftree, $hash, @parents) = @_;
4807 my ($parent) = $parents[0];
4808 my $have_blame = gitweb_check_feature
('blame');
4809 print "<div class=\"list_head\">\n";
4810 if ($#{$difftree} > 10) {
4811 print(($#{$difftree} + 1) . " files changed:\n");
4815 print "<table class=\"" .
4816 (@parents > 1 ? "combined " : "") .
4819 # header only for combined diff in 'commitdiff' view
4820 my $has_header = @$difftree && @parents > 1 && $action eq 'commitdiff';
4823 print "<thead><tr>\n" .
4824 "<th></th><th></th>\n"; # filename, patchN link
4825 for (my $i = 0; $i < @parents; $i++) {
4826 my $par = $parents[$i];
4828 $cgi->a({-href
=> href
(action
=>"commitdiff",
4829 hash
=>$hash, hash_parent
=>$par),
4830 -title
=> 'commitdiff to parent number ' .
4831 ($i+1) . ': ' . substr($par,0,7)},
4835 print "</tr></thead>\n<tbody>\n";
4840 foreach my $line (@{$difftree}) {
4841 my $diff = parsed_difftree_line
($line);
4844 print "<tr class=\"dark\">\n";
4846 print "<tr class=\"light\">\n";
4850 if (exists $diff->{'nparents'}) { # combined diff
4852 fill_from_file_info
($diff, @parents)
4853 unless exists $diff->{'from_file'};
4855 if (!is_deleted
($diff)) {
4856 # file exists in the result (child) commit
4858 $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff->{'to_id'},
4859 file_name
=>$diff->{'to_file'},
4861 -class => "list"}, esc_path
($diff->{'to_file'})) .
4865 esc_path
($diff->{'to_file'}) .
4869 if ($action eq 'commitdiff') {
4872 print "<td class=\"link\">" .
4873 $cgi->a({-href
=> href
(-anchor
=>"patch$patchno")},
4879 my $has_history = 0;
4880 my $not_deleted = 0;
4881 for (my $i = 0; $i < $diff->{'nparents'}; $i++) {
4882 my $hash_parent = $parents[$i];
4883 my $from_hash = $diff->{'from_id'}[$i];
4884 my $from_path = $diff->{'from_file'}[$i];
4885 my $status = $diff->{'status'}[$i];
4887 $has_history ||= ($status ne 'A');
4888 $not_deleted ||= ($status ne 'D');
4890 if ($status eq 'A') {
4891 print "<td class=\"link\" align=\"right\"> | </td>\n";
4892 } elsif ($status eq 'D') {
4893 print "<td class=\"link\">" .
4894 $cgi->a({-href
=> href
(action
=>"blob",
4897 file_name
=>$from_path)},
4901 if ($diff->{'to_id'} eq $from_hash) {
4902 print "<td class=\"link nochange\">";
4904 print "<td class=\"link\">";
4906 print $cgi->a({-href
=> href
(action
=>"blobdiff",
4907 hash
=>$diff->{'to_id'},
4908 hash_parent
=>$from_hash,
4910 hash_parent_base
=>$hash_parent,
4911 file_name
=>$diff->{'to_file'},
4912 file_parent
=>$from_path)},
4918 print "<td class=\"link\">";
4920 print $cgi->a({-href
=> href
(action
=>"blob",
4921 hash
=>$diff->{'to_id'},
4922 file_name
=>$diff->{'to_file'},
4925 print " | " if ($has_history);
4928 print $cgi->a({-href
=> href
(action
=>"history",
4929 file_name
=>$diff->{'to_file'},
4936 next; # instead of 'else' clause, to avoid extra indent
4938 # else ordinary diff
4940 my ($to_mode_oct, $to_mode_str, $to_file_type);
4941 my ($from_mode_oct, $from_mode_str, $from_file_type);
4942 if ($diff->{'to_mode'} ne ('0' x
6)) {
4943 $to_mode_oct = oct $diff->{'to_mode'};
4944 if (S_ISREG
($to_mode_oct)) { # only for regular file
4945 $to_mode_str = sprintf("%04o", $to_mode_oct & 0777); # permission bits
4947 $to_file_type = file_type
($diff->{'to_mode'});
4949 if ($diff->{'from_mode'} ne ('0' x
6)) {
4950 $from_mode_oct = oct $diff->{'from_mode'};
4951 if (S_ISREG
($from_mode_oct)) { # only for regular file
4952 $from_mode_str = sprintf("%04o", $from_mode_oct & 0777); # permission bits
4954 $from_file_type = file_type
($diff->{'from_mode'});
4957 if ($diff->{'status'} eq "A") { # created
4958 my $mode_chng = "<span class=\"file_status new\">[new $to_file_type";
4959 $mode_chng .= " with mode: $to_mode_str" if $to_mode_str;
4960 $mode_chng .= "]</span>";
4962 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff->{'to_id'},
4963 hash_base
=>$hash, file_name
=>$diff->{'file'}),
4964 -class => "list"}, esc_path
($diff->{'file'}));
4966 print "<td>$mode_chng</td>\n";
4967 print "<td class=\"link\">";
4968 if ($action eq 'commitdiff') {
4971 print $cgi->a({-href
=> href
(-anchor
=>"patch$patchno")},
4975 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff->{'to_id'},
4976 hash_base
=>$hash, file_name
=>$diff->{'file'})},
4980 } elsif ($diff->{'status'} eq "D") { # deleted
4981 my $mode_chng = "<span class=\"file_status deleted\">[deleted $from_file_type]</span>";
4983 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff->{'from_id'},
4984 hash_base
=>$parent, file_name
=>$diff->{'file'}),
4985 -class => "list"}, esc_path
($diff->{'file'}));
4987 print "<td>$mode_chng</td>\n";
4988 print "<td class=\"link\">";
4989 if ($action eq 'commitdiff') {
4992 print $cgi->a({-href
=> href
(-anchor
=>"patch$patchno")},
4996 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff->{'from_id'},
4997 hash_base
=>$parent, file_name
=>$diff->{'file'})},
5000 print $cgi->a({-href
=> href
(action
=>"blame", hash_base
=>$parent,
5001 file_name
=>$diff->{'file'})},
5004 print $cgi->a({-href
=> href
(action
=>"history", hash_base
=>$parent,
5005 file_name
=>$diff->{'file'})},
5009 } elsif ($diff->{'status'} eq "M" || $diff->{'status'} eq "T") { # modified, or type changed
5010 my $mode_chnge = "";
5011 if ($diff->{'from_mode'} != $diff->{'to_mode'}) {
5012 $mode_chnge = "<span class=\"file_status mode_chnge\">[changed";
5013 if ($from_file_type ne $to_file_type) {
5014 $mode_chnge .= " from $from_file_type to $to_file_type";
5016 if (($from_mode_oct & 0777) != ($to_mode_oct & 0777)) {
5017 if ($from_mode_str && $to_mode_str) {
5018 $mode_chnge .= " mode: $from_mode_str->$to_mode_str";
5019 } elsif ($to_mode_str) {
5020 $mode_chnge .= " mode: $to_mode_str";
5023 $mode_chnge .= "]</span>\n";
5026 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff->{'to_id'},
5027 hash_base
=>$hash, file_name
=>$diff->{'file'}),
5028 -class => "list"}, esc_path
($diff->{'file'}));
5030 print "<td>$mode_chnge</td>\n";
5031 print "<td class=\"link\">";
5032 if ($action eq 'commitdiff') {
5035 print $cgi->a({-href
=> href
(-anchor
=>"patch$patchno")},
5038 } elsif ($diff->{'to_id'} ne $diff->{'from_id'}) {
5039 # "commit" view and modified file (not onlu mode changed)
5040 print $cgi->a({-href
=> href
(action
=>"blobdiff",
5041 hash
=>$diff->{'to_id'}, hash_parent
=>$diff->{'from_id'},
5042 hash_base
=>$hash, hash_parent_base
=>$parent,
5043 file_name
=>$diff->{'file'})},
5047 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff->{'to_id'},
5048 hash_base
=>$hash, file_name
=>$diff->{'file'})},
5051 print $cgi->a({-href
=> href
(action
=>"blame", hash_base
=>$hash,
5052 file_name
=>$diff->{'file'})},
5055 print $cgi->a({-href
=> href
(action
=>"history", hash_base
=>$hash,
5056 file_name
=>$diff->{'file'})},
5060 } elsif ($diff->{'status'} eq "R" || $diff->{'status'} eq "C") { # renamed or copied
5061 my %status_name = ('R' => 'moved', 'C' => 'copied');
5062 my $nstatus = $status_name{$diff->{'status'}};
5064 if ($diff->{'from_mode'} != $diff->{'to_mode'}) {
5065 # mode also for directories, so we cannot use $to_mode_str
5066 $mode_chng = sprintf(", mode: %04o", $to_mode_oct & 0777);
5069 $cgi->a({-href
=> href
(action
=>"blob", hash_base
=>$hash,
5070 hash
=>$diff->{'to_id'}, file_name
=>$diff->{'to_file'}),
5071 -class => "list"}, esc_path
($diff->{'to_file'})) . "</td>\n" .
5072 "<td><span class=\"file_status $nstatus\">[$nstatus from " .
5073 $cgi->a({-href
=> href
(action
=>"blob", hash_base
=>$parent,
5074 hash
=>$diff->{'from_id'}, file_name
=>$diff->{'from_file'}),
5075 -class => "list"}, esc_path
($diff->{'from_file'})) .
5076 " with " . (int $diff->{'similarity'}) . "% similarity$mode_chng]</span></td>\n" .
5077 "<td class=\"link\">";
5078 if ($action eq 'commitdiff') {
5081 print $cgi->a({-href
=> href
(-anchor
=>"patch$patchno")},
5084 } elsif ($diff->{'to_id'} ne $diff->{'from_id'}) {
5085 # "commit" view and modified file (not only pure rename or copy)
5086 print $cgi->a({-href
=> href
(action
=>"blobdiff",
5087 hash
=>$diff->{'to_id'}, hash_parent
=>$diff->{'from_id'},
5088 hash_base
=>$hash, hash_parent_base
=>$parent,
5089 file_name
=>$diff->{'to_file'}, file_parent
=>$diff->{'from_file'})},
5093 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff->{'to_id'},
5094 hash_base
=>$parent, file_name
=>$diff->{'to_file'})},
5097 print $cgi->a({-href
=> href
(action
=>"blame", hash_base
=>$hash,
5098 file_name
=>$diff->{'to_file'})},
5101 print $cgi->a({-href
=> href
(action
=>"history", hash_base
=>$hash,
5102 file_name
=>$diff->{'to_file'})},
5106 } # we should not encounter Unmerged (U) or Unknown (X) status
5109 print "</tbody>" if $has_header;
5113 # Print context lines and then rem/add lines in a side-by-side manner.
5114 sub print_sidebyside_diff_lines
{
5115 my ($ctx, $rem, $add) = @_;
5117 # print context block before add/rem block
5120 '<div class="chunk_block ctx">',
5121 '<div class="old">',
5124 '<div class="new">',
5133 '<div class="chunk_block rem">',
5134 '<div class="old">',
5141 '<div class="chunk_block add">',
5142 '<div class="new">',
5148 '<div class="chunk_block chg">',
5149 '<div class="old">',
5152 '<div class="new">',
5159 # Print context lines and then rem/add lines in inline manner.
5160 sub print_inline_diff_lines
{
5161 my ($ctx, $rem, $add) = @_;
5163 print @$ctx, @$rem, @$add;
5166 # Format removed and added line, mark changed part and HTML-format them.
5167 # Implementation is based on contrib/diff-highlight
5168 sub format_rem_add_lines_pair
{
5169 my ($rem, $add, $num_parents) = @_;
5171 # We need to untabify lines before split()'ing them;
5172 # otherwise offsets would be invalid.
5175 $rem = untabify
($rem);
5176 $add = untabify
($add);
5178 my @rem = split(//, $rem);
5179 my @add = split(//, $add);
5180 my ($esc_rem, $esc_add);
5181 # Ignore leading +/- characters for each parent.
5182 my ($prefix_len, $suffix_len) = ($num_parents, 0);
5183 my ($prefix_has_nonspace, $suffix_has_nonspace);
5185 my $shorter = (@rem < @add) ? @rem : @add;
5186 while ($prefix_len < $shorter) {
5187 last if ($rem[$prefix_len] ne $add[$prefix_len]);
5189 $prefix_has_nonspace = 1 if ($rem[$prefix_len] !~ /\s/);
5193 while ($prefix_len + $suffix_len < $shorter) {
5194 last if ($rem[-1 - $suffix_len] ne $add[-1 - $suffix_len]);
5196 $suffix_has_nonspace = 1 if ($rem[-1 - $suffix_len] !~ /\s/);
5200 # Mark lines that are different from each other, but have some common
5201 # part that isn't whitespace. If lines are completely different, don't
5202 # mark them because that would make output unreadable, especially if
5203 # diff consists of multiple lines.
5204 if ($prefix_has_nonspace || $suffix_has_nonspace) {
5205 $esc_rem = esc_html_hl_regions
($rem, 'marked',
5206 [$prefix_len, @rem - $suffix_len], -nbsp
=>1);
5207 $esc_add = esc_html_hl_regions
($add, 'marked',
5208 [$prefix_len, @add - $suffix_len], -nbsp
=>1);
5210 $esc_rem = esc_html
($rem, -nbsp
=>1);
5211 $esc_add = esc_html
($add, -nbsp
=>1);
5214 return format_diff_line
(\
$esc_rem, 'rem'),
5215 format_diff_line
(\
$esc_add, 'add');
5218 # HTML-format diff context, removed and added lines.
5219 sub format_ctx_rem_add_lines
{
5220 my ($ctx, $rem, $add, $num_parents) = @_;
5221 my (@new_ctx, @new_rem, @new_add);
5222 my $can_highlight = 0;
5223 my $is_combined = ($num_parents > 1);
5225 # Highlight if every removed line has a corresponding added line.
5226 if (@$add > 0 && @$add == @$rem) {
5229 # Highlight lines in combined diff only if the chunk contains
5230 # diff between the same version, e.g.
5237 # Otherwise the highlightling would be confusing.
5239 for (my $i = 0; $i < @$add; $i++) {
5240 my $prefix_rem = substr($rem->[$i], 0, $num_parents);
5241 my $prefix_add = substr($add->[$i], 0, $num_parents);
5243 $prefix_rem =~ s/-/+/g;
5245 if ($prefix_rem ne $prefix_add) {
5253 if ($can_highlight) {
5254 for (my $i = 0; $i < @$add; $i++) {
5255 my ($line_rem, $line_add) = format_rem_add_lines_pair
(
5256 $rem->[$i], $add->[$i], $num_parents);
5257 push @new_rem, $line_rem;
5258 push @new_add, $line_add;
5261 @new_rem = map { format_diff_line
($_, 'rem') } @$rem;
5262 @new_add = map { format_diff_line
($_, 'add') } @$add;
5265 @new_ctx = map { format_diff_line
($_, 'ctx') } @$ctx;
5267 return (\
@new_ctx, \
@new_rem, \
@new_add);
5270 # Print context lines and then rem/add lines.
5271 sub print_diff_lines
{
5272 my ($ctx, $rem, $add, $diff_style, $num_parents) = @_;
5273 my $is_combined = $num_parents > 1;
5275 ($ctx, $rem, $add) = format_ctx_rem_add_lines
($ctx, $rem, $add,
5278 if ($diff_style eq 'sidebyside' && !$is_combined) {
5279 print_sidebyside_diff_lines
($ctx, $rem, $add);
5281 # default 'inline' style and unknown styles
5282 print_inline_diff_lines
($ctx, $rem, $add);
5286 sub print_diff_chunk
{
5287 my ($diff_style, $num_parents, $from, $to, @chunk) = @_;
5288 my (@ctx, @rem, @add);
5290 # The class of the previous line.
5291 my $prev_class = '';
5293 return unless @chunk;
5295 # incomplete last line might be among removed or added lines,
5296 # or both, or among context lines: find which
5297 for (my $i = 1; $i < @chunk; $i++) {
5298 if ($chunk[$i][0] eq 'incomplete') {
5299 $chunk[$i][0] = $chunk[$i-1][0];
5304 push @chunk, ["", ""];
5306 foreach my $line_info (@chunk) {
5307 my ($class, $line) = @$line_info;
5309 # print chunk headers
5310 if ($class && $class eq 'chunk_header') {
5311 print format_diff_line
($line, $class, $from, $to);
5315 ## print from accumulator when have some add/rem lines or end
5316 # of chunk (flush context lines), or when have add and rem
5317 # lines and new block is reached (otherwise add/rem lines could
5319 if (!$class || ((@rem || @add) && $class eq 'ctx') ||
5320 (@rem && @add && $class ne $prev_class)) {
5321 print_diff_lines
(\
@ctx, \
@rem, \
@add,
5322 $diff_style, $num_parents);
5323 @ctx = @rem = @add = ();
5326 ## adding lines to accumulator
5329 # rem, add or change
5330 if ($class eq 'rem') {
5332 } elsif ($class eq 'add') {
5336 if ($class eq 'ctx') {
5340 $prev_class = $class;
5344 sub git_patchset_body
{
5345 my ($fd, $diff_style, $difftree, $hash, @hash_parents) = @_;
5346 my ($hash_parent) = $hash_parents[0];
5348 my $is_combined = (@hash_parents > 1);
5350 my $patch_number = 0;
5355 my @chunk; # for side-by-side diff
5357 print "<div class=\"patchset\">\n";
5359 # skip to first patch
5360 while ($patch_line = <$fd>) {
5363 last if ($patch_line =~ m/^diff /);
5367 while ($patch_line) {
5369 # parse "git diff" header line
5370 if ($patch_line =~ m/^diff --git (\"(?:[^\\\"]*(?:\\.[^\\\"]*)*)\"|[^ "]*) (.*)$/) {
5371 # $1 is from_name, which we do not use
5372 $to_name = unquote
($2);
5373 $to_name =~ s!^b/!!;
5374 } elsif ($patch_line =~ m/^diff --(cc|combined) ("?.*"?)$/) {
5375 # $1 is 'cc' or 'combined', which we do not use
5376 $to_name = unquote
($2);
5381 # check if current patch belong to current raw line
5382 # and parse raw git-diff line if needed
5383 if (is_patch_split
($diffinfo, { 'to_file' => $to_name })) {
5384 # this is continuation of a split patch
5385 print "<div class=\"patch cont\">\n";
5387 # advance raw git-diff output if needed
5388 $patch_idx++ if defined $diffinfo;
5390 # read and prepare patch information
5391 $diffinfo = parsed_difftree_line
($difftree->[$patch_idx]);
5393 # compact combined diff output can have some patches skipped
5394 # find which patch (using pathname of result) we are at now;
5396 while ($to_name ne $diffinfo->{'to_file'}) {
5397 print "<div class=\"patch\" id=\"patch". ($patch_idx+1) ."\">\n" .
5398 format_diff_cc_simplified
($diffinfo, @hash_parents) .
5399 "</div>\n"; # class="patch"
5404 last if $patch_idx > $#$difftree;
5405 $diffinfo = parsed_difftree_line
($difftree->[$patch_idx]);
5409 # modifies %from, %to hashes
5410 parse_from_to_diffinfo
($diffinfo, \
%from, \
%to, @hash_parents);
5412 # this is first patch for raw difftree line with $patch_idx index
5413 # we index @$difftree array from 0, but number patches from 1
5414 print "<div class=\"patch\" id=\"patch". ($patch_idx+1) ."\">\n";
5418 #assert($patch_line =~ m/^diff /) if DEBUG;
5419 #assert($patch_line !~ m!$/$!) if DEBUG; # is chomp-ed
5421 # print "git diff" header
5422 print format_git_diff_header_line
($patch_line, $diffinfo,
5425 # print extended diff header
5426 print "<div class=\"diff extended_header\">\n";
5428 while ($patch_line = <$fd>) {
5431 last EXTENDED_HEADER
if ($patch_line =~ m/^--- |^diff /);
5433 print format_extended_diff_header_line
($patch_line, $diffinfo,
5436 print "</div>\n"; # class="diff extended_header"
5438 # from-file/to-file diff header
5439 if (! $patch_line) {
5440 print "</div>\n"; # class="patch"
5443 next PATCH
if ($patch_line =~ m/^diff /);
5444 #assert($patch_line =~ m/^---/) if DEBUG;
5446 my $last_patch_line = $patch_line;
5447 $patch_line = <$fd>;
5449 #assert($patch_line =~ m/^\+\+\+/) if DEBUG;
5451 print format_diff_from_to_header
($last_patch_line, $patch_line,
5452 $diffinfo, \
%from, \
%to,
5457 while ($patch_line = <$fd>) {
5460 next PATCH
if ($patch_line =~ m/^diff /);
5462 my $class = diff_line_class
($patch_line, \
%from, \
%to);
5464 if ($class eq 'chunk_header') {
5465 print_diff_chunk
($diff_style, scalar @hash_parents, \
%from, \
%to, @chunk);
5469 push @chunk, [ $class, $patch_line ];
5474 print_diff_chunk
($diff_style, scalar @hash_parents, \
%from, \
%to, @chunk);
5477 print "</div>\n"; # class="patch"
5480 # for compact combined (--cc) format, with chunk and patch simplification
5481 # the patchset might be empty, but there might be unprocessed raw lines
5482 for (++$patch_idx if $patch_number > 0;
5483 $patch_idx < @$difftree;
5485 # read and prepare patch information
5486 $diffinfo = parsed_difftree_line
($difftree->[$patch_idx]);
5488 # generate anchor for "patch" links in difftree / whatchanged part
5489 print "<div class=\"patch\" id=\"patch". ($patch_idx+1) ."\">\n" .
5490 format_diff_cc_simplified
($diffinfo, @hash_parents) .
5491 "</div>\n"; # class="patch"
5496 if ($patch_number == 0) {
5497 if (@hash_parents > 1) {
5498 print "<div class=\"diff nodifferences\">Trivial merge</div>\n";
5500 print "<div class=\"diff nodifferences\">No differences found</div>\n";
5504 print "</div>\n"; # class="patchset"
5507 # . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
5509 sub git_project_search_form
{
5510 my ($searchtext, $search_use_regexp) = @_;
5513 if ($project_filter) {
5514 $limit = " in '$project_filter/'";
5517 print "<div class=\"projsearch\">\n";
5518 print $cgi->start_form(-method => 'get', -action
=> $my_uri) .
5519 $cgi->hidden(-name
=> 'a', -value
=> 'project_list') . "\n";
5520 print $cgi->hidden(-name
=> 'pf', -value
=> $project_filter). "\n"
5521 if (defined $project_filter);
5522 print $cgi->textfield(-name
=> 's', -value
=> $searchtext,
5523 -title
=> "Search project by name and description$limit",
5524 -size
=> 60) . "\n" .
5525 "<span title=\"Extended regular expression\">" .
5526 $cgi->checkbox(-name
=> 'sr', -value
=> 1, -label
=> 're',
5527 -checked
=> $search_use_regexp) .
5529 $cgi->submit(-name
=> 'btnS', -value
=> 'Search') .
5530 $cgi->end_form() . "\n" .
5531 $cgi->a({-href
=> href
(project
=> undef, searchtext
=> undef,
5532 project_filter
=> $project_filter)},
5533 esc_html
("List all projects$limit")) . "<br />\n";
5537 # entry for given @keys needs filling if at least one of keys in list
5538 # is not present in %$project_info
5539 sub project_info_needs_filling
{
5540 my ($project_info, @keys) = @_;
5542 # return List::MoreUtils::any { !exists $project_info->{$_} } @keys;
5543 foreach my $key (@keys) {
5544 if (!exists $project_info->{$key}) {
5551 # fills project list info (age, description, owner, category, forks, etc.)
5552 # for each project in the list, removing invalid projects from
5553 # returned list, or fill only specified info.
5555 # Invalid projects are removed from the returned list if and only if you
5556 # ask 'age' or 'age_string' to be filled, because they are the only fields
5557 # that run unconditionally git command that requires repository, and
5558 # therefore do always check if project repository is invalid.
5561 # * fill_project_list_info(\@project_list, 'descr_long', 'ctags')
5562 # ensures that 'descr_long' and 'ctags' fields are filled
5563 # * @project_list = fill_project_list_info(\@project_list)
5564 # ensures that all fields are filled (and invalid projects removed)
5566 # NOTE: modifies $projlist, but does not remove entries from it
5567 sub fill_project_list_info
{
5568 my ($projlist, @wanted_keys) = @_;
5570 my $filter_set = sub { return @_; };
5572 my %wanted_keys = map { $_ => 1 } @wanted_keys;
5573 $filter_set = sub { return grep { $wanted_keys{$_} } @_; };
5576 my $show_ctags = gitweb_check_feature
('ctags');
5578 foreach my $pr (@$projlist) {
5579 if (project_info_needs_filling
($pr, $filter_set->('age', 'age_string'))) {
5580 my (@activity) = git_get_last_activity
($pr->{'path'});
5581 unless (@activity) {
5584 ($pr->{'age'}, $pr->{'age_string'}) = @activity;
5586 if (project_info_needs_filling
($pr, $filter_set->('descr', 'descr_long'))) {
5587 my $descr = git_get_project_description
($pr->{'path'}) || "";
5588 $descr = to_utf8
($descr);
5589 $pr->{'descr_long'} = $descr;
5590 $pr->{'descr'} = chop_str
($descr, $projects_list_description_width, 5);
5592 if (project_info_needs_filling
($pr, $filter_set->('owner'))) {
5593 $pr->{'owner'} = git_get_project_owner
("$pr->{'path'}") || "";
5596 project_info_needs_filling
($pr, $filter_set->('ctags'))) {
5597 $pr->{'ctags'} = git_get_project_ctags
($pr->{'path'});
5599 if ($projects_list_group_categories &&
5600 project_info_needs_filling
($pr, $filter_set->('category'))) {
5601 my $cat = git_get_project_category
($pr->{'path'}) ||
5602 $project_list_default_category;
5603 $pr->{'category'} = to_utf8
($cat);
5606 push @projects, $pr;
5612 sub sort_projects_list
{
5613 my ($projlist, $order) = @_;
5617 return sub { $a->{$key} cmp $b->{$key} };
5620 sub order_num_then_undef
{
5623 defined $a->{$key} ?
5624 (defined $b->{$key} ? $a->{$key} <=> $b->{$key} : -1) :
5625 (defined $b->{$key} ? 1 : 0)
5630 project
=> order_str
('path'),
5631 descr
=> order_str
('descr_long'),
5632 owner
=> order_str
('owner'),
5633 age
=> order_num_then_undef
('age'),
5636 my $ordering = $orderings{$order};
5637 return defined $ordering ? sort $ordering @$projlist : @$projlist;
5640 # returns a hash of categories, containing the list of project
5641 # belonging to each category
5642 sub build_projlist_by_category
{
5643 my ($projlist, $from, $to) = @_;
5646 $from = 0 unless defined $from;
5647 $to = $#$projlist if (!defined $to || $#$projlist < $to);
5649 for (my $i = $from; $i <= $to; $i++) {
5650 my $pr = $projlist->[$i];
5651 push @{$categories{ $pr->{'category'} }}, $pr;
5654 return wantarray ? %categories : \
%categories;
5657 # print 'sort by' <th> element, generating 'sort by $name' replay link
5658 # if that order is not selected
5660 print format_sort_th
(@_);
5663 sub format_sort_th
{
5664 my ($name, $order, $header) = @_;
5666 $header ||= ucfirst($name);
5668 if ($order eq $name) {
5669 $sort_th .= "<th>$header</th>\n";
5671 $sort_th .= "<th>" .
5672 $cgi->a({-href
=> href
(-replay
=>1, order
=>$name),
5673 -class => "header"}, $header) .
5680 sub git_project_list_rows
{
5681 my ($projlist, $from, $to, $check_forks) = @_;
5683 $from = 0 unless defined $from;
5684 $to = $#$projlist if (!defined $to || $#$projlist < $to);
5687 for (my $i = $from; $i <= $to; $i++) {
5688 my $pr = $projlist->[$i];
5691 print "<tr class=\"dark\">\n";
5693 print "<tr class=\"light\">\n";
5699 if ($pr->{'forks'}) {
5700 my $nforks = scalar @{$pr->{'forks'}};
5702 print $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"forks"),
5703 -title
=> "$nforks forks"}, "+");
5705 print $cgi->span({-title
=> "$nforks forks"}, "+");
5710 print "<td>" . $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"summary"),
5712 esc_html_match_hl
($pr->{'path'}, $search_regexp)) .
5714 "<td>" . $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"summary"),
5716 -title
=> $pr->{'descr_long'}},
5718 ? esc_html_match_hl_chopped
($pr->{'descr_long'},
5719 $pr->{'descr'}, $search_regexp)
5720 : esc_html
($pr->{'descr'})) .
5722 unless ($omit_owner) {
5723 print "<td><i>" . chop_and_escape_str
($pr->{'owner'}, 15) . "</i></td>\n";
5725 unless ($omit_age_column) {
5726 print "<td class=\"". age_class
($pr->{'age'}) . "\">" .
5727 (defined $pr->{'age_string'} ? $pr->{'age_string'} : "No commits") . "</td>\n";
5729 print"<td class=\"link\">" .
5730 $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"summary")}, "summary") . " | " .
5731 $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"shortlog")}, "shortlog") . " | " .
5732 $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"log")}, "log") . " | " .
5733 $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"tree")}, "tree") .
5734 ($pr->{'forks'} ? " | " . $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"forks")}, "forks") : '') .
5740 sub git_project_list_body
{
5741 # actually uses global variable $project
5742 my ($projlist, $order, $from, $to, $extra, $no_header) = @_;
5743 my @projects = @$projlist;
5745 my $check_forks = gitweb_check_feature
('forks');
5746 my $show_ctags = gitweb_check_feature
('ctags');
5747 my $tagfilter = $show_ctags ? $input_params{'ctag'} : undef;
5748 $check_forks = undef
5749 if ($tagfilter || $search_regexp);
5751 # filtering out forks before filling info allows to do less work
5752 @projects = filter_forks_from_projects_list
(\
@projects)
5754 # search_projects_list pre-fills required info
5755 @projects = search_projects_list
(\
@projects,
5756 'search_regexp' => $search_regexp,
5757 'tagfilter' => $tagfilter)
5758 if ($tagfilter || $search_regexp);
5760 my @all_fields = ('descr', 'descr_long', 'ctags', 'category');
5761 push @all_fields, ('age', 'age_string') unless($omit_age_column);
5762 push @all_fields, 'owner' unless($omit_owner);
5763 @projects = fill_project_list_info
(\
@projects, @all_fields);
5765 $order ||= $default_projects_order;
5766 $from = 0 unless defined $from;
5767 $to = $#projects if (!defined $to || $#projects < $to);
5772 "<b>No such projects found</b><br />\n".
5773 "Click ".$cgi->a({-href
=>href
(project
=>undef)},"here")." to view all projects<br />\n".
5774 "</center>\n<br />\n";
5778 @projects = sort_projects_list
(\
@projects, $order);
5781 my $ctags = git_gather_all_ctags
(\
@projects);
5782 my $cloud = git_populate_project_tagcloud
($ctags);
5783 print git_show_project_tagcloud
($cloud, 64);
5786 print "<table class=\"project_list\">\n";
5787 unless ($no_header) {
5790 print "<th></th>\n";
5792 print_sort_th
('project', $order, 'Project');
5793 print_sort_th
('descr', $order, 'Description');
5794 print_sort_th
('owner', $order, 'Owner') unless $omit_owner;
5795 print_sort_th
('age', $order, 'Last Change') unless $omit_age_column;
5796 print "<th></th>\n" . # for links
5800 if ($projects_list_group_categories) {
5801 # only display categories with projects in the $from-$to window
5802 @projects = sort {$a->{'category'} cmp $b->{'category'}} @projects[$from..$to];
5803 my %categories = build_projlist_by_category
(\
@projects, $from, $to);
5804 foreach my $cat (sort keys %categories) {
5805 unless ($cat eq "") {
5808 print "<td></td>\n";
5810 print "<td class=\"category\" colspan=\"5\">".esc_html
($cat)."</td>\n";
5814 git_project_list_rows
($categories{$cat}, undef, undef, $check_forks);
5817 git_project_list_rows
(\
@projects, $from, $to, $check_forks);
5820 if (defined $extra) {
5823 print "<td></td>\n";
5825 print "<td colspan=\"5\">$extra</td>\n" .
5832 # uses global variable $project
5833 my ($commitlist, $from, $to, $refs, $extra) = @_;
5835 $from = 0 unless defined $from;
5836 $to = $#{$commitlist} if (!defined $to || $#{$commitlist} < $to);
5838 for (my $i = 0; $i <= $to; $i++) {
5839 my %co = %{$commitlist->[$i]};
5841 my $commit = $co{'id'};
5842 my $ref = format_ref_marker
($refs, $commit);
5843 git_print_header_div
('commit',
5844 "<span class=\"age\">$co{'age_string'}</span>" .
5845 esc_html
($co{'title'}) . $ref,
5847 print "<div class=\"title_text\">\n" .
5848 "<div class=\"log_link\">\n" .
5849 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$commit)}, "commit") .
5851 $cgi->a({-href
=> href
(action
=>"commitdiff", hash
=>$commit)}, "commitdiff") .
5853 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$commit, hash_base
=>$commit)}, "tree") .
5856 git_print_authorship
(\
%co, -tag
=> 'span');
5857 print "<br/>\n</div>\n";
5859 print "<div class=\"log_body\">\n";
5860 git_print_log
($co{'comment'}, -final_empty_line
=> 1);
5864 print "<div class=\"page_nav\">\n";
5870 sub git_shortlog_body
{
5871 # uses global variable $project
5872 my ($commitlist, $from, $to, $refs, $extra) = @_;
5874 $from = 0 unless defined $from;
5875 $to = $#{$commitlist} if (!defined $to || $#{$commitlist} < $to);
5877 print "<table class=\"shortlog\">\n";
5879 for (my $i = $from; $i <= $to; $i++) {
5880 my %co = %{$commitlist->[$i]};
5881 my $commit = $co{'id'};
5882 my $ref = format_ref_marker
($refs, $commit);
5884 print "<tr class=\"dark\">\n";
5886 print "<tr class=\"light\">\n";
5889 # git_summary() used print "<td><i>$co{'age_string'}</i></td>\n" .
5890 print "<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n" .
5891 format_author_html
('td', \
%co, 10) . "<td>";
5892 print format_subject_html
($co{'title'}, $co{'title_short'},
5893 href
(action
=>"commit", hash
=>$commit), $ref);
5895 "<td class=\"link\">" .
5896 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$commit)}, "commit") . " | " .
5897 $cgi->a({-href
=> href
(action
=>"commitdiff", hash
=>$commit)}, "commitdiff") . " | " .
5898 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$commit, hash_base
=>$commit)}, "tree");
5899 my $snapshot_links = format_snapshot_links
($commit);
5900 if (defined $snapshot_links) {
5901 print " | " . $snapshot_links;
5906 if (defined $extra) {
5908 "<td colspan=\"4\">$extra</td>\n" .
5914 sub git_history_body
{
5915 # Warning: assumes constant type (blob or tree) during history
5916 my ($commitlist, $from, $to, $refs, $extra,
5917 $file_name, $file_hash, $ftype) = @_;
5919 $from = 0 unless defined $from;
5920 $to = $#{$commitlist} unless (defined $to && $to <= $#{$commitlist});
5922 print "<table class=\"history\">\n";
5924 for (my $i = $from; $i <= $to; $i++) {
5925 my %co = %{$commitlist->[$i]};
5929 my $commit = $co{'id'};
5931 my $ref = format_ref_marker
($refs, $commit);
5934 print "<tr class=\"dark\">\n";
5936 print "<tr class=\"light\">\n";
5939 print "<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n" .
5940 # shortlog: format_author_html('td', \%co, 10)
5941 format_author_html
('td', \
%co, 15, 3) . "<td>";
5942 # originally git_history used chop_str($co{'title'}, 50)
5943 print format_subject_html
($co{'title'}, $co{'title_short'},
5944 href
(action
=>"commit", hash
=>$commit), $ref);
5946 "<td class=\"link\">" .
5947 $cgi->a({-href
=> href
(action
=>$ftype, hash_base
=>$commit, file_name
=>$file_name)}, $ftype) . " | " .
5948 $cgi->a({-href
=> href
(action
=>"commitdiff", hash
=>$commit)}, "commitdiff");
5950 if ($ftype eq 'blob') {
5951 my $blob_current = $file_hash;
5952 my $blob_parent = git_get_hash_by_path
($commit, $file_name);
5953 if (defined $blob_current && defined $blob_parent &&
5954 $blob_current ne $blob_parent) {
5956 $cgi->a({-href
=> href
(action
=>"blobdiff",
5957 hash
=>$blob_current, hash_parent
=>$blob_parent,
5958 hash_base
=>$hash_base, hash_parent_base
=>$commit,
5959 file_name
=>$file_name)},
5966 if (defined $extra) {
5968 "<td colspan=\"4\">$extra</td>\n" .
5975 # uses global variable $project
5976 my ($taglist, $from, $to, $extra) = @_;
5977 $from = 0 unless defined $from;
5978 $to = $#{$taglist} if (!defined $to || $#{$taglist} < $to);
5980 print "<table class=\"tags\">\n";
5982 for (my $i = $from; $i <= $to; $i++) {
5983 my $entry = $taglist->[$i];
5985 my $comment = $tag{'subject'};
5987 if (defined $comment) {
5988 $comment_short = chop_str
($comment, 30, 5);
5991 print "<tr class=\"dark\">\n";
5993 print "<tr class=\"light\">\n";
5996 if (defined $tag{'age'}) {
5997 print "<td><i>$tag{'age'}</i></td>\n";
5999 print "<td></td>\n";
6002 $cgi->a({-href
=> href
(action
=>$tag{'reftype'}, hash
=>$tag{'refid'}),
6003 -class => "list name"}, esc_html
($tag{'name'})) .
6006 if (defined $comment) {
6007 print format_subject_html
($comment, $comment_short,
6008 href
(action
=>"tag", hash
=>$tag{'id'}));
6011 "<td class=\"selflink\">";
6012 if ($tag{'type'} eq "tag") {
6013 print $cgi->a({-href
=> href
(action
=>"tag", hash
=>$tag{'id'})}, "tag");
6018 "<td class=\"link\">" . " | " .
6019 $cgi->a({-href
=> href
(action
=>$tag{'reftype'}, hash
=>$tag{'refid'})}, $tag{'reftype'});
6020 if ($tag{'reftype'} eq "commit") {
6021 print " | " . $cgi->a({-href
=> href
(action
=>"shortlog", hash
=>$tag{'fullname'})}, "shortlog") .
6022 " | " . $cgi->a({-href
=> href
(action
=>"log", hash
=>$tag{'fullname'})}, "log");
6023 } elsif ($tag{'reftype'} eq "blob") {
6024 print " | " . $cgi->a({-href
=> href
(action
=>"blob_plain", hash
=>$tag{'refid'})}, "raw");
6029 if (defined $extra) {
6031 "<td colspan=\"5\">$extra</td>\n" .
6037 sub git_heads_body
{
6038 # uses global variable $project
6039 my ($headlist, $head_at, $from, $to, $extra) = @_;
6040 $from = 0 unless defined $from;
6041 $to = $#{$headlist} if (!defined $to || $#{$headlist} < $to);
6043 print "<table class=\"heads\">\n";
6045 for (my $i = $from; $i <= $to; $i++) {
6046 my $entry = $headlist->[$i];
6048 my $curr = defined $head_at && $ref{'id'} eq $head_at;
6050 print "<tr class=\"dark\">\n";
6052 print "<tr class=\"light\">\n";
6055 print "<td><i>$ref{'age'}</i></td>\n" .
6056 ($curr ? "<td class=\"current_head\">" : "<td>") .
6057 $cgi->a({-href
=> href
(action
=>"shortlog", hash
=>$ref{'fullname'}),
6058 -class => "list name"},esc_html
($ref{'name'})) .
6060 "<td class=\"link\">" .
6061 $cgi->a({-href
=> href
(action
=>"shortlog", hash
=>$ref{'fullname'})}, "shortlog") . " | " .
6062 $cgi->a({-href
=> href
(action
=>"log", hash
=>$ref{'fullname'})}, "log") . " | " .
6063 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$ref{'fullname'}, hash_base
=>$ref{'fullname'})}, "tree") .
6067 if (defined $extra) {
6069 "<td colspan=\"3\">$extra</td>\n" .
6075 # Display a single remote block
6076 sub git_remote_block
{
6077 my ($remote, $rdata, $limit, $head) = @_;
6079 my $heads = $rdata->{'heads'};
6080 my $fetch = $rdata->{'fetch'};
6081 my $push = $rdata->{'push'};
6083 my $urls_table = "<table class=\"projects_list\">\n" ;
6085 if (defined $fetch) {
6086 if ($fetch eq $push) {
6087 $urls_table .= format_repo_url
("URL", $fetch);
6089 $urls_table .= format_repo_url
("Fetch URL", $fetch);
6090 $urls_table .= format_repo_url
("Push URL", $push) if defined $push;
6092 } elsif (defined $push) {
6093 $urls_table .= format_repo_url
("Push URL", $push);
6095 $urls_table .= format_repo_url
("", "No remote URL");
6098 $urls_table .= "</table>\n";
6101 if (defined $limit && $limit < @$heads) {
6102 $dots = $cgi->a({-href
=> href
(action
=>"remotes", hash
=>$remote)}, "...");
6106 git_heads_body
($heads, $head, 0, $limit, $dots);
6109 # Display a list of remote names with the respective fetch and push URLs
6110 sub git_remotes_list
{
6111 my ($remotedata, $limit) = @_;
6112 print "<table class=\"heads\">\n";
6114 my @remotes = sort keys %$remotedata;
6116 my $limited = $limit && $limit < @remotes;
6118 $#remotes = $limit - 1 if $limited;
6120 while (my $remote = shift @remotes) {
6121 my $rdata = $remotedata->{$remote};
6122 my $fetch = $rdata->{'fetch'};
6123 my $push = $rdata->{'push'};
6125 print "<tr class=\"dark\">\n";
6127 print "<tr class=\"light\">\n";
6131 $cgi->a({-href
=> href
(action
=>'remotes', hash
=>$remote),
6132 -class=> "list name"},esc_html
($remote)) .
6134 print "<td class=\"link\">" .
6135 (defined $fetch ? $cgi->a({-href
=> $fetch}, "fetch") : "fetch") .
6137 (defined $push ? $cgi->a({-href
=> $push}, "push") : "push") .
6145 "<td colspan=\"3\">" .
6146 $cgi->a({-href
=> href
(action
=>"remotes")}, "...") .
6147 "</td>\n" . "</tr>\n";
6153 # Display remote heads grouped by remote, unless there are too many
6154 # remotes, in which case we only display the remote names
6155 sub git_remotes_body
{
6156 my ($remotedata, $limit, $head) = @_;
6157 if ($limit and $limit < keys %$remotedata) {
6158 git_remotes_list
($remotedata, $limit);
6160 fill_remote_heads
($remotedata);
6161 while (my ($remote, $rdata) = each %$remotedata) {
6162 git_print_section
({-class=>"remote", -id
=>$remote},
6163 ["remotes", $remote, $remote], sub {
6164 git_remote_block
($remote, $rdata, $limit, $head);
6170 sub git_search_message
{
6174 if ($searchtype eq 'commit') {
6175 $greptype = "--grep=";
6176 } elsif ($searchtype eq 'author') {
6177 $greptype = "--author=";
6178 } elsif ($searchtype eq 'committer') {
6179 $greptype = "--committer=";
6181 $greptype .= $searchtext;
6182 my @commitlist = parse_commits
($hash, 101, (100 * $page), undef,
6183 $greptype, '--regexp-ignore-case',
6184 $search_use_regexp ? '--extended-regexp' : '--fixed-strings');
6186 my $paging_nav = '';
6189 $cgi->a({-href
=> href
(-replay
=>1, page
=>undef)},
6192 $cgi->a({-href
=> href
(-replay
=>1, page
=>$page-1),
6193 -accesskey
=> "p", -title
=> "Alt-p"}, "prev");
6195 $paging_nav .= "first ⋅ prev";
6198 if ($#commitlist >= 100) {
6200 $cgi->a({-href
=> href
(-replay
=>1, page
=>$page+1),
6201 -accesskey
=> "n", -title
=> "Alt-n"}, "next");
6202 $paging_nav .= " ⋅ $next_link";
6204 $paging_nav .= " ⋅ next";
6209 git_print_page_nav
('','', $hash,$co{'tree'},$hash, $paging_nav);
6210 git_print_header_div
('commit', esc_html
($co{'title'}), $hash);
6211 if ($page == 0 && !@commitlist) {
6212 print "<p>No match.</p>\n";
6214 git_search_grep_body
(\
@commitlist, 0, 99, $next_link);
6220 sub git_search_changes
{
6224 open my $fd, '-|', git_cmd
(), '--no-pager', 'log', @diff_opts,
6225 '--pretty=format:%H', '--no-abbrev', '--raw', "-S$searchtext",
6226 ($search_use_regexp ? '--pickaxe-regex' : ())
6227 or die_error
(500, "Open git-log failed");
6231 git_print_page_nav
('','', $hash,$co{'tree'},$hash);
6232 git_print_header_div
('commit', esc_html
($co{'title'}), $hash);
6234 print "<table class=\"pickaxe search\">\n";
6238 while (my $line = <$fd>) {
6242 my %set = parse_difftree_raw_line
($line);
6243 if (defined $set{'commit'}) {
6244 # finish previous commit
6247 "<td class=\"link\">" .
6248 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$co{'id'})},
6251 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$co{'tree'},
6252 hash_base
=>$co{'id'})},
6259 print "<tr class=\"dark\">\n";
6261 print "<tr class=\"light\">\n";
6264 %co = parse_commit
($set{'commit'});
6265 my $author = chop_and_escape_str
($co{'author_name'}, 15, 5);
6266 print "<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n" .
6267 "<td><i>$author</i></td>\n" .
6269 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$co{'id'}),
6270 -class => "list subject"},
6271 chop_and_escape_str
($co{'title'}, 50) . "<br/>");
6272 } elsif (defined $set{'to_id'}) {
6273 next if ($set{'to_id'} =~ m/^0{40}$/);
6275 print $cgi->a({-href
=> href
(action
=>"blob", hash_base
=>$co{'id'},
6276 hash
=>$set{'to_id'}, file_name
=>$set{'to_file'}),
6278 "<span class=\"match\">" . esc_path
($set{'file'}) . "</span>") .
6284 # finish last commit (warning: repetition!)
6287 "<td class=\"link\">" .
6288 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$co{'id'})},
6291 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$co{'tree'},
6292 hash_base
=>$co{'id'})},
6303 sub git_search_files
{
6307 open my $fd, "-|", git_cmd
(), 'grep', '-n', '-z',
6308 $search_use_regexp ? ('-E', '-i') : '-F',
6309 $searchtext, $co{'tree'}
6310 or die_error
(500, "Open git-grep failed");
6314 git_print_page_nav
('','', $hash,$co{'tree'},$hash);
6315 git_print_header_div
('commit', esc_html
($co{'title'}), $hash);
6317 print "<table class=\"grep_search\">\n";
6322 while (my $line = <$fd>) {
6324 my ($file, $lno, $ltext, $binary);
6325 last if ($matches++ > 1000);
6326 if ($line =~ /^Binary file (.+) matches$/) {
6330 ($file, $lno, $ltext) = split(/\0/, $line, 3);
6331 $file =~ s/^$co{'tree'}://;
6333 if ($file ne $lastfile) {
6334 $lastfile and print "</td></tr>\n";
6336 print "<tr class=\"dark\">\n";
6338 print "<tr class=\"light\">\n";
6340 $file_href = href
(action
=>"blob", hash_base
=>$co{'id'},
6342 print "<td class=\"list\">".
6343 $cgi->a({-href
=> $file_href, -class => "list"}, esc_path
($file));
6344 print "</td><td>\n";
6348 print "<div class=\"binary\">Binary file</div>\n";
6350 $ltext = untabify
($ltext);
6351 if ($ltext =~ m/^(.*)($search_regexp)(.*)$/i) {
6352 $ltext = esc_html
($1, -nbsp
=>1);
6353 $ltext .= '<span class="match">';
6354 $ltext .= esc_html
($2, -nbsp
=>1);
6355 $ltext .= '</span>';
6356 $ltext .= esc_html
($3, -nbsp
=>1);
6358 $ltext = esc_html
($ltext, -nbsp
=>1);
6360 print "<div class=\"pre\">" .
6361 $cgi->a({-href
=> $file_href.'#l'.$lno,
6362 -class => "linenr"}, sprintf('%4i', $lno)) .
6363 ' ' . $ltext . "</div>\n";
6367 print "</td></tr>\n";
6368 if ($matches > 1000) {
6369 print "<div class=\"diff nodifferences\">Too many matches, listing trimmed</div>\n";
6372 print "<div class=\"diff nodifferences\">No matches found</div>\n";
6381 sub git_search_grep_body
{
6382 my ($commitlist, $from, $to, $extra) = @_;
6383 $from = 0 unless defined $from;
6384 $to = $#{$commitlist} if (!defined $to || $#{$commitlist} < $to);
6386 print "<table class=\"commit_search\">\n";
6388 for (my $i = $from; $i <= $to; $i++) {
6389 my %co = %{$commitlist->[$i]};
6393 my $commit = $co{'id'};
6395 print "<tr class=\"dark\">\n";
6397 print "<tr class=\"light\">\n";
6400 print "<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n" .
6401 format_author_html
('td', \
%co, 15, 5) .
6403 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$co{'id'}),
6404 -class => "list subject"},
6405 chop_and_escape_str
($co{'title'}, 50) . "<br/>");
6406 my $comment = $co{'comment'};
6407 foreach my $line (@$comment) {
6408 if ($line =~ m/^(.*?)($search_regexp)(.*)$/i) {
6409 my ($lead, $match, $trail) = ($1, $2, $3);
6410 $match = chop_str
($match, 70, 5, 'center');
6411 my $contextlen = int((80 - length($match))/2);
6412 $contextlen = 30 if ($contextlen > 30);
6413 $lead = chop_str
($lead, $contextlen, 10, 'left');
6414 $trail = chop_str
($trail, $contextlen, 10, 'right');
6416 $lead = esc_html
($lead);
6417 $match = esc_html
($match);
6418 $trail = esc_html
($trail);
6420 print "$lead<span class=\"match\">$match</span>$trail<br />";
6424 "<td class=\"link\">" .
6425 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$co{'id'})}, "commit") .
6427 $cgi->a({-href
=> href
(action
=>"commitdiff", hash
=>$co{'id'})}, "commitdiff") .
6429 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$co{'tree'}, hash_base
=>$co{'id'})}, "tree");
6433 if (defined $extra) {
6435 "<td colspan=\"3\">$extra</td>\n" .
6441 ## ======================================================================
6442 ## ======================================================================
6445 sub git_project_list
{
6446 my $order = $input_params{'order'};
6447 if (defined $order && $order !~ m/none|project|descr|owner|age/) {
6448 die_error
(400, "Unknown order parameter");
6451 my @list = git_get_projects_list
($project_filter, $strict_export);
6453 die_error
(404, "No projects found");
6457 if (defined $home_text && -f
$home_text) {
6458 print "<div class=\"index_include\">\n";
6459 insert_file
($home_text);
6463 git_project_search_form
($searchtext, $search_use_regexp);
6464 git_project_list_body
(\
@list, $order);
6469 my $order = $input_params{'order'};
6470 if (defined $order && $order !~ m/none|project|descr|owner|age/) {
6471 die_error
(400, "Unknown order parameter");
6474 my $filter = $project;
6475 $filter =~ s/\.git$//;
6476 my @list = git_get_projects_list
($filter);
6478 die_error
(404, "No forks found");
6482 git_print_page_nav
('','');
6483 git_print_header_div
('summary', "$project forks");
6484 git_project_list_body
(\
@list, $order);
6488 sub git_project_index
{
6489 my @projects = git_get_projects_list
($project_filter, $strict_export);
6491 die_error
(404, "No projects found");
6495 -type
=> 'text/plain',
6496 -charset
=> 'utf-8',
6497 -content_disposition
=> 'inline; filename="index.aux"');
6499 foreach my $pr (@projects) {
6500 if (!exists $pr->{'owner'}) {
6501 $pr->{'owner'} = git_get_project_owner
("$pr->{'path'}");
6504 my ($path, $owner) = ($pr->{'path'}, $pr->{'owner'});
6505 # quote as in CGI::Util::encode, but keep the slash, and use '+' for ' '
6506 $path =~ s/([^a-zA-Z0-9_.\-\/ ])/sprintf
("%%%02X", ord($1))/eg
;
6507 $owner =~ s/([^a-zA-Z0-9_.\-\/ ])/sprintf
("%%%02X", ord($1))/eg
;
6511 print "$path $owner\n";
6516 my $descr = git_get_project_description
($project) || "none";
6517 my %co = parse_commit
("HEAD");
6518 my %cd = %co ? parse_date
($co{'committer_epoch'}, $co{'committer_tz'}) : ();
6519 my $head = $co{'id'};
6520 my $remote_heads = gitweb_check_feature
('remote_heads');
6522 my $owner = git_get_project_owner
($project);
6524 my $refs = git_get_references
();
6525 # These get_*_list functions return one more to allow us to see if
6526 # there are more ...
6527 my @taglist = git_get_tags_list
(16);
6528 my @headlist = git_get_heads_list
(16);
6529 my %remotedata = $remote_heads ? git_get_remotes_list
() : ();
6531 my $check_forks = gitweb_check_feature
('forks');
6534 # find forks of a project
6535 my $filter = $project;
6536 $filter =~ s/\.git$//;
6537 @forklist = git_get_projects_list
($filter);
6538 # filter out forks of forks
6539 @forklist = filter_forks_from_projects_list
(\
@forklist)
6544 git_print_page_nav
('summary','', $head);
6546 print "<div class=\"title\"> </div>\n";
6547 print "<table class=\"projects_list\">\n" .
6548 "<tr id=\"metadata_desc\"><td>description</td><td>" . esc_html
($descr) . "</td></tr>\n";
6549 if ($owner and not $omit_owner) {
6550 print "<tr id=\"metadata_owner\"><td>owner</td><td>" . esc_html
($owner) . "</td></tr>\n";
6552 if (defined $cd{'rfc2822'}) {
6553 print "<tr id=\"metadata_lchange\"><td>last change</td>" .
6554 "<td>".format_timestamp_html
(\
%cd)."</td></tr>\n";
6557 # use per project git URL list in $projectroot/$project/cloneurl
6558 # or make project git URL from git base URL and project name
6559 my $url_tag = "URL";
6560 my @url_list = git_get_project_url_list
($project);
6561 @url_list = map { "$_/$project" } @git_base_url_list unless @url_list;
6562 foreach my $git_url (@url_list) {
6563 next unless $git_url;
6564 print format_repo_url
($url_tag, $git_url);
6569 my $show_ctags = gitweb_check_feature
('ctags');
6571 my $ctags = git_get_project_ctags
($project);
6573 # without ability to add tags, don't show if there are none
6574 my $cloud = git_populate_project_tagcloud
($ctags);
6575 print "<tr id=\"metadata_ctags\">" .
6576 "<td>content tags</td>" .
6577 "<td>".git_show_project_tagcloud
($cloud, 48)."</td>" .
6584 # If XSS prevention is on, we don't include README.html.
6585 # TODO: Allow a readme in some safe format.
6586 if (!$prevent_xss && -s
"$projectroot/$project/README.html") {
6587 print "<div class=\"title\">readme</div>\n" .
6588 "<div class=\"readme\">\n";
6589 insert_file
("$projectroot/$project/README.html");
6590 print "\n</div>\n"; # class="readme"
6593 # we need to request one more than 16 (0..15) to check if
6595 my @commitlist = $head ? parse_commits
($head, 17) : ();
6597 git_print_header_div
('shortlog');
6598 git_shortlog_body
(\
@commitlist, 0, 15, $refs,
6599 $#commitlist <= 15 ? undef :
6600 $cgi->a({-href
=> href
(action
=>"shortlog")}, "..."));
6604 git_print_header_div
('tags');
6605 git_tags_body
(\
@taglist, 0, 15,
6606 $#taglist <= 15 ? undef :
6607 $cgi->a({-href
=> href
(action
=>"tags")}, "..."));
6611 git_print_header_div
('heads');
6612 git_heads_body
(\
@headlist, $head, 0, 15,
6613 $#headlist <= 15 ? undef :
6614 $cgi->a({-href
=> href
(action
=>"heads")}, "..."));
6618 git_print_header_div
('remotes');
6619 git_remotes_body
(\
%remotedata, 15, $head);
6623 git_print_header_div
('forks');
6624 git_project_list_body
(\
@forklist, 'age', 0, 15,
6625 $#forklist <= 15 ? undef :
6626 $cgi->a({-href
=> href
(action
=>"forks")}, "..."),
6634 my %tag = parse_tag
($hash);
6637 die_error
(404, "Unknown tag object");
6640 my $head = git_get_head_hash
($project);
6642 git_print_page_nav
('','', $head,undef,$head);
6643 git_print_header_div
('commit', esc_html
($tag{'name'}), $hash);
6644 print "<div class=\"title_text\">\n" .
6645 "<table class=\"object_header\">\n" .
6647 "<td>object</td>\n" .
6648 "<td>" . $cgi->a({-class => "list", -href
=> href
(action
=>$tag{'type'}, hash
=>$tag{'object'})},
6649 $tag{'object'}) . "</td>\n" .
6650 "<td class=\"link\">" . $cgi->a({-href
=> href
(action
=>$tag{'type'}, hash
=>$tag{'object'})},
6651 $tag{'type'}) . "</td>\n" .
6653 if (defined($tag{'author'})) {
6654 git_print_authorship_rows
(\
%tag, 'author');
6656 print "</table>\n\n" .
6658 print "<div class=\"page_body\">";
6659 my $comment = $tag{'comment'};
6660 foreach my $line (@$comment) {
6662 print esc_html
($line, -nbsp
=>1) . "<br/>\n";
6668 sub git_blame_common
{
6669 my $format = shift || 'porcelain';
6670 if ($format eq 'porcelain' && $input_params{'javascript'}) {
6671 $format = 'incremental';
6672 $action = 'blame_incremental'; # for page title etc
6676 gitweb_check_feature
('blame')
6677 or die_error
(403, "Blame view not allowed");
6680 die_error
(400, "No file name given") unless $file_name;
6681 $hash_base ||= git_get_head_hash
($project);
6682 die_error
(404, "Couldn't find base commit") unless $hash_base;
6683 my %co = parse_commit
($hash_base)
6684 or die_error
(404, "Commit not found");
6686 if (!defined $hash) {
6687 $hash = git_get_hash_by_path
($hash_base, $file_name, "blob")
6688 or die_error
(404, "Error looking up file");
6690 $ftype = git_get_type
($hash);
6691 if ($ftype !~ "blob") {
6692 die_error
(400, "Object is not a blob");
6697 if ($format eq 'incremental') {
6698 # get file contents (as base)
6699 open $fd, "-|", git_cmd
(), 'cat-file', 'blob', $hash
6700 or die_error
(500, "Open git-cat-file failed");
6701 } elsif ($format eq 'data') {
6702 # run git-blame --incremental
6703 open $fd, "-|", git_cmd
(), "blame", "--incremental",
6704 $hash_base, "--", $file_name
6705 or die_error
(500, "Open git-blame --incremental failed");
6707 # run git-blame --porcelain
6708 open $fd, "-|", git_cmd
(), "blame", '-p',
6709 $hash_base, '--', $file_name
6710 or die_error
(500, "Open git-blame --porcelain failed");
6712 binmode $fd, ':utf8';
6714 # incremental blame data returns early
6715 if ($format eq 'data') {
6717 -type
=>"text/plain", -charset
=> "utf-8",
6718 -status
=> "200 OK");
6719 local $| = 1; # output autoflush
6720 while (my $line = <$fd>) {
6721 print to_utf8
($line);
6724 or print "ERROR $!\n";
6727 if (defined $t0 && gitweb_check_feature
('timed')) {
6729 tv_interval
($t0, [ gettimeofday
() ]).
6730 ' '.$number_of_git_cmds;
6740 $cgi->a({-href
=> href
(action
=>"blob", -replay
=>1)},
6743 if ($format eq 'incremental') {
6745 $cgi->a({-href
=> href
(action
=>"blame", javascript
=>0, -replay
=>1)},
6746 "blame") . " (non-incremental)";
6749 $cgi->a({-href
=> href
(action
=>"blame_incremental", -replay
=>1)},
6750 "blame") . " (incremental)";
6754 $cgi->a({-href
=> href
(action
=>"history", -replay
=>1)},
6757 $cgi->a({-href
=> href
(action
=>$action, file_name
=>$file_name)},
6759 git_print_page_nav
('','', $hash_base,$co{'tree'},$hash_base, $formats_nav);
6760 git_print_header_div
('commit', esc_html
($co{'title'}), $hash_base);
6761 git_print_page_path
($file_name, $ftype, $hash_base);
6764 if ($format eq 'incremental') {
6765 print "<noscript>\n<div class=\"error\"><center><b>\n".
6766 "This page requires JavaScript to run.\n Use ".
6767 $cgi->a({-href
=> href
(action
=>'blame',javascript
=>0,-replay
=>1)},
6770 "</b></center></div>\n</noscript>\n";
6772 print qq
!<div id
="progress_bar" style
="width: 100%; background-color: yellow"></div
>\n!;
6775 print qq
!<div
class="page_body">\n!;
6776 print qq
!<div id
="progress_info">... / ...</div
>\n!
6777 if ($format eq 'incremental');
6778 print qq
!<table id
="blame_table" class="blame" width
="100%">\n!.
6779 #qq!<col width="5.5em" /><col width="2.5em" /><col width="*" />\n!.
6781 qq
!<tr
><th
>Commit
</th><th>Line</th
><th
>Data
</th></tr
>\n!.
6785 my @rev_color = qw(light dark);
6786 my $num_colors = scalar(@rev_color);
6787 my $current_color = 0;
6789 if ($format eq 'incremental') {
6790 my $color_class = $rev_color[$current_color];
6795 while (my $line = <$fd>) {
6799 print qq
!<tr id
="l$linenr" class="$color_class">!.
6800 qq
!<td
class="sha1"><a href
=""> </a></td
>!.
6801 qq
!<td
class="linenr">!.
6802 qq
!<a
class="linenr" href
="">$linenr</a></td
>!;
6803 print qq
!<td
class="pre">! . esc_html
($line) . "</td>\n";
6807 } else { # porcelain, i.e. ordinary blame
6808 my %metainfo = (); # saves information about commits
6812 while (my $line = <$fd>) {
6814 # the header: <SHA-1> <src lineno> <dst lineno> [<lines in group>]
6815 # no <lines in group> for subsequent lines in group of lines
6816 my ($full_rev, $orig_lineno, $lineno, $group_size) =
6817 ($line =~ /^([0-9a-f]{40}) (\d+) (\d+)(?: (\d+))?$/);
6818 if (!exists $metainfo{$full_rev}) {
6819 $metainfo{$full_rev} = { 'nprevious' => 0 };
6821 my $meta = $metainfo{$full_rev};
6823 while ($data = <$fd>) {
6825 last if ($data =~ s/^\t//); # contents of line
6826 if ($data =~ /^(\S+)(?: (.*))?$/) {
6827 $meta->{$1} = $2 unless exists $meta->{$1};
6829 if ($data =~ /^previous /) {
6830 $meta->{'nprevious'}++;
6833 my $short_rev = substr($full_rev, 0, 8);
6834 my $author = $meta->{'author'};
6836 parse_date
($meta->{'author-time'}, $meta->{'author-tz'});
6837 my $date = $date{'iso-tz'};
6839 $current_color = ($current_color + 1) % $num_colors;
6841 my $tr_class = $rev_color[$current_color];
6842 $tr_class .= ' boundary' if (exists $meta->{'boundary'});
6843 $tr_class .= ' no-previous' if ($meta->{'nprevious'} == 0);
6844 $tr_class .= ' multiple-previous' if ($meta->{'nprevious'} > 1);
6845 print "<tr id=\"l$lineno\" class=\"$tr_class\">\n";
6847 print "<td class=\"sha1\"";
6848 print " title=\"". esc_html
($author) . ", $date\"";
6849 print " rowspan=\"$group_size\"" if ($group_size > 1);
6851 print $cgi->a({-href
=> href
(action
=>"commit",
6853 file_name
=>$file_name)},
6854 esc_html
($short_rev));
6855 if ($group_size >= 2) {
6856 my @author_initials = ($author =~ /\b([[:upper:]])\B/g);
6857 if (@author_initials) {
6859 esc_html
(join('', @author_initials));
6865 # 'previous' <sha1 of parent commit> <filename at commit>
6866 if (exists $meta->{'previous'} &&
6867 $meta->{'previous'} =~ /^([a-fA-F0-9]{40}) (.*)$/) {
6868 $meta->{'parent'} = $1;
6869 $meta->{'file_parent'} = unquote
($2);
6872 exists($meta->{'parent'}) ?
6873 $meta->{'parent'} : $full_rev;
6874 my $linenr_filename =
6875 exists($meta->{'file_parent'}) ?
6876 $meta->{'file_parent'} : unquote
($meta->{'filename'});
6877 my $blamed = href
(action
=> 'blame',
6878 file_name
=> $linenr_filename,
6879 hash_base
=> $linenr_commit);
6880 print "<td class=\"linenr\">";
6881 print $cgi->a({ -href
=> "$blamed#l$orig_lineno",
6882 -class => "linenr" },
6885 print "<td class=\"pre\">" . esc_html
($data) . "</td>\n";
6893 "</table>\n"; # class="blame"
6894 print "</div>\n"; # class="blame_body"
6896 or print "Reading blob failed\n";
6905 sub git_blame_incremental
{
6906 git_blame_common
('incremental');
6909 sub git_blame_data
{
6910 git_blame_common
('data');
6914 my $head = git_get_head_hash
($project);
6916 git_print_page_nav
('','', $head,undef,$head,format_ref_views
('tags'));
6917 git_print_header_div
('summary', $project);
6919 my @tagslist = git_get_tags_list
();
6921 git_tags_body
(\
@tagslist);
6927 my $head = git_get_head_hash
($project);
6929 git_print_page_nav
('','', $head,undef,$head,format_ref_views
('heads'));
6930 git_print_header_div
('summary', $project);
6932 my @headslist = git_get_heads_list
();
6934 git_heads_body
(\
@headslist, $head);
6939 # used both for single remote view and for list of all the remotes
6941 gitweb_check_feature
('remote_heads')
6942 or die_error
(403, "Remote heads view is disabled");
6944 my $head = git_get_head_hash
($project);
6945 my $remote = $input_params{'hash'};
6947 my $remotedata = git_get_remotes_list
($remote);
6948 die_error
(500, "Unable to get remote information") unless defined $remotedata;
6950 unless (%$remotedata) {
6951 die_error
(404, defined $remote ?
6952 "Remote $remote not found" :
6953 "No remotes found");
6956 git_header_html
(undef, undef, -action_extra
=> $remote);
6957 git_print_page_nav
('', '', $head, undef, $head,
6958 format_ref_views
($remote ? '' : 'remotes'));
6960 fill_remote_heads
($remotedata);
6961 if (defined $remote) {
6962 git_print_header_div
('remotes', "$remote remote for $project");
6963 git_remote_block
($remote, $remotedata->{$remote}, undef, $head);
6965 git_print_header_div
('summary', "$project remotes");
6966 git_remotes_body
($remotedata, undef, $head);
6972 sub git_blob_plain
{
6976 if (!defined $hash) {
6977 if (defined $file_name) {
6978 my $base = $hash_base || git_get_head_hash
($project);
6979 $hash = git_get_hash_by_path
($base, $file_name, "blob")
6980 or die_error
(404, "Cannot find file");
6982 die_error
(400, "No file name defined");
6984 } elsif ($hash =~ m/^[0-9a-fA-F]{40}$/) {
6985 # blobs defined by non-textual hash id's can be cached
6989 open my $fd, "-|", git_cmd
(), "cat-file", "blob", $hash
6990 or die_error
(500, "Open git-cat-file blob '$hash' failed");
6992 # content-type (can include charset)
6993 $type = blob_contenttype
($fd, $file_name, $type);
6995 # "save as" filename, even when no $file_name is given
6996 my $save_as = "$hash";
6997 if (defined $file_name) {
6998 $save_as = $file_name;
6999 } elsif ($type =~ m/^text\//) {
7003 # With XSS prevention on, blobs of all types except a few known safe
7004 # ones are served with "Content-Disposition: attachment" to make sure
7005 # they don't run in our security domain. For certain image types,
7006 # blob view writes an <img> tag referring to blob_plain view, and we
7007 # want to be sure not to break that by serving the image as an
7008 # attachment (though Firefox 3 doesn't seem to care).
7009 my $sandbox = $prevent_xss &&
7010 $type !~ m!^(?:text/[a-z]+|image/(?:gif|png|jpeg))(?:[ ;]|$)!;
7012 # serve text/* as text/plain
7014 ($type =~ m!^text/[a-z]+\b(.*)$! ||
7015 ($type =~ m!^[a-z]+/[a-z]\+xml\b(.*)$! && -T
$fd))) {
7017 $rest = defined $rest ? $rest : '';
7018 $type = "text/plain$rest";
7023 -expires
=> $expires,
7024 -content_disposition
=>
7025 ($sandbox ? 'attachment' : 'inline')
7026 . '; filename="' . $save_as . '"');
7028 binmode STDOUT
, ':raw';
7030 binmode STDOUT
, ':utf8'; # as set at the beginning of gitweb.cgi
7037 if (!defined $hash) {
7038 if (defined $file_name) {
7039 my $base = $hash_base || git_get_head_hash
($project);
7040 $hash = git_get_hash_by_path
($base, $file_name, "blob")
7041 or die_error
(404, "Cannot find file");
7043 die_error
(400, "No file name defined");
7045 } elsif ($hash =~ m/^[0-9a-fA-F]{40}$/) {
7046 # blobs defined by non-textual hash id's can be cached
7050 my $have_blame = gitweb_check_feature
('blame');
7051 open my $fd, "-|", git_cmd
(), "cat-file", "blob", $hash
7052 or die_error
(500, "Couldn't cat $file_name, $hash");
7053 my $mimetype = blob_mimetype
($fd, $file_name);
7054 # use 'blob_plain' (aka 'raw') view for files that cannot be displayed
7055 if ($mimetype !~ m!^(?:text/|image/(?:gif|png|jpeg)$)! && -B
$fd) {
7057 return git_blob_plain
($mimetype);
7059 # we can have blame only for text/* mimetype
7060 $have_blame &&= ($mimetype =~ m!^text/!);
7062 my $highlight = gitweb_check_feature
('highlight');
7063 my $syntax = guess_file_syntax
($highlight, $mimetype, $file_name);
7064 $fd = run_highlighter
($fd, $highlight, $syntax)
7067 git_header_html
(undef, $expires);
7068 my $formats_nav = '';
7069 if (defined $hash_base && (my %co = parse_commit
($hash_base))) {
7070 if (defined $file_name) {
7073 $cgi->a({-href
=> href
(action
=>"blame", -replay
=>1)},
7078 $cgi->a({-href
=> href
(action
=>"history", -replay
=>1)},
7081 $cgi->a({-href
=> href
(action
=>"blob_plain", -replay
=>1)},
7084 $cgi->a({-href
=> href
(action
=>"blob",
7085 hash_base
=>"HEAD", file_name
=>$file_name)},
7089 $cgi->a({-href
=> href
(action
=>"blob_plain", -replay
=>1)},
7092 git_print_page_nav
('','', $hash_base,$co{'tree'},$hash_base, $formats_nav);
7093 git_print_header_div
('commit', esc_html
($co{'title'}), $hash_base);
7095 print "<div class=\"page_nav\">\n" .
7096 "<br/><br/></div>\n" .
7097 "<div class=\"title\">".esc_html
($hash)."</div>\n";
7099 git_print_page_path
($file_name, "blob", $hash_base);
7100 print "<div class=\"page_body\">\n";
7101 if ($mimetype =~ m!^image/!) {
7102 print qq
!<img
class="blob" type
="!.esc_attr($mimetype).qq!"!;
7104 print qq
! alt
="!.esc_attr($file_name).qq!" title
="!.esc_attr($file_name).qq!"!;
7107 href(action=>"blob_plain
", hash=>$hash,
7108 hash_base=>$hash_base, file_name=>$file_name) .
7112 while (my $line = <$fd>) {
7115 $line = untabify
($line);
7116 printf qq
!<div
class="pre"><a id
="l%i" href
="%s#l%i" class="linenr">%4i</a> %s</div
>\n!,
7117 $nr, esc_attr
(href
(-replay
=> 1)), $nr, $nr,
7118 $syntax ? sanitize
($line) : esc_html
($line, -nbsp
=>1);
7122 or print "Reading blob failed.\n";
7128 if (!defined $hash_base) {
7129 $hash_base = "HEAD";
7131 if (!defined $hash) {
7132 if (defined $file_name) {
7133 $hash = git_get_hash_by_path
($hash_base, $file_name, "tree");
7138 die_error
(404, "No such tree") unless defined($hash);
7140 my $show_sizes = gitweb_check_feature
('show-sizes');
7141 my $have_blame = gitweb_check_feature
('blame');
7146 open my $fd, "-|", git_cmd
(), "ls-tree", '-z',
7147 ($show_sizes ? '-l' : ()), @extra_options, $hash
7148 or die_error
(500, "Open git-ls-tree failed");
7149 @entries = map { chomp; $_ } <$fd>;
7151 or die_error
(404, "Reading tree failed");
7154 my $refs = git_get_references
();
7155 my $ref = format_ref_marker
($refs, $hash_base);
7158 if (defined $hash_base && (my %co = parse_commit
($hash_base))) {
7160 if (defined $file_name) {
7162 $cgi->a({-href
=> href
(action
=>"history", -replay
=>1)},
7164 $cgi->a({-href
=> href
(action
=>"tree",
7165 hash_base
=>"HEAD", file_name
=>$file_name)},
7168 my $snapshot_links = format_snapshot_links
($hash);
7169 if (defined $snapshot_links) {
7170 # FIXME: Should be available when we have no hash base as well.
7171 push @views_nav, $snapshot_links;
7173 git_print_page_nav
('tree','', $hash_base, undef, undef,
7174 join(' | ', @views_nav));
7175 git_print_header_div
('commit', esc_html
($co{'title'}) . $ref, $hash_base);
7178 print "<div class=\"page_nav\">\n";
7179 print "<br/><br/></div>\n";
7180 print "<div class=\"title\">".esc_html
($hash)."</div>\n";
7182 if (defined $file_name) {
7183 $basedir = $file_name;
7184 if ($basedir ne '' && substr($basedir, -1) ne '/') {
7187 git_print_page_path
($file_name, 'tree', $hash_base);
7189 print "<div class=\"page_body\">\n";
7190 print "<table class=\"tree\">\n";
7192 # '..' (top directory) link if possible
7193 if (defined $hash_base &&
7194 defined $file_name && $file_name =~ m![^/]+$!) {
7196 print "<tr class=\"dark\">\n";
7198 print "<tr class=\"light\">\n";
7202 my $up = $file_name;
7203 $up =~ s!/?[^/]+$!!;
7204 undef $up unless $up;
7205 # based on git_print_tree_entry
7206 print '<td class="mode">' . mode_str
('040000') . "</td>\n";
7207 print '<td class="size"> </td>'."\n" if $show_sizes;
7208 print '<td class="list">';
7209 print $cgi->a({-href
=> href
(action
=>"tree",
7210 hash_base
=>$hash_base,
7214 print "<td class=\"link\"></td>\n";
7218 foreach my $line (@entries) {
7219 my %t = parse_ls_tree_line
($line, -z
=> 1, -l
=> $show_sizes);
7222 print "<tr class=\"dark\">\n";
7224 print "<tr class=\"light\">\n";
7228 git_print_tree_entry
(\
%t, $basedir, $hash_base, $have_blame);
7232 print "</table>\n" .
7237 sub sanitize_for_filename
{
7241 $name =~ s/[^[:alnum:]_.-]//g;
7247 my ($project, $hash) = @_;
7249 # path/to/project.git -> project
7250 # path/to/project/.git -> project
7251 my $name = to_utf8
($project);
7252 $name =~ s
,([^/])/*\
.git
$,$1,;
7253 $name = sanitize_for_filename
(basename
($name));
7256 if ($hash =~ /^[0-9a-fA-F]+$/) {
7257 # shorten SHA-1 hash
7258 my $full_hash = git_get_full_hash
($project, $hash);
7259 if ($full_hash =~ /^$hash/ && length($hash) > 7) {
7260 $ver = git_get_short_hash
($project, $hash);
7262 } elsif ($hash =~ m!^refs/tags/(.*)$!) {
7263 # tags don't need shortened SHA-1 hash
7266 # branches and other need shortened SHA-1 hash
7267 my $strip_refs = join '|', map { quotemeta } get_branch_refs
();
7268 if ($hash =~ m!^refs/($strip_refs|remotes)/(.*)$!) {
7269 my $ref_dir = (defined $1) ? $1 : '';
7272 $ref_dir = sanitize_for_filename
($ref_dir);
7273 # for refs neither in heads nor remotes we want to
7274 # add a ref dir to archive name
7275 if ($ref_dir ne '' and $ref_dir ne 'heads' and $ref_dir ne 'remotes') {
7276 $ver = $ref_dir . '-' . $ver;
7279 $ver .= '-' . git_get_short_hash
($project, $hash);
7281 # special case of sanitization for filename - we change
7282 # slashes to dots instead of dashes
7283 # in case of hierarchical branch names
7285 $ver =~ s/[^[:alnum:]_.-]//g;
7287 # name = project-version_string
7288 $name = "$name-$ver";
7290 return wantarray ? ($name, $name) : $name;
7293 sub exit_if_unmodified_since
{
7294 my ($latest_epoch) = @_;
7297 my $if_modified = $cgi->http('IF_MODIFIED_SINCE');
7298 if (defined $if_modified) {
7300 if (eval { require HTTP
::Date
; 1; }) {
7301 $since = HTTP
::Date
::str2time
($if_modified);
7302 } elsif (eval { require Time
::ParseDate
; 1; }) {
7303 $since = Time
::ParseDate
::parsedate
($if_modified, GMT
=> 1);
7305 if (defined $since && $latest_epoch <= $since) {
7306 my %latest_date = parse_date
($latest_epoch);
7308 -last_modified
=> $latest_date{'rfc2822'},
7309 -status
=> '304 Not Modified');
7316 my $format = $input_params{'snapshot_format'};
7317 if (!@snapshot_fmts) {
7318 die_error
(403, "Snapshots not allowed");
7320 # default to first supported snapshot format
7321 $format ||= $snapshot_fmts[0];
7322 if ($format !~ m/^[a-z0-9]+$/) {
7323 die_error
(400, "Invalid snapshot format parameter");
7324 } elsif (!exists($known_snapshot_formats{$format})) {
7325 die_error
(400, "Unknown snapshot format");
7326 } elsif ($known_snapshot_formats{$format}{'disabled'}) {
7327 die_error
(403, "Snapshot format not allowed");
7328 } elsif (!grep($_ eq $format, @snapshot_fmts)) {
7329 die_error
(403, "Unsupported snapshot format");
7332 my $type = git_get_type
("$hash^{}");
7334 die_error
(404, 'Object does not exist');
7335 } elsif ($type eq 'blob') {
7336 die_error
(400, 'Object is not a tree-ish');
7339 my ($name, $prefix) = snapshot_name
($project, $hash);
7340 my $filename = "$name$known_snapshot_formats{$format}{'suffix'}";
7342 my %co = parse_commit
($hash);
7343 exit_if_unmodified_since
($co{'committer_epoch'}) if %co;
7345 my $cmd = quote_command
(
7346 git_cmd
(), 'archive',
7347 "--format=$known_snapshot_formats{$format}{'format'}",
7348 "--prefix=$prefix/", $hash);
7349 if (exists $known_snapshot_formats{$format}{'compressor'}) {
7350 $cmd .= ' | ' . quote_command
(@{$known_snapshot_formats{$format}{'compressor'}});
7353 $filename =~ s/(["\\])/\\$1/g;
7356 %latest_date = parse_date
($co{'committer_epoch'}, $co{'committer_tz'});
7360 -type
=> $known_snapshot_formats{$format}{'type'},
7361 -content_disposition
=> 'inline; filename="' . $filename . '"',
7362 %co ? (-last_modified
=> $latest_date{'rfc2822'}) : (),
7363 -status
=> '200 OK');
7365 open my $fd, "-|", $cmd
7366 or die_error
(500, "Execute git-archive failed");
7367 binmode STDOUT
, ':raw';
7369 binmode STDOUT
, ':utf8'; # as set at the beginning of gitweb.cgi
7373 sub git_log_generic
{
7374 my ($fmt_name, $body_subr, $base, $parent, $file_name, $file_hash) = @_;
7376 my $head = git_get_head_hash
($project);
7377 if (!defined $base) {
7380 if (!defined $page) {
7383 my $refs = git_get_references
();
7385 my $commit_hash = $base;
7386 if (defined $parent) {
7387 $commit_hash = "$parent..$base";
7390 parse_commits
($commit_hash, 101, (100 * $page),
7391 defined $file_name ? ($file_name, "--full-history") : ());
7394 if (!defined $file_hash && defined $file_name) {
7395 # some commits could have deleted file in question,
7396 # and not have it in tree, but one of them has to have it
7397 for (my $i = 0; $i < @commitlist; $i++) {
7398 $file_hash = git_get_hash_by_path
($commitlist[$i]{'id'}, $file_name);
7399 last if defined $file_hash;
7402 if (defined $file_hash) {
7403 $ftype = git_get_type
($file_hash);
7405 if (defined $file_name && !defined $ftype) {
7406 die_error
(500, "Unknown type of object");
7409 if (defined $file_name) {
7410 %co = parse_commit
($base)
7411 or die_error
(404, "Unknown commit object");
7415 my $paging_nav = format_paging_nav
($fmt_name, $page, $#commitlist >= 100);
7417 if ($#commitlist >= 100) {
7419 $cgi->a({-href
=> href
(-replay
=>1, page
=>$page+1),
7420 -accesskey
=> "n", -title
=> "Alt-n"}, "next");
7422 my $patch_max = gitweb_get_feature
('patches');
7423 if ($patch_max && !defined $file_name) {
7424 if ($patch_max < 0 || @commitlist <= $patch_max) {
7425 $paging_nav .= " ⋅ " .
7426 $cgi->a({-href
=> href
(action
=>"patches", -replay
=>1)},
7432 git_print_page_nav
($fmt_name,'', $hash,$hash,$hash, $paging_nav);
7433 if (defined $file_name) {
7434 git_print_header_div
('commit', esc_html
($co{'title'}), $base);
7436 git_print_header_div
('summary', $project)
7438 git_print_page_path
($file_name, $ftype, $hash_base)
7439 if (defined $file_name);
7441 $body_subr->(\
@commitlist, 0, 99, $refs, $next_link,
7442 $file_name, $file_hash, $ftype);
7448 git_log_generic
('log', \
&git_log_body
,
7449 $hash, $hash_parent);
7453 $hash ||= $hash_base || "HEAD";
7454 my %co = parse_commit
($hash)
7455 or die_error
(404, "Unknown commit object");
7457 my $parent = $co{'parent'};
7458 my $parents = $co{'parents'}; # listref
7460 # we need to prepare $formats_nav before any parameter munging
7462 if (!defined $parent) {
7464 $formats_nav .= '(initial)';
7465 } elsif (@$parents == 1) {
7466 # single parent commit
7469 $cgi->a({-href
=> href
(action
=>"commit",
7471 esc_html
(substr($parent, 0, 7))) .
7478 $cgi->a({-href
=> href
(action
=>"commit",
7480 esc_html
(substr($_, 0, 7)));
7484 if (gitweb_check_feature
('patches') && @$parents <= 1) {
7485 $formats_nav .= " | " .
7486 $cgi->a({-href
=> href
(action
=>"patch", -replay
=>1)},
7490 if (!defined $parent) {
7494 open my $fd, "-|", git_cmd
(), "diff-tree", '-r', "--no-commit-id",
7496 (@$parents <= 1 ? $parent : '-c'),
7498 or die_error
(500, "Open git-diff-tree failed");
7499 @difftree = map { chomp; $_ } <$fd>;
7500 close $fd or die_error
(404, "Reading git-diff-tree failed");
7502 # non-textual hash id's can be cached
7504 if ($hash =~ m/^[0-9a-fA-F]{40}$/) {
7507 my $refs = git_get_references
();
7508 my $ref = format_ref_marker
($refs, $co{'id'});
7510 git_header_html
(undef, $expires);
7511 git_print_page_nav
('commit', '',
7512 $hash, $co{'tree'}, $hash,
7515 if (defined $co{'parent'}) {
7516 git_print_header_div
('commitdiff', esc_html
($co{'title'}) . $ref, $hash);
7518 git_print_header_div
('tree', esc_html
($co{'title'}) . $ref, $co{'tree'}, $hash);
7520 print "<div class=\"title_text\">\n" .
7521 "<table class=\"object_header\">\n";
7522 git_print_authorship_rows
(\
%co);
7523 print "<tr><td>commit</td><td class=\"sha1\">$co{'id'}</td></tr>\n";
7526 "<td class=\"sha1\">" .
7527 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$co{'tree'}, hash_base
=>$hash),
7528 class => "list"}, $co{'tree'}) .
7530 "<td class=\"link\">" .
7531 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$co{'tree'}, hash_base
=>$hash)},
7533 my $snapshot_links = format_snapshot_links
($hash);
7534 if (defined $snapshot_links) {
7535 print " | " . $snapshot_links;
7540 foreach my $par (@$parents) {
7543 "<td class=\"sha1\">" .
7544 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$par),
7545 class => "list"}, $par) .
7547 "<td class=\"link\">" .
7548 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$par)}, "commit") .
7550 $cgi->a({-href
=> href
(action
=>"commitdiff", hash
=>$hash, hash_parent
=>$par)}, "diff") .
7557 print "<div class=\"page_body\">\n";
7558 git_print_log
($co{'comment'});
7561 git_difftree_body
(\
@difftree, $hash, @$parents);
7567 # object is defined by:
7568 # - hash or hash_base alone
7569 # - hash_base and file_name
7572 # - hash or hash_base alone
7573 if ($hash || ($hash_base && !defined $file_name)) {
7574 my $object_id = $hash || $hash_base;
7576 open my $fd, "-|", quote_command
(
7577 git_cmd
(), 'cat-file', '-t', $object_id) . ' 2> /dev/null'
7578 or die_error
(404, "Object does not exist");
7580 defined $type && chomp $type;
7582 or die_error
(404, "Object does not exist");
7584 # - hash_base and file_name
7585 } elsif ($hash_base && defined $file_name) {
7586 $file_name =~ s
,/+$,,;
7588 system(git_cmd
(), "cat-file", '-e', $hash_base) == 0
7589 or die_error
(404, "Base object does not exist");
7591 # here errors should not happen
7592 open my $fd, "-|", git_cmd
(), "ls-tree", $hash_base, "--", $file_name
7593 or die_error
(500, "Open git-ls-tree failed");
7597 #'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'
7598 unless ($line && $line =~ m/^([0-9]+) (.+) ([0-9a-fA-F]{40})\t/) {
7599 die_error
(404, "File or directory for given base does not exist");
7604 die_error
(400, "Not enough information to find object");
7607 print $cgi->redirect(-uri
=> href
(action
=>$type, -full
=>1,
7608 hash
=>$hash, hash_base
=>$hash_base,
7609 file_name
=>$file_name),
7610 -status
=> '302 Found');
7614 my $format = shift || 'html';
7615 my $diff_style = $input_params{'diff_style'} || 'inline';
7622 # preparing $fd and %diffinfo for git_patchset_body
7624 if (defined $hash_base && defined $hash_parent_base) {
7625 if (defined $file_name) {
7627 open $fd, "-|", git_cmd
(), "diff-tree", '-r', @diff_opts,
7628 $hash_parent_base, $hash_base,
7629 "--", (defined $file_parent ? $file_parent : ()), $file_name
7630 or die_error
(500, "Open git-diff-tree failed");
7631 @difftree = map { chomp; $_ } <$fd>;
7633 or die_error
(404, "Reading git-diff-tree failed");
7635 or die_error
(404, "Blob diff not found");
7637 } elsif (defined $hash &&
7638 $hash =~ /[0-9a-fA-F]{40}/) {
7639 # try to find filename from $hash
7641 # read filtered raw output
7642 open $fd, "-|", git_cmd
(), "diff-tree", '-r', @diff_opts,
7643 $hash_parent_base, $hash_base, "--"
7644 or die_error
(500, "Open git-diff-tree failed");
7646 # ':100644 100644 03b21826... 3b93d5e7... M ls-files.c'
7648 grep { /^:[0-7]{6} [0-7]{6} [0-9a-fA-F]{40} $hash/ }
7649 map { chomp; $_ } <$fd>;
7651 or die_error
(404, "Reading git-diff-tree failed");
7653 or die_error
(404, "Blob diff not found");
7656 die_error
(400, "Missing one of the blob diff parameters");
7659 if (@difftree > 1) {
7660 die_error
(400, "Ambiguous blob diff specification");
7663 %diffinfo = parse_difftree_raw_line
($difftree[0]);
7664 $file_parent ||= $diffinfo{'from_file'} || $file_name;
7665 $file_name ||= $diffinfo{'to_file'};
7667 $hash_parent ||= $diffinfo{'from_id'};
7668 $hash ||= $diffinfo{'to_id'};
7670 # non-textual hash id's can be cached
7671 if ($hash_base =~ m/^[0-9a-fA-F]{40}$/ &&
7672 $hash_parent_base =~ m/^[0-9a-fA-F]{40}$/) {
7677 open $fd, "-|", git_cmd
(), "diff-tree", '-r', @diff_opts,
7678 '-p', ($format eq 'html' ? "--full-index" : ()),
7679 $hash_parent_base, $hash_base,
7680 "--", (defined $file_parent ? $file_parent : ()), $file_name
7681 or die_error
(500, "Open git-diff-tree failed");
7684 # old/legacy style URI -- not generated anymore since 1.4.3.
7686 die_error
('404 Not Found', "Missing one of the blob diff parameters")
7690 if ($format eq 'html') {
7692 $cgi->a({-href
=> href
(action
=>"blobdiff_plain", -replay
=>1)},
7694 $formats_nav .= diff_style_nav
($diff_style);
7695 git_header_html
(undef, $expires);
7696 if (defined $hash_base && (my %co = parse_commit
($hash_base))) {
7697 git_print_page_nav
('','', $hash_base,$co{'tree'},$hash_base, $formats_nav);
7698 git_print_header_div
('commit', esc_html
($co{'title'}), $hash_base);
7700 print "<div class=\"page_nav\"><br/>$formats_nav<br/></div>\n";
7701 print "<div class=\"title\">".esc_html
("$hash vs $hash_parent")."</div>\n";
7703 if (defined $file_name) {
7704 git_print_page_path
($file_name, "blob", $hash_base);
7706 print "<div class=\"page_path\"></div>\n";
7709 } elsif ($format eq 'plain') {
7711 -type
=> 'text/plain',
7712 -charset
=> 'utf-8',
7713 -expires
=> $expires,
7714 -content_disposition
=> 'inline; filename="' . "$file_name" . '.patch"');
7716 print "X-Git-Url: " . $cgi->self_url() . "\n\n";
7719 die_error
(400, "Unknown blobdiff format");
7723 if ($format eq 'html') {
7724 print "<div class=\"page_body\">\n";
7726 git_patchset_body
($fd, $diff_style,
7727 [ \
%diffinfo ], $hash_base, $hash_parent_base);
7730 print "</div>\n"; # class="page_body"
7734 while (my $line = <$fd>) {
7735 $line =~ s!a/($hash|$hash_parent)!'a/'.esc_path($diffinfo{'from_file'})!eg;
7736 $line =~ s!b/($hash|$hash_parent)!'b/'.esc_path($diffinfo{'to_file'})!eg;
7740 last if $line =~ m!^\+\+\+!;
7748 sub git_blobdiff_plain
{
7749 git_blobdiff
('plain');
7752 # assumes that it is added as later part of already existing navigation,
7753 # so it returns "| foo | bar" rather than just "foo | bar"
7754 sub diff_style_nav
{
7755 my ($diff_style, $is_combined) = @_;
7756 $diff_style ||= 'inline';
7758 return "" if ($is_combined);
7760 my @styles = (inline
=> 'inline', 'sidebyside' => 'side by side');
7761 my %styles = @styles;
7763 @styles[ map { $_ * 2 } 0..$#styles/2 ];
7768 $_ eq $diff_style ? $styles{$_} :
7769 $cgi->a({-href
=> href
(-replay
=>1, diff_style
=> $_)}, $styles{$_})
7773 sub git_commitdiff
{
7775 my $format = $params{-format
} || 'html';
7776 my $diff_style = $input_params{'diff_style'} || 'inline';
7778 my ($patch_max) = gitweb_get_feature
('patches');
7779 if ($format eq 'patch') {
7780 die_error
(403, "Patch view not allowed") unless $patch_max;
7783 $hash ||= $hash_base || "HEAD";
7784 my %co = parse_commit
($hash)
7785 or die_error
(404, "Unknown commit object");
7787 # choose format for commitdiff for merge
7788 if (! defined $hash_parent && @{$co{'parents'}} > 1) {
7789 $hash_parent = '--cc';
7791 # we need to prepare $formats_nav before almost any parameter munging
7793 if ($format eq 'html') {
7795 $cgi->a({-href
=> href
(action
=>"commitdiff_plain", -replay
=>1)},
7797 if ($patch_max && @{$co{'parents'}} <= 1) {
7798 $formats_nav .= " | " .
7799 $cgi->a({-href
=> href
(action
=>"patch", -replay
=>1)},
7802 $formats_nav .= diff_style_nav
($diff_style, @{$co{'parents'}} > 1);
7804 if (defined $hash_parent &&
7805 $hash_parent ne '-c' && $hash_parent ne '--cc') {
7806 # commitdiff with two commits given
7807 my $hash_parent_short = $hash_parent;
7808 if ($hash_parent =~ m/^[0-9a-fA-F]{40}$/) {
7809 $hash_parent_short = substr($hash_parent, 0, 7);
7813 for (my $i = 0; $i < @{$co{'parents'}}; $i++) {
7814 if ($co{'parents'}[$i] eq $hash_parent) {
7815 $formats_nav .= ' parent ' . ($i+1);
7819 $formats_nav .= ': ' .
7820 $cgi->a({-href
=> href
(-replay
=>1,
7821 hash
=>$hash_parent, hash_base
=>undef)},
7822 esc_html
($hash_parent_short)) .
7824 } elsif (!$co{'parent'}) {
7826 $formats_nav .= ' (initial)';
7827 } elsif (scalar @{$co{'parents'}} == 1) {
7828 # single parent commit
7831 $cgi->a({-href
=> href
(-replay
=>1,
7832 hash
=>$co{'parent'}, hash_base
=>undef)},
7833 esc_html
(substr($co{'parent'}, 0, 7))) .
7837 if ($hash_parent eq '--cc') {
7838 $formats_nav .= ' | ' .
7839 $cgi->a({-href
=> href
(-replay
=>1,
7840 hash
=>$hash, hash_parent
=>'-c')},
7842 } else { # $hash_parent eq '-c'
7843 $formats_nav .= ' | ' .
7844 $cgi->a({-href
=> href
(-replay
=>1,
7845 hash
=>$hash, hash_parent
=>'--cc')},
7851 $cgi->a({-href
=> href
(-replay
=>1,
7852 hash
=>$_, hash_base
=>undef)},
7853 esc_html
(substr($_, 0, 7)));
7854 } @{$co{'parents'}} ) .
7859 my $hash_parent_param = $hash_parent;
7860 if (!defined $hash_parent_param) {
7861 # --cc for multiple parents, --root for parentless
7862 $hash_parent_param =
7863 @{$co{'parents'}} > 1 ? '--cc' : $co{'parent'} || '--root';
7869 if ($format eq 'html') {
7870 open $fd, "-|", git_cmd
(), "diff-tree", '-r', @diff_opts,
7871 "--no-commit-id", "--patch-with-raw", "--full-index",
7872 $hash_parent_param, $hash, "--"
7873 or die_error
(500, "Open git-diff-tree failed");
7875 while (my $line = <$fd>) {
7877 # empty line ends raw part of diff-tree output
7879 push @difftree, scalar parse_difftree_raw_line
($line);
7882 } elsif ($format eq 'plain') {
7883 open $fd, "-|", git_cmd
(), "diff-tree", '-r', @diff_opts,
7884 '-p', $hash_parent_param, $hash, "--"
7885 or die_error
(500, "Open git-diff-tree failed");
7886 } elsif ($format eq 'patch') {
7887 # For commit ranges, we limit the output to the number of
7888 # patches specified in the 'patches' feature.
7889 # For single commits, we limit the output to a single patch,
7890 # diverging from the git-format-patch default.
7891 my @commit_spec = ();
7893 if ($patch_max > 0) {
7894 push @commit_spec, "-$patch_max";
7896 push @commit_spec, '-n', "$hash_parent..$hash";
7898 if ($params{-single
}) {
7899 push @commit_spec, '-1';
7901 if ($patch_max > 0) {
7902 push @commit_spec, "-$patch_max";
7904 push @commit_spec, "-n";
7906 push @commit_spec, '--root', $hash;
7908 open $fd, "-|", git_cmd
(), "format-patch", @diff_opts,
7909 '--encoding=utf8', '--stdout', @commit_spec
7910 or die_error
(500, "Open git-format-patch failed");
7912 die_error
(400, "Unknown commitdiff format");
7915 # non-textual hash id's can be cached
7917 if ($hash =~ m/^[0-9a-fA-F]{40}$/) {
7921 # write commit message
7922 if ($format eq 'html') {
7923 my $refs = git_get_references
();
7924 my $ref = format_ref_marker
($refs, $co{'id'});
7926 git_header_html
(undef, $expires);
7927 git_print_page_nav
('commitdiff','', $hash,$co{'tree'},$hash, $formats_nav);
7928 git_print_header_div
('commit', esc_html
($co{'title'}) . $ref, $hash);
7929 print "<div class=\"title_text\">\n" .
7930 "<table class=\"object_header\">\n";
7931 git_print_authorship_rows
(\
%co);
7934 print "<div class=\"page_body\">\n";
7935 if (@{$co{'comment'}} > 1) {
7936 print "<div class=\"log\">\n";
7937 git_print_log
($co{'comment'}, -final_empty_line
=> 1, -remove_title
=> 1);
7938 print "</div>\n"; # class="log"
7941 } elsif ($format eq 'plain') {
7942 my $refs = git_get_references
("tags");
7943 my $tagname = git_get_rev_name_tags
($hash);
7944 my $filename = basename
($project) . "-$hash.patch";
7947 -type
=> 'text/plain',
7948 -charset
=> 'utf-8',
7949 -expires
=> $expires,
7950 -content_disposition
=> 'inline; filename="' . "$filename" . '"');
7951 my %ad = parse_date
($co{'author_epoch'}, $co{'author_tz'});
7952 print "From: " . to_utf8
($co{'author'}) . "\n";
7953 print "Date: $ad{'rfc2822'} ($ad{'tz_local'})\n";
7954 print "Subject: " . to_utf8
($co{'title'}) . "\n";
7956 print "X-Git-Tag: $tagname\n" if $tagname;
7957 print "X-Git-Url: " . $cgi->self_url() . "\n\n";
7959 foreach my $line (@{$co{'comment'}}) {
7960 print to_utf8
($line) . "\n";
7963 } elsif ($format eq 'patch') {
7964 my $filename = basename
($project) . "-$hash.patch";
7967 -type
=> 'text/plain',
7968 -charset
=> 'utf-8',
7969 -expires
=> $expires,
7970 -content_disposition
=> 'inline; filename="' . "$filename" . '"');
7974 if ($format eq 'html') {
7975 my $use_parents = !defined $hash_parent ||
7976 $hash_parent eq '-c' || $hash_parent eq '--cc';
7977 git_difftree_body
(\
@difftree, $hash,
7978 $use_parents ? @{$co{'parents'}} : $hash_parent);
7981 git_patchset_body
($fd, $diff_style,
7983 $use_parents ? @{$co{'parents'}} : $hash_parent);
7985 print "</div>\n"; # class="page_body"
7988 } elsif ($format eq 'plain') {
7992 or print "Reading git-diff-tree failed\n";
7993 } elsif ($format eq 'patch') {
7997 or print "Reading git-format-patch failed\n";
8001 sub git_commitdiff_plain
{
8002 git_commitdiff
(-format
=> 'plain');
8005 # format-patch-style patches
8007 git_commitdiff
(-format
=> 'patch', -single
=> 1);
8011 git_commitdiff
(-format
=> 'patch');
8015 git_log_generic
('history', \
&git_history_body
,
8016 $hash_base, $hash_parent_base,
8021 $searchtype ||= 'commit';
8023 # check if appropriate features are enabled
8024 gitweb_check_feature
('search')
8025 or die_error
(403, "Search is disabled");
8026 if ($searchtype eq 'pickaxe') {
8027 # pickaxe may take all resources of your box and run for several minutes
8028 # with every query - so decide by yourself how public you make this feature
8029 gitweb_check_feature
('pickaxe')
8030 or die_error
(403, "Pickaxe search is disabled");
8032 if ($searchtype eq 'grep') {
8033 # grep search might be potentially CPU-intensive, too
8034 gitweb_check_feature
('grep')
8035 or die_error
(403, "Grep search is disabled");
8038 if (!defined $searchtext) {
8039 die_error
(400, "Text field is empty");
8041 if (!defined $hash) {
8042 $hash = git_get_head_hash
($project);
8044 my %co = parse_commit
($hash);
8046 die_error
(404, "Unknown commit object");
8048 if (!defined $page) {
8052 if ($searchtype eq 'commit' ||
8053 $searchtype eq 'author' ||
8054 $searchtype eq 'committer') {
8055 git_search_message
(%co);
8056 } elsif ($searchtype eq 'pickaxe') {
8057 git_search_changes
(%co);
8058 } elsif ($searchtype eq 'grep') {
8059 git_search_files
(%co);
8061 die_error
(400, "Unknown search type");
8065 sub git_search_help
{
8067 git_print_page_nav
('','', $hash,$hash,$hash);
8069 <p><strong>Pattern</strong> is by default a normal string that is matched precisely (but without
8070 regard to case, except in the case of pickaxe). However, when you check the <em>re</em> checkbox,
8071 the pattern entered is recognized as the POSIX extended
8072 <a href="http://en.wikipedia.org/wiki/Regular_expression">regular expression</a> (also case
8075 <dt><b>commit</b></dt>
8076 <dd>The commit messages and authorship information will be scanned for the given pattern.</dd>
8078 my $have_grep = gitweb_check_feature
('grep');
8081 <dt><b>grep</b></dt>
8082 <dd>All files in the currently selected tree (HEAD unless you are explicitly browsing
8083 a different one) are searched for the given pattern. On large trees, this search can take
8084 a while and put some strain on the server, so please use it with some consideration. Note that
8085 due to git-grep peculiarity, currently if regexp mode is turned off, the matches are
8086 case-sensitive.</dd>
8090 <dt><b>author</b></dt>
8091 <dd>Name and e-mail of the change author and date of birth of the patch will be scanned for the given pattern.</dd>
8092 <dt><b>committer</b></dt>
8093 <dd>Name and e-mail of the committer and date of commit will be scanned for the given pattern.</dd>
8095 my $have_pickaxe = gitweb_check_feature
('pickaxe');
8096 if ($have_pickaxe) {
8098 <dt><b>pickaxe</b></dt>
8099 <dd>All commits that caused the string to appear or disappear from any file (changes that
8100 added, removed or "modified" the string) will be listed. This search can take a while and
8101 takes a lot of strain on the server, so please use it wisely. Note that since you may be
8102 interested even in changes just changing the case as well, this search is case sensitive.</dd>
8110 git_log_generic
('shortlog', \
&git_shortlog_body
,
8111 $hash, $hash_parent);
8114 ## ......................................................................
8115 ## feeds (RSS, Atom; OPML)
8118 my $format = shift || 'atom';
8119 my $have_blame = gitweb_check_feature
('blame');
8121 # Atom: http://www.atomenabled.org/developers/syndication/
8122 # RSS: http://www.notestips.com/80256B3A007F2692/1/NAMO5P9UPQ
8123 if ($format ne 'rss' && $format ne 'atom') {
8124 die_error
(400, "Unknown web feed format");
8127 # log/feed of current (HEAD) branch, log of given branch, history of file/directory
8128 my $head = $hash || 'HEAD';
8129 my @commitlist = parse_commits
($head, 150, 0, $file_name);
8133 my $content_type = "application/$format+xml";
8134 if (defined $cgi->http('HTTP_ACCEPT') &&
8135 $cgi->Accept('text/xml') > $cgi->Accept($content_type)) {
8136 # browser (feed reader) prefers text/xml
8137 $content_type = 'text/xml';
8139 if (defined($commitlist[0])) {
8140 %latest_commit = %{$commitlist[0]};
8141 my $latest_epoch = $latest_commit{'committer_epoch'};
8142 exit_if_unmodified_since
($latest_epoch);
8143 %latest_date = parse_date
($latest_epoch, $latest_commit{'committer_tz'});
8146 -type
=> $content_type,
8147 -charset
=> 'utf-8',
8148 %latest_date ? (-last_modified
=> $latest_date{'rfc2822'}) : (),
8149 -status
=> '200 OK');
8151 # Optimization: skip generating the body if client asks only
8152 # for Last-Modified date.
8153 return if ($cgi->request_method() eq 'HEAD');
8156 my $title = "$site_name - $project/$action";
8157 my $feed_type = 'log';
8158 if (defined $hash) {
8159 $title .= " - '$hash'";
8160 $feed_type = 'branch log';
8161 if (defined $file_name) {
8162 $title .= " :: $file_name";
8163 $feed_type = 'history';
8165 } elsif (defined $file_name) {
8166 $title .= " - $file_name";
8167 $feed_type = 'history';
8169 $title .= " $feed_type";
8170 $title = esc_html
($title);
8171 my $descr = git_get_project_description
($project);
8172 if (defined $descr) {
8173 $descr = esc_html
($descr);
8175 $descr = "$project " .
8176 ($format eq 'rss' ? 'RSS' : 'Atom') .
8179 my $owner = git_get_project_owner
($project);
8180 $owner = esc_html
($owner);
8184 if (defined $file_name) {
8185 $alt_url = href
(-full
=>1, action
=>"history", hash
=>$hash, file_name
=>$file_name);
8186 } elsif (defined $hash) {
8187 $alt_url = href
(-full
=>1, action
=>"log", hash
=>$hash);
8189 $alt_url = href
(-full
=>1, action
=>"summary");
8191 print qq
!<?xml version
="1.0" encoding
="utf-8"?>\n!;
8192 if ($format eq 'rss') {
8194 <rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/">
8197 print "<title>$title</title>\n" .
8198 "<link>$alt_url</link>\n" .
8199 "<description>$descr</description>\n" .
8200 "<language>en</language>\n" .
8201 # project owner is responsible for 'editorial' content
8202 "<managingEditor>$owner</managingEditor>\n";
8203 if (defined $logo || defined $favicon) {
8204 # prefer the logo to the favicon, since RSS
8205 # doesn't allow both
8206 my $img = esc_url
($logo || $favicon);
8208 "<url>$img</url>\n" .
8209 "<title>$title</title>\n" .
8210 "<link>$alt_url</link>\n" .
8214 print "<pubDate>$latest_date{'rfc2822'}</pubDate>\n";
8215 print "<lastBuildDate>$latest_date{'rfc2822'}</lastBuildDate>\n";
8217 print "<generator>gitweb v.$version/$git_version</generator>\n";
8218 } elsif ($format eq 'atom') {
8220 <feed xmlns="http://www.w3.org/2005/Atom">
8222 print "<title>$title</title>\n" .
8223 "<subtitle>$descr</subtitle>\n" .
8224 '<link rel="alternate" type="text/html" href="' .
8225 $alt_url . '" />' . "\n" .
8226 '<link rel="self" type="' . $content_type . '" href="' .
8227 $cgi->self_url() . '" />' . "\n" .
8228 "<id>" . href
(-full
=>1) . "</id>\n" .
8229 # use project owner for feed author
8230 "<author><name>$owner</name></author>\n";
8231 if (defined $favicon) {
8232 print "<icon>" . esc_url
($favicon) . "</icon>\n";
8234 if (defined $logo) {
8235 # not twice as wide as tall: 72 x 27 pixels
8236 print "<logo>" . esc_url
($logo) . "</logo>\n";
8238 if (! %latest_date) {
8239 # dummy date to keep the feed valid until commits trickle in:
8240 print "<updated>1970-01-01T00:00:00Z</updated>\n";
8242 print "<updated>$latest_date{'iso-8601'}</updated>\n";
8244 print "<generator version='$version/$git_version'>gitweb</generator>\n";
8248 for (my $i = 0; $i <= $#commitlist; $i++) {
8249 my %co = %{$commitlist[$i]};
8250 my $commit = $co{'id'};
8251 # we read 150, we always show 30 and the ones more recent than 48 hours
8252 if (($i >= 20) && ((time - $co{'author_epoch'}) > 48*60*60)) {
8255 my %cd = parse_date
($co{'author_epoch'}, $co{'author_tz'});
8257 # get list of changed files
8258 open my $fd, "-|", git_cmd
(), "diff-tree", '-r', @diff_opts,
8259 $co{'parent'} || "--root",
8260 $co{'id'}, "--", (defined $file_name ? $file_name : ())
8262 my @difftree = map { chomp; $_ } <$fd>;
8266 # print element (entry, item)
8267 my $co_url = href
(-full
=>1, action
=>"commitdiff", hash
=>$commit);
8268 if ($format eq 'rss') {
8270 "<title>" . esc_html
($co{'title'}) . "</title>\n" .
8271 "<author>" . esc_html
($co{'author'}) . "</author>\n" .
8272 "<pubDate>$cd{'rfc2822'}</pubDate>\n" .
8273 "<guid isPermaLink=\"true\">$co_url</guid>\n" .
8274 "<link>$co_url</link>\n" .
8275 "<description>" . esc_html
($co{'title'}) . "</description>\n" .
8276 "<content:encoded>" .
8278 } elsif ($format eq 'atom') {
8280 "<title type=\"html\">" . esc_html
($co{'title'}) . "</title>\n" .
8281 "<updated>$cd{'iso-8601'}</updated>\n" .
8283 " <name>" . esc_html
($co{'author_name'}) . "</name>\n";
8284 if ($co{'author_email'}) {
8285 print " <email>" . esc_html
($co{'author_email'}) . "</email>\n";
8287 print "</author>\n" .
8288 # use committer for contributor
8290 " <name>" . esc_html
($co{'committer_name'}) . "</name>\n";
8291 if ($co{'committer_email'}) {
8292 print " <email>" . esc_html
($co{'committer_email'}) . "</email>\n";
8294 print "</contributor>\n" .
8295 "<published>$cd{'iso-8601'}</published>\n" .
8296 "<link rel=\"alternate\" type=\"text/html\" href=\"$co_url\" />\n" .
8297 "<id>$co_url</id>\n" .
8298 "<content type=\"xhtml\" xml:base=\"" . esc_url
($my_url) . "\">\n" .
8299 "<div xmlns=\"http://www.w3.org/1999/xhtml\">\n";
8301 my $comment = $co{'comment'};
8303 foreach my $line (@$comment) {
8304 $line = esc_html
($line);
8307 print "</pre><ul>\n";
8308 foreach my $difftree_line (@difftree) {
8309 my %difftree = parse_difftree_raw_line
($difftree_line);
8310 next if !$difftree{'from_id'};
8312 my $file = $difftree{'file'} || $difftree{'to_file'};
8316 $cgi->a({-href
=> href
(-full
=>1, action
=>"blobdiff",
8317 hash
=>$difftree{'to_id'}, hash_parent
=>$difftree{'from_id'},
8318 hash_base
=>$co{'id'}, hash_parent_base
=>$co{'parent'},
8319 file_name
=>$file, file_parent
=>$difftree{'from_file'}),
8320 -title
=> "diff"}, 'D');
8322 print $cgi->a({-href
=> href
(-full
=>1, action
=>"blame",
8323 file_name
=>$file, hash_base
=>$commit),
8324 -title
=> "blame"}, 'B');
8326 # if this is not a feed of a file history
8327 if (!defined $file_name || $file_name ne $file) {
8328 print $cgi->a({-href
=> href
(-full
=>1, action
=>"history",
8329 file_name
=>$file, hash
=>$commit),
8330 -title
=> "history"}, 'H');
8332 $file = esc_path
($file);
8336 if ($format eq 'rss') {
8337 print "</ul>]]>\n" .
8338 "</content:encoded>\n" .
8340 } elsif ($format eq 'atom') {
8341 print "</ul>\n</div>\n" .
8348 if ($format eq 'rss') {
8349 print "</channel>\n</rss>\n";
8350 } elsif ($format eq 'atom') {
8364 my @list = git_get_projects_list
($project_filter, $strict_export);
8366 die_error
(404, "No projects found");
8370 -type
=> 'text/xml',
8371 -charset
=> 'utf-8',
8372 -content_disposition
=> 'inline; filename="opml.xml"');
8374 my $title = esc_html
($site_name);
8375 my $filter = " within subdirectory ";
8376 if (defined $project_filter) {
8377 $filter .= esc_html
($project_filter);
8382 <?xml version="1.0" encoding="utf-8"?>
8383 <opml version="1.0">
8385 <title>$title OPML Export$filter</title>
8388 <outline text="git RSS feeds">
8391 foreach my $pr (@list) {
8393 my $head = git_get_head_hash
($proj{'path'});
8394 if (!defined $head) {
8397 $git_dir = "$projectroot/$proj{'path'}";
8398 my %co = parse_commit
($head);
8403 my $path = esc_html
(chop_str
($proj{'path'}, 25, 5));
8404 my $rss = href
('project' => $proj{'path'}, 'action' => 'rss', -full
=> 1);
8405 my $html = href
('project' => $proj{'path'}, 'action' => 'summary', -full
=> 1);
8406 print "<outline type=\"rss\" text=\"$path\" title=\"$path\" xmlUrl=\"$rss\" htmlUrl=\"$html\"/>\n";