Merge commit 'refs/top-bases/t/summary/bundles' into t/summary/bundles
[git/gitweb.git] / gitweb / gitweb.perl
blob917696c07849877996e58f96c76eb652837bb4f8
1 #!/usr/bin/perl
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
10 use 5.008;
11 use strict;
12 use warnings;
13 use CGI qw(:standard :escapeHTML -nosticky);
14 use CGI::Util qw(unescape);
15 use CGI::Carp qw(fatalsToBrowser set_message);
16 use Encode;
17 use Fcntl ':mode';
18 use File::Find qw();
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;
30 BEGIN {
31 CGI->compile() if $ENV{'MOD_PERL'};
34 our $version = "++GIT_VERSION++";
36 our ($my_url, $my_uri, $base_url, $path_info, $home_link);
37 sub evaluate_uri {
38 our $cgi;
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
50 # later on.
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
56 # as base URL.
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"});
60 if ($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
63 # strip $path_info.
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++";
109 # URI of stylesheets
110 our @stylesheets = ("++GITWEB_CSS++");
111 # URI of a single stylesheet, which can be overridden in GITWEB_CONFIG.
112 our $stylesheet = undef;
113 # URI of GIT logo (72x27 size)
114 our $logo = "++GITWEB_LOGO++";
115 # URI of GIT favicon, assumed to be image/png type
116 our $favicon = "++GITWEB_FAVICON++";
117 # URI of gitweb.js (JavaScript code for gitweb)
118 our $javascript = "++GITWEB_JS++";
120 # URI and label (title) of GIT logo link
121 #our $logo_url = "http://www.kernel.org/pub/software/scm/git/docs/";
122 #our $logo_label = "git documentation";
123 our $logo_url = "http://git-scm.com/";
124 our $logo_label = "git homepage";
126 # source of projects list
127 our $projects_list = "++GITWEB_LIST++";
129 # the width (in characters) of the projects list "Description" column
130 our $projects_list_description_width = 25;
132 # group projects by category on the projects list
133 # (enabled if this variable evaluates to true)
134 our $projects_list_group_categories = 0;
136 # default category if none specified
137 # (leave the empty string for no category)
138 our $project_list_default_category = "";
140 # default order of projects list
141 # valid values are none, project, descr, owner, and age
142 our $default_projects_order = "project";
144 # show repository only if this file exists
145 # (only effective if this variable evaluates to true)
146 our $export_ok = "++GITWEB_EXPORT_OK++";
148 # don't generate age column on the projects list page
149 our $omit_age_column = 0;
151 # don't generate information about owners of repositories
152 our $omit_owner=0;
154 # show repository only if this subroutine returns true
155 # when given the path to the project, for example:
156 # sub { return -e "$_[0]/git-daemon-export-ok"; }
157 our $export_auth_hook = undef;
159 # only allow viewing of repositories also shown on the overview page
160 our $strict_export = "++GITWEB_STRICT_EXPORT++";
162 # base URL for bundle info link shown on summary page, but only if
163 # this config item is defined AND a 'bundles' subdirectory exists
164 # in the project's repository.
165 # i.e. full URL is "git_base_bundles_url/$project/bundles"
166 our $git_base_bundles_url = undef;
168 # list of git base URLs used for URL to where fetch project from,
169 # i.e. full URL is "$git_base_url/$project"
170 our @git_base_url_list = grep { $_ ne '' } ("++GITWEB_BASE_URL++");
172 # default blob_plain mimetype and default charset for text/plain blob
173 our $default_blob_plain_mimetype = 'text/plain';
174 our $default_text_plain_charset = undef;
176 # file to use for guessing MIME types before trying /etc/mime.types
177 # (relative to the current git repository)
178 our $mimetypes_file = undef;
180 # assume this charset if line contains non-UTF-8 characters;
181 # it should be valid encoding (see Encoding::Supported(3pm) for list),
182 # for which encoding all byte sequences are valid, for example
183 # 'iso-8859-1' aka 'latin1' (it is decoded without checking, so it
184 # could be even 'utf-8' for the old behavior)
185 our $fallback_encoding = 'latin1';
187 # rename detection options for git-diff and git-diff-tree
188 # - default is '-M', with the cost proportional to
189 # (number of removed files) * (number of new files).
190 # - more costly is '-C' (which implies '-M'), with the cost proportional to
191 # (number of changed files + number of removed files) * (number of new files)
192 # - even more costly is '-C', '--find-copies-harder' with cost
193 # (number of files in the original tree) * (number of new files)
194 # - one might want to include '-B' option, e.g. '-B', '-M'
195 our @diff_opts = ('-M'); # taken from git_commit
197 # Disables features that would allow repository owners to inject script into
198 # the gitweb domain.
199 our $prevent_xss = 0;
201 # Path to the highlight executable to use (must be the one from
202 # http://www.andre-simon.de due to assumptions about parameters and output).
203 # Useful if highlight is not installed on your webserver's PATH.
204 # [Default: highlight]
205 our $highlight_bin = "++HIGHLIGHT_BIN++";
207 # information about snapshot formats that gitweb is capable of serving
208 our %known_snapshot_formats = (
209 # name => {
210 # 'display' => display name,
211 # 'type' => mime type,
212 # 'suffix' => filename suffix,
213 # 'format' => --format for git-archive,
214 # 'compressor' => [compressor command and arguments]
215 # (array reference, optional)
216 # 'disabled' => boolean (optional)}
218 'tgz' => {
219 'display' => 'tar.gz',
220 'type' => 'application/x-gzip',
221 'suffix' => '.tar.gz',
222 'format' => 'tar',
223 'compressor' => ['gzip', '-n']},
225 'tbz2' => {
226 'display' => 'tar.bz2',
227 'type' => 'application/x-bzip2',
228 'suffix' => '.tar.bz2',
229 'format' => 'tar',
230 'compressor' => ['bzip2']},
232 'txz' => {
233 'display' => 'tar.xz',
234 'type' => 'application/x-xz',
235 'suffix' => '.tar.xz',
236 'format' => 'tar',
237 'compressor' => ['xz'],
238 'disabled' => 1},
240 'zip' => {
241 'display' => 'zip',
242 'type' => 'application/x-zip',
243 'suffix' => '.zip',
244 'format' => 'zip'},
247 # Aliases so we understand old gitweb.snapshot values in repository
248 # configuration.
249 our %known_snapshot_format_aliases = (
250 'gzip' => 'tgz',
251 'bzip2' => 'tbz2',
252 'xz' => 'txz',
254 # backward compatibility: legacy gitweb config support
255 'x-gzip' => undef, 'gz' => undef,
256 'x-bzip2' => undef, 'bz2' => undef,
257 'x-zip' => undef, '' => undef,
260 # Pixel sizes for icons and avatars. If the default font sizes or lineheights
261 # are changed, it may be appropriate to change these values too via
262 # $GITWEB_CONFIG.
263 our %avatar_size = (
264 'default' => 16,
265 'double' => 32
268 # Used to set the maximum load that we will still respond to gitweb queries.
269 # If server load exceed this value then return "503 server busy" error.
270 # If gitweb cannot determined server load, it is taken to be 0.
271 # Leave it undefined (or set to 'undef') to turn off load checking.
272 our $maxload = 300;
274 # configuration for 'highlight' (http://www.andre-simon.de/)
275 # match by basename
276 our %highlight_basename = (
277 #'Program' => 'py',
278 #'Library' => 'py',
279 'SConstruct' => 'py', # SCons equivalent of Makefile
280 'Makefile' => 'make',
282 # match by extension
283 our %highlight_ext = (
284 # main extensions, defining name of syntax;
285 # see files in /usr/share/highlight/langDefs/ directory
286 (map { $_ => $_ } qw(py rb java css js tex bib xml awk bat ini spec tcl sql)),
287 # alternate extensions, see /etc/highlight/filetypes.conf
288 (map { $_ => 'c' } qw(c h)),
289 (map { $_ => 'sh' } qw(sh bash zsh ksh)),
290 (map { $_ => 'cpp' } qw(cpp cxx c++ cc)),
291 (map { $_ => 'php' } qw(php php3 php4 php5 phps)),
292 (map { $_ => 'pl' } qw(pl perl pm)), # perhaps also 'cgi'
293 (map { $_ => 'make'} qw(make mak mk)),
294 (map { $_ => 'xml' } qw(xml xhtml html htm)),
297 # You define site-wide feature defaults here; override them with
298 # $GITWEB_CONFIG as necessary.
299 our %feature = (
300 # feature => {
301 # 'sub' => feature-sub (subroutine),
302 # 'override' => allow-override (boolean),
303 # 'default' => [ default options...] (array reference)}
305 # if feature is overridable (it means that allow-override has true value),
306 # then feature-sub will be called with default options as parameters;
307 # return value of feature-sub indicates if to enable specified feature
309 # if there is no 'sub' key (no feature-sub), then feature cannot be
310 # overridden
312 # use gitweb_get_feature(<feature>) to retrieve the <feature> value
313 # (an array) or gitweb_check_feature(<feature>) to check if <feature>
314 # is enabled
316 # Enable the 'blame' blob view, showing the last commit that modified
317 # each line in the file. This can be very CPU-intensive.
319 # To enable system wide have in $GITWEB_CONFIG
320 # $feature{'blame'}{'default'} = [1];
321 # To have project specific config enable override in $GITWEB_CONFIG
322 # $feature{'blame'}{'override'} = 1;
323 # and in project config gitweb.blame = 0|1;
324 'blame' => {
325 'sub' => sub { feature_bool('blame', @_) },
326 'override' => 0,
327 'default' => [0]},
329 # Enable the 'snapshot' link, providing a compressed archive of any
330 # tree. This can potentially generate high traffic if you have large
331 # project.
333 # Value is a list of formats defined in %known_snapshot_formats that
334 # you wish to offer.
335 # To disable system wide have in $GITWEB_CONFIG
336 # $feature{'snapshot'}{'default'} = [];
337 # To have project specific config enable override in $GITWEB_CONFIG
338 # $feature{'snapshot'}{'override'} = 1;
339 # and in project config, a comma-separated list of formats or "none"
340 # to disable. Example: gitweb.snapshot = tbz2,zip;
341 'snapshot' => {
342 'sub' => \&feature_snapshot,
343 'override' => 0,
344 'default' => ['tgz']},
346 # Enable text search, which will list the commits which match author,
347 # committer or commit text to a given string. Enabled by default.
348 # Project specific override is not supported.
350 # Note that this controls all search features, which means that if
351 # it is disabled, then 'grep' and 'pickaxe' search would also be
352 # disabled.
353 'search' => {
354 'override' => 0,
355 'default' => [1]},
357 # Enable grep search, which will list the files in currently selected
358 # tree containing the given string. Enabled by default. This can be
359 # potentially CPU-intensive, of course.
360 # Note that you need to have 'search' feature enabled too.
362 # To enable system wide have in $GITWEB_CONFIG
363 # $feature{'grep'}{'default'} = [1];
364 # To have project specific config enable override in $GITWEB_CONFIG
365 # $feature{'grep'}{'override'} = 1;
366 # and in project config gitweb.grep = 0|1;
367 'grep' => {
368 'sub' => sub { feature_bool('grep', @_) },
369 'override' => 0,
370 'default' => [1]},
372 # Enable the pickaxe search, which will list the commits that modified
373 # a given string in a file. This can be practical and quite faster
374 # alternative to 'blame', but still potentially CPU-intensive.
375 # Note that you need to have 'search' feature enabled too.
377 # To enable system wide have in $GITWEB_CONFIG
378 # $feature{'pickaxe'}{'default'} = [1];
379 # To have project specific config enable override in $GITWEB_CONFIG
380 # $feature{'pickaxe'}{'override'} = 1;
381 # and in project config gitweb.pickaxe = 0|1;
382 'pickaxe' => {
383 'sub' => sub { feature_bool('pickaxe', @_) },
384 'override' => 0,
385 'default' => [1]},
387 # Enable showing size of blobs in a 'tree' view, in a separate
388 # column, similar to what 'ls -l' does. This cost a bit of IO.
390 # To disable system wide have in $GITWEB_CONFIG
391 # $feature{'show-sizes'}{'default'} = [0];
392 # To have project specific config enable override in $GITWEB_CONFIG
393 # $feature{'show-sizes'}{'override'} = 1;
394 # and in project config gitweb.showsizes = 0|1;
395 'show-sizes' => {
396 'sub' => sub { feature_bool('showsizes', @_) },
397 'override' => 0,
398 'default' => [1]},
400 # Make gitweb use an alternative format of the URLs which can be
401 # more readable and natural-looking: project name is embedded
402 # directly in the path and the query string contains other
403 # auxiliary information. All gitweb installations recognize
404 # URL in either format; this configures in which formats gitweb
405 # generates links.
407 # To enable system wide have in $GITWEB_CONFIG
408 # $feature{'pathinfo'}{'default'} = [1];
409 # Project specific override is not supported.
411 # Note that you will need to change the default location of CSS,
412 # favicon, logo and possibly other files to an absolute URL. Also,
413 # if gitweb.cgi serves as your indexfile, you will need to force
414 # $my_uri to contain the script name in your $GITWEB_CONFIG.
415 'pathinfo' => {
416 'override' => 0,
417 'default' => [0]},
419 # Make gitweb consider projects in project root subdirectories
420 # to be forks of existing projects. Given project $projname.git,
421 # projects matching $projname/*.git will not be shown in the main
422 # projects list, instead a '+' mark will be added to $projname
423 # there and a 'forks' view will be enabled for the project, listing
424 # all the forks. If project list is taken from a file, forks have
425 # to be listed after the main project.
427 # To enable system wide have in $GITWEB_CONFIG
428 # $feature{'forks'}{'default'} = [1];
429 # Project specific override is not supported.
430 'forks' => {
431 'override' => 0,
432 'default' => [0]},
434 # Insert custom links to the action bar of all project pages.
435 # This enables you mainly to link to third-party scripts integrating
436 # into gitweb; e.g. git-browser for graphical history representation
437 # or custom web-based repository administration interface.
439 # The 'default' value consists of a list of triplets in the form
440 # (label, link, position) where position is the label after which
441 # to insert the link and link is a format string where %n expands
442 # to the project name, %f to the project path within the filesystem,
443 # %h to the current hash (h gitweb parameter) and %b to the current
444 # hash base (hb gitweb parameter); %% expands to %.
446 # To enable system wide have in $GITWEB_CONFIG e.g.
447 # $feature{'actions'}{'default'} = [('graphiclog',
448 # '/git-browser/by-commit.html?r=%n', 'summary')];
449 # Project specific override is not supported.
450 'actions' => {
451 'override' => 0,
452 'default' => []},
454 # Allow gitweb scan project content tags of project repository,
455 # and display the popular Web 2.0-ish "tag cloud" near the projects
456 # list. Note that this is something COMPLETELY different from the
457 # normal Git tags.
459 # gitweb by itself can show existing tags, but it does not handle
460 # tagging itself; you need to do it externally, outside gitweb.
461 # The format is described in git_get_project_ctags() subroutine.
462 # You may want to install the HTML::TagCloud Perl module to get
463 # a pretty tag cloud instead of just a list of tags.
465 # To enable system wide have in $GITWEB_CONFIG
466 # $feature{'ctags'}{'default'} = [1];
467 # Project specific override is not supported.
469 # In the future whether ctags editing is enabled might depend
470 # on the value, but using 1 should always mean no editing of ctags.
471 'ctags' => {
472 'override' => 0,
473 'default' => [0]},
475 # The maximum number of patches in a patchset generated in patch
476 # view. Set this to 0 or undef to disable patch view, or to a
477 # negative number to remove any limit.
479 # To disable system wide have in $GITWEB_CONFIG
480 # $feature{'patches'}{'default'} = [0];
481 # To have project specific config enable override in $GITWEB_CONFIG
482 # $feature{'patches'}{'override'} = 1;
483 # and in project config gitweb.patches = 0|n;
484 # where n is the maximum number of patches allowed in a patchset.
485 'patches' => {
486 'sub' => \&feature_patches,
487 'override' => 0,
488 'default' => [16]},
490 # Avatar support. When this feature is enabled, views such as
491 # shortlog or commit will display an avatar associated with
492 # the email of the committer(s) and/or author(s).
494 # Currently available providers are gravatar and picon.
495 # If an unknown provider is specified, the feature is disabled.
497 # Gravatar depends on Digest::MD5.
498 # Picon currently relies on the indiana.edu database.
500 # To enable system wide have in $GITWEB_CONFIG
501 # $feature{'avatar'}{'default'} = ['<provider>'];
502 # where <provider> is either gravatar or picon.
503 # To have project specific config enable override in $GITWEB_CONFIG
504 # $feature{'avatar'}{'override'} = 1;
505 # and in project config gitweb.avatar = <provider>;
506 'avatar' => {
507 'sub' => \&feature_avatar,
508 'override' => 0,
509 'default' => ['']},
511 # Enable displaying how much time and how many git commands
512 # it took to generate and display page. Disabled by default.
513 # Project specific override is not supported.
514 'timed' => {
515 'override' => 0,
516 'default' => [0]},
518 # Enable turning some links into links to actions which require
519 # JavaScript to run (like 'blame_incremental'). Not enabled by
520 # default. Project specific override is currently not supported.
521 'javascript-actions' => {
522 'override' => 0,
523 'default' => [0]},
525 # Enable and configure ability to change common timezone for dates
526 # in gitweb output via JavaScript. Enabled by default.
527 # Project specific override is not supported.
528 'javascript-timezone' => {
529 'override' => 0,
530 'default' => [
531 'local', # default timezone: 'utc', 'local', or '(-|+)HHMM' format,
532 # or undef to turn off this feature
533 'gitweb_tz', # name of cookie where to store selected timezone
534 'datetime', # CSS class used to mark up dates for manipulation
537 # Syntax highlighting support. This is based on Daniel Svensson's
538 # and Sham Chukoury's work in gitweb-xmms2.git.
539 # It requires the 'highlight' program present in $PATH,
540 # and therefore is disabled by default.
542 # To enable system wide have in $GITWEB_CONFIG
543 # $feature{'highlight'}{'default'} = [1];
545 'highlight' => {
546 'sub' => sub { feature_bool('highlight', @_) },
547 'override' => 0,
548 'default' => [0]},
550 # Enable displaying of remote heads in the heads list
552 # To enable system wide have in $GITWEB_CONFIG
553 # $feature{'remote_heads'}{'default'} = [1];
554 # To have project specific config enable override in $GITWEB_CONFIG
555 # $feature{'remote_heads'}{'override'} = 1;
556 # and in project config gitweb.remoteheads = 0|1;
557 'remote_heads' => {
558 'sub' => sub { feature_bool('remote_heads', @_) },
559 'override' => 0,
560 'default' => [0]},
562 # Enable showing branches under other refs in addition to heads
564 # To set system wide extra branch refs have in $GITWEB_CONFIG
565 # $feature{'extra-branch-refs'}{'default'} = ['dirs', 'of', 'choice'];
566 # To have project specific config enable override in $GITWEB_CONFIG
567 # $feature{'extra-branch-refs'}{'override'} = 1;
568 # and in project config gitweb.extrabranchrefs = dirs of choice
569 # Every directory is separated with whitespace.
571 'extra-branch-refs' => {
572 'sub' => \&feature_extra_branch_refs,
573 'override' => 0,
574 'default' => []},
577 sub gitweb_get_feature {
578 my ($name) = @_;
579 return unless exists $feature{$name};
580 my ($sub, $override, @defaults) = (
581 $feature{$name}{'sub'},
582 $feature{$name}{'override'},
583 @{$feature{$name}{'default'}});
584 # project specific override is possible only if we have project
585 our $git_dir; # global variable, declared later
586 if (!$override || !defined $git_dir) {
587 return @defaults;
589 if (!defined $sub) {
590 warn "feature $name is not overridable";
591 return @defaults;
593 return $sub->(@defaults);
596 # A wrapper to check if a given feature is enabled.
597 # With this, you can say
599 # my $bool_feat = gitweb_check_feature('bool_feat');
600 # gitweb_check_feature('bool_feat') or somecode;
602 # instead of
604 # my ($bool_feat) = gitweb_get_feature('bool_feat');
605 # (gitweb_get_feature('bool_feat'))[0] or somecode;
607 sub gitweb_check_feature {
608 return (gitweb_get_feature(@_))[0];
612 sub feature_bool {
613 my $key = shift;
614 my ($val) = git_get_project_config($key, '--bool');
616 if (!defined $val) {
617 return ($_[0]);
618 } elsif ($val eq 'true') {
619 return (1);
620 } elsif ($val eq 'false') {
621 return (0);
625 sub feature_snapshot {
626 my (@fmts) = @_;
628 my ($val) = git_get_project_config('snapshot');
630 if ($val) {
631 @fmts = ($val eq 'none' ? () : split /\s*[,\s]\s*/, $val);
634 return @fmts;
637 sub feature_patches {
638 my @val = (git_get_project_config('patches', '--int'));
640 if (@val) {
641 return @val;
644 return ($_[0]);
647 sub feature_avatar {
648 my @val = (git_get_project_config('avatar'));
650 return @val ? @val : @_;
653 sub feature_extra_branch_refs {
654 my (@branch_refs) = @_;
655 my $values = git_get_project_config('extrabranchrefs');
657 if ($values) {
658 $values = config_to_multi ($values);
659 @branch_refs = ();
660 foreach my $value (@{$values}) {
661 push @branch_refs, split /\s+/, $value;
665 return @branch_refs;
668 # checking HEAD file with -e is fragile if the repository was
669 # initialized long time ago (i.e. symlink HEAD) and was pack-ref'ed
670 # and then pruned.
671 sub check_head_link {
672 my ($dir) = @_;
673 my $headfile = "$dir/HEAD";
674 return ((-e $headfile) ||
675 (-l $headfile && readlink($headfile) =~ /^refs\/heads\//));
678 sub check_export_ok {
679 my ($dir) = @_;
680 return (check_head_link($dir) &&
681 (!$export_ok || -e "$dir/$export_ok") &&
682 (!$export_auth_hook || $export_auth_hook->($dir)));
685 # process alternate names for backward compatibility
686 # filter out unsupported (unknown) snapshot formats
687 sub filter_snapshot_fmts {
688 my @fmts = @_;
690 @fmts = map {
691 exists $known_snapshot_format_aliases{$_} ?
692 $known_snapshot_format_aliases{$_} : $_} @fmts;
693 @fmts = grep {
694 exists $known_snapshot_formats{$_} &&
695 !$known_snapshot_formats{$_}{'disabled'}} @fmts;
698 sub filter_and_validate_refs {
699 my @refs = @_;
700 my %unique_refs = ();
702 foreach my $ref (@refs) {
703 die_error(500, "Invalid ref '$ref' in 'extra-branch-refs' feature") unless (is_valid_ref_format($ref));
704 # 'heads' are added implicitly in get_branch_refs().
705 $unique_refs{$ref} = 1 if ($ref ne 'heads');
707 return sort keys %unique_refs;
710 # If it is set to code reference, it is code that it is to be run once per
711 # request, allowing updating configurations that change with each request,
712 # while running other code in config file only once.
714 # Otherwise, if it is false then gitweb would process config file only once;
715 # if it is true then gitweb config would be run for each request.
716 our $per_request_config = 1;
718 # read and parse gitweb config file given by its parameter.
719 # returns true on success, false on recoverable error, allowing
720 # to chain this subroutine, using first file that exists.
721 # dies on errors during parsing config file, as it is unrecoverable.
722 sub read_config_file {
723 my $filename = shift;
724 return unless defined $filename;
725 # die if there are errors parsing config file
726 if (-e $filename) {
727 do $filename;
728 die $@ if $@;
729 return 1;
731 return;
734 our ($GITWEB_CONFIG, $GITWEB_CONFIG_SYSTEM, $GITWEB_CONFIG_COMMON);
735 sub evaluate_gitweb_config {
736 our $GITWEB_CONFIG = $ENV{'GITWEB_CONFIG'} || "++GITWEB_CONFIG++";
737 our $GITWEB_CONFIG_SYSTEM = $ENV{'GITWEB_CONFIG_SYSTEM'} || "++GITWEB_CONFIG_SYSTEM++";
738 our $GITWEB_CONFIG_COMMON = $ENV{'GITWEB_CONFIG_COMMON'} || "++GITWEB_CONFIG_COMMON++";
740 # Protect against duplications of file names, to not read config twice.
741 # Only one of $GITWEB_CONFIG and $GITWEB_CONFIG_SYSTEM is used, so
742 # there possibility of duplication of filename there doesn't matter.
743 $GITWEB_CONFIG = "" if ($GITWEB_CONFIG eq $GITWEB_CONFIG_COMMON);
744 $GITWEB_CONFIG_SYSTEM = "" if ($GITWEB_CONFIG_SYSTEM eq $GITWEB_CONFIG_COMMON);
746 # Common system-wide settings for convenience.
747 # Those settings can be ovverriden by GITWEB_CONFIG or GITWEB_CONFIG_SYSTEM.
748 read_config_file($GITWEB_CONFIG_COMMON);
750 # Use first config file that exists. This means use the per-instance
751 # GITWEB_CONFIG if exists, otherwise use GITWEB_SYSTEM_CONFIG.
752 read_config_file($GITWEB_CONFIG) and return;
753 read_config_file($GITWEB_CONFIG_SYSTEM);
756 # Get loadavg of system, to compare against $maxload.
757 # Currently it requires '/proc/loadavg' present to get loadavg;
758 # if it is not present it returns 0, which means no load checking.
759 sub get_loadavg {
760 if( -e '/proc/loadavg' ){
761 open my $fd, '<', '/proc/loadavg'
762 or return 0;
763 my @load = split(/\s+/, scalar <$fd>);
764 close $fd;
766 # The first three columns measure CPU and IO utilization of the last one,
767 # five, and 10 minute periods. The fourth column shows the number of
768 # currently running processes and the total number of processes in the m/n
769 # format. The last column displays the last process ID used.
770 return $load[0] || 0;
772 # additional checks for load average should go here for things that don't export
773 # /proc/loadavg
775 return 0;
778 # version of the core git binary
779 our $git_version;
780 sub evaluate_git_version {
781 our $git_version = qx("$GIT" --version) =~ m/git version (.*)$/ ? $1 : "unknown";
782 $number_of_git_cmds++;
785 sub check_loadavg {
786 if (defined $maxload && get_loadavg() > $maxload) {
787 die_error(503, "The load average on the server is too high");
791 # ======================================================================
792 # input validation and dispatch
794 # input parameters can be collected from a variety of sources (presently, CGI
795 # and PATH_INFO), so we define an %input_params hash that collects them all
796 # together during validation: this allows subsequent uses (e.g. href()) to be
797 # agnostic of the parameter origin
799 our %input_params = ();
801 # input parameters are stored with the long parameter name as key. This will
802 # also be used in the href subroutine to convert parameters to their CGI
803 # equivalent, and since the href() usage is the most frequent one, we store
804 # the name -> CGI key mapping here, instead of the reverse.
806 # XXX: Warning: If you touch this, check the search form for updating,
807 # too.
809 our @cgi_param_mapping = (
810 project => "p",
811 action => "a",
812 file_name => "f",
813 file_parent => "fp",
814 hash => "h",
815 hash_parent => "hp",
816 hash_base => "hb",
817 hash_parent_base => "hpb",
818 page => "pg",
819 order => "o",
820 searchtext => "s",
821 searchtype => "st",
822 snapshot_format => "sf",
823 extra_options => "opt",
824 search_use_regexp => "sr",
825 ctag => "by_tag",
826 diff_style => "ds",
827 project_filter => "pf",
828 # this must be last entry (for manipulation from JavaScript)
829 javascript => "js"
831 our %cgi_param_mapping = @cgi_param_mapping;
833 # we will also need to know the possible actions, for validation
834 our %actions = (
835 "blame" => \&git_blame,
836 "blame_incremental" => \&git_blame_incremental,
837 "blame_data" => \&git_blame_data,
838 "blobdiff" => \&git_blobdiff,
839 "blobdiff_plain" => \&git_blobdiff_plain,
840 "blob" => \&git_blob,
841 "blob_plain" => \&git_blob_plain,
842 "commitdiff" => \&git_commitdiff,
843 "commitdiff_plain" => \&git_commitdiff_plain,
844 "commit" => \&git_commit,
845 "forks" => \&git_forks,
846 "heads" => \&git_heads,
847 "history" => \&git_history,
848 "log" => \&git_log,
849 "patch" => \&git_patch,
850 "patches" => \&git_patches,
851 "remotes" => \&git_remotes,
852 "rss" => \&git_rss,
853 "atom" => \&git_atom,
854 "search" => \&git_search,
855 "search_help" => \&git_search_help,
856 "shortlog" => \&git_shortlog,
857 "summary" => \&git_summary,
858 "tag" => \&git_tag,
859 "tags" => \&git_tags,
860 "tree" => \&git_tree,
861 "snapshot" => \&git_snapshot,
862 "object" => \&git_object,
863 # those below don't need $project
864 "opml" => \&git_opml,
865 "project_list" => \&git_project_list,
866 "project_index" => \&git_project_index,
869 # finally, we have the hash of allowed extra_options for the commands that
870 # allow them
871 our %allowed_options = (
872 "--no-merges" => [ qw(rss atom log shortlog history) ],
875 # fill %input_params with the CGI parameters. All values except for 'opt'
876 # should be single values, but opt can be an array. We should probably
877 # build an array of parameters that can be multi-valued, but since for the time
878 # being it's only this one, we just single it out
879 sub evaluate_query_params {
880 our $cgi;
882 while (my ($name, $symbol) = each %cgi_param_mapping) {
883 if ($symbol eq 'opt') {
884 $input_params{$name} = [ map { decode_utf8($_) } $cgi->multi_param($symbol) ];
885 } else {
886 $input_params{$name} = decode_utf8($cgi->param($symbol));
891 # now read PATH_INFO and update the parameter list for missing parameters
892 sub evaluate_path_info {
893 return if defined $input_params{'project'};
894 return if !$path_info;
895 $path_info =~ s,^/+,,;
896 return if !$path_info;
898 # find which part of PATH_INFO is project
899 my $project = $path_info;
900 $project =~ s,/+$,,;
901 while ($project && !check_head_link("$projectroot/$project")) {
902 $project =~ s,/*[^/]*$,,;
904 return unless $project;
905 $input_params{'project'} = $project;
907 # do not change any parameters if an action is given using the query string
908 return if $input_params{'action'};
909 $path_info =~ s,^\Q$project\E/*,,;
911 # next, check if we have an action
912 my $action = $path_info;
913 $action =~ s,/.*$,,;
914 if (exists $actions{$action}) {
915 $path_info =~ s,^$action/*,,;
916 $input_params{'action'} = $action;
919 # list of actions that want hash_base instead of hash, but can have no
920 # pathname (f) parameter
921 my @wants_base = (
922 'tree',
923 'history',
926 # we want to catch, among others
927 # [$hash_parent_base[:$file_parent]..]$hash_parent[:$file_name]
928 my ($parentrefname, $parentpathname, $refname, $pathname) =
929 ($path_info =~ /^(?:(.+?)(?::(.+))?\.\.)?([^:]+?)?(?::(.+))?$/);
931 # first, analyze the 'current' part
932 if (defined $pathname) {
933 # we got "branch:filename" or "branch:dir/"
934 # we could use git_get_type(branch:pathname), but:
935 # - it needs $git_dir
936 # - it does a git() call
937 # - the convention of terminating directories with a slash
938 # makes it superfluous
939 # - embedding the action in the PATH_INFO would make it even
940 # more superfluous
941 $pathname =~ s,^/+,,;
942 if (!$pathname || substr($pathname, -1) eq "/") {
943 $input_params{'action'} ||= "tree";
944 $pathname =~ s,/$,,;
945 } else {
946 # the default action depends on whether we had parent info
947 # or not
948 if ($parentrefname) {
949 $input_params{'action'} ||= "blobdiff_plain";
950 } else {
951 $input_params{'action'} ||= "blob_plain";
954 $input_params{'hash_base'} ||= $refname;
955 $input_params{'file_name'} ||= $pathname;
956 } elsif (defined $refname) {
957 # we got "branch". In this case we have to choose if we have to
958 # set hash or hash_base.
960 # Most of the actions without a pathname only want hash to be
961 # set, except for the ones specified in @wants_base that want
962 # hash_base instead. It should also be noted that hand-crafted
963 # links having 'history' as an action and no pathname or hash
964 # set will fail, but that happens regardless of PATH_INFO.
965 if (defined $parentrefname) {
966 # if there is parent let the default be 'shortlog' action
967 # (for http://git.example.com/repo.git/A..B links); if there
968 # is no parent, dispatch will detect type of object and set
969 # action appropriately if required (if action is not set)
970 $input_params{'action'} ||= "shortlog";
972 if ($input_params{'action'} &&
973 grep { $_ eq $input_params{'action'} } @wants_base) {
974 $input_params{'hash_base'} ||= $refname;
975 } else {
976 $input_params{'hash'} ||= $refname;
980 # next, handle the 'parent' part, if present
981 if (defined $parentrefname) {
982 # a missing pathspec defaults to the 'current' filename, allowing e.g.
983 # someproject/blobdiff/oldrev..newrev:/filename
984 if ($parentpathname) {
985 $parentpathname =~ s,^/+,,;
986 $parentpathname =~ s,/$,,;
987 $input_params{'file_parent'} ||= $parentpathname;
988 } else {
989 $input_params{'file_parent'} ||= $input_params{'file_name'};
991 # we assume that hash_parent_base is wanted if a path was specified,
992 # or if the action wants hash_base instead of hash
993 if (defined $input_params{'file_parent'} ||
994 grep { $_ eq $input_params{'action'} } @wants_base) {
995 $input_params{'hash_parent_base'} ||= $parentrefname;
996 } else {
997 $input_params{'hash_parent'} ||= $parentrefname;
1001 # for the snapshot action, we allow URLs in the form
1002 # $project/snapshot/$hash.ext
1003 # where .ext determines the snapshot and gets removed from the
1004 # passed $refname to provide the $hash.
1006 # To be able to tell that $refname includes the format extension, we
1007 # require the following two conditions to be satisfied:
1008 # - the hash input parameter MUST have been set from the $refname part
1009 # of the URL (i.e. they must be equal)
1010 # - the snapshot format MUST NOT have been defined already (e.g. from
1011 # CGI parameter sf)
1012 # It's also useless to try any matching unless $refname has a dot,
1013 # so we check for that too
1014 if (defined $input_params{'action'} &&
1015 $input_params{'action'} eq 'snapshot' &&
1016 defined $refname && index($refname, '.') != -1 &&
1017 $refname eq $input_params{'hash'} &&
1018 !defined $input_params{'snapshot_format'}) {
1019 # We loop over the known snapshot formats, checking for
1020 # extensions. Allowed extensions are both the defined suffix
1021 # (which includes the initial dot already) and the snapshot
1022 # format key itself, with a prepended dot
1023 while (my ($fmt, $opt) = each %known_snapshot_formats) {
1024 my $hash = $refname;
1025 unless ($hash =~ s/(\Q$opt->{'suffix'}\E|\Q.$fmt\E)$//) {
1026 next;
1028 my $sfx = $1;
1029 # a valid suffix was found, so set the snapshot format
1030 # and reset the hash parameter
1031 $input_params{'snapshot_format'} = $fmt;
1032 $input_params{'hash'} = $hash;
1033 # we also set the format suffix to the one requested
1034 # in the URL: this way a request for e.g. .tgz returns
1035 # a .tgz instead of a .tar.gz
1036 $known_snapshot_formats{$fmt}{'suffix'} = $sfx;
1037 last;
1042 our ($action, $project, $file_name, $file_parent, $hash, $hash_parent, $hash_base,
1043 $hash_parent_base, @extra_options, $page, $searchtype, $search_use_regexp,
1044 $searchtext, $search_regexp, $project_filter);
1045 sub evaluate_and_validate_params {
1046 our $action = $input_params{'action'};
1047 if (defined $action) {
1048 if (!is_valid_action($action)) {
1049 die_error(400, "Invalid action parameter");
1053 # parameters which are pathnames
1054 our $project = $input_params{'project'};
1055 if (defined $project) {
1056 if (!is_valid_project($project)) {
1057 undef $project;
1058 die_error(404, "No such project");
1062 our $project_filter = $input_params{'project_filter'};
1063 if (defined $project_filter) {
1064 if (!is_valid_pathname($project_filter)) {
1065 die_error(404, "Invalid project_filter parameter");
1069 our $file_name = $input_params{'file_name'};
1070 if (defined $file_name) {
1071 if (!is_valid_pathname($file_name)) {
1072 die_error(400, "Invalid file parameter");
1076 our $file_parent = $input_params{'file_parent'};
1077 if (defined $file_parent) {
1078 if (!is_valid_pathname($file_parent)) {
1079 die_error(400, "Invalid file parent parameter");
1083 # parameters which are refnames
1084 our $hash = $input_params{'hash'};
1085 if (defined $hash) {
1086 if (!is_valid_refname($hash)) {
1087 die_error(400, "Invalid hash parameter");
1091 our $hash_parent = $input_params{'hash_parent'};
1092 if (defined $hash_parent) {
1093 if (!is_valid_refname($hash_parent)) {
1094 die_error(400, "Invalid hash parent parameter");
1098 our $hash_base = $input_params{'hash_base'};
1099 if (defined $hash_base) {
1100 if (!is_valid_refname($hash_base)) {
1101 die_error(400, "Invalid hash base parameter");
1105 our @extra_options = @{$input_params{'extra_options'}};
1106 # @extra_options is always defined, since it can only be (currently) set from
1107 # CGI, and $cgi->param() returns the empty array in array context if the param
1108 # is not set
1109 foreach my $opt (@extra_options) {
1110 if (not exists $allowed_options{$opt}) {
1111 die_error(400, "Invalid option parameter");
1113 if (not grep(/^$action$/, @{$allowed_options{$opt}})) {
1114 die_error(400, "Invalid option parameter for this action");
1118 our $hash_parent_base = $input_params{'hash_parent_base'};
1119 if (defined $hash_parent_base) {
1120 if (!is_valid_refname($hash_parent_base)) {
1121 die_error(400, "Invalid hash parent base parameter");
1125 # other parameters
1126 our $page = $input_params{'page'};
1127 if (defined $page) {
1128 if ($page =~ m/[^0-9]/) {
1129 die_error(400, "Invalid page parameter");
1133 our $searchtype = $input_params{'searchtype'};
1134 if (defined $searchtype) {
1135 if ($searchtype =~ m/[^a-z]/) {
1136 die_error(400, "Invalid searchtype parameter");
1140 our $search_use_regexp = $input_params{'search_use_regexp'};
1142 our $searchtext = $input_params{'searchtext'};
1143 our $search_regexp = undef;
1144 if (defined $searchtext) {
1145 if (length($searchtext) < 2) {
1146 die_error(403, "At least two characters are required for search parameter");
1148 if ($search_use_regexp) {
1149 $search_regexp = $searchtext;
1150 if (!eval { qr/$search_regexp/; 1; }) {
1151 (my $error = $@) =~ s/ at \S+ line \d+.*\n?//;
1152 die_error(400, "Invalid search regexp '$search_regexp'",
1153 esc_html($error));
1155 } else {
1156 $search_regexp = quotemeta $searchtext;
1161 # path to the current git repository
1162 our $git_dir;
1163 sub evaluate_git_dir {
1164 our $git_dir = "$projectroot/$project" if $project;
1167 our (@snapshot_fmts, $git_avatar, @extra_branch_refs);
1168 sub configure_gitweb_features {
1169 # list of supported snapshot formats
1170 our @snapshot_fmts = gitweb_get_feature('snapshot');
1171 @snapshot_fmts = filter_snapshot_fmts(@snapshot_fmts);
1173 # check that the avatar feature is set to a known provider name,
1174 # and for each provider check if the dependencies are satisfied.
1175 # if the provider name is invalid or the dependencies are not met,
1176 # reset $git_avatar to the empty string.
1177 our ($git_avatar) = gitweb_get_feature('avatar');
1178 if ($git_avatar eq 'gravatar') {
1179 $git_avatar = '' unless (eval { require Digest::MD5; 1; });
1180 } elsif ($git_avatar eq 'picon') {
1181 # no dependencies
1182 } else {
1183 $git_avatar = '';
1186 our @extra_branch_refs = gitweb_get_feature('extra-branch-refs');
1187 @extra_branch_refs = filter_and_validate_refs (@extra_branch_refs);
1190 sub get_branch_refs {
1191 return ('heads', @extra_branch_refs);
1194 # custom error handler: 'die <message>' is Internal Server Error
1195 sub handle_errors_html {
1196 my $msg = shift; # it is already HTML escaped
1198 # to avoid infinite loop where error occurs in die_error,
1199 # change handler to default handler, disabling handle_errors_html
1200 set_message("Error occurred when inside die_error:\n$msg");
1202 # you cannot jump out of die_error when called as error handler;
1203 # the subroutine set via CGI::Carp::set_message is called _after_
1204 # HTTP headers are already written, so it cannot write them itself
1205 die_error(undef, undef, $msg, -error_handler => 1, -no_http_header => 1);
1207 set_message(\&handle_errors_html);
1209 # dispatch
1210 sub dispatch {
1211 if (!defined $action) {
1212 if (defined $hash) {
1213 $action = git_get_type($hash);
1214 $action or die_error(404, "Object does not exist");
1215 } elsif (defined $hash_base && defined $file_name) {
1216 $action = git_get_type("$hash_base:$file_name");
1217 $action or die_error(404, "File or directory does not exist");
1218 } elsif (defined $project) {
1219 $action = 'summary';
1220 } else {
1221 $action = 'project_list';
1224 if (!defined($actions{$action})) {
1225 die_error(400, "Unknown action");
1227 if ($action !~ m/^(?:opml|project_list|project_index)$/ &&
1228 !$project) {
1229 die_error(400, "Project needed");
1231 $actions{$action}->();
1234 sub reset_timer {
1235 our $t0 = [ gettimeofday() ]
1236 if defined $t0;
1237 our $number_of_git_cmds = 0;
1240 our $first_request = 1;
1241 sub run_request {
1242 reset_timer();
1244 evaluate_uri();
1245 if ($first_request) {
1246 evaluate_gitweb_config();
1247 evaluate_git_version();
1249 if ($per_request_config) {
1250 if (ref($per_request_config) eq 'CODE') {
1251 $per_request_config->();
1252 } elsif (!$first_request) {
1253 evaluate_gitweb_config();
1256 check_loadavg();
1258 # $projectroot and $projects_list might be set in gitweb config file
1259 $projects_list ||= $projectroot;
1261 evaluate_query_params();
1262 evaluate_path_info();
1263 evaluate_and_validate_params();
1264 evaluate_git_dir();
1266 configure_gitweb_features();
1268 dispatch();
1271 our $is_last_request = sub { 1 };
1272 our ($pre_dispatch_hook, $post_dispatch_hook, $pre_listen_hook);
1273 our $CGI = 'CGI';
1274 our $cgi;
1275 sub configure_as_fcgi {
1276 require CGI::Fast;
1277 our $CGI = 'CGI::Fast';
1279 my $request_number = 0;
1280 # let each child service 100 requests
1281 our $is_last_request = sub { ++$request_number > 100 };
1283 sub evaluate_argv {
1284 my $script_name = $ENV{'SCRIPT_NAME'} || $ENV{'SCRIPT_FILENAME'} || __FILE__;
1285 configure_as_fcgi()
1286 if $script_name =~ /\.fcgi$/;
1288 return unless (@ARGV);
1290 require Getopt::Long;
1291 Getopt::Long::GetOptions(
1292 'fastcgi|fcgi|f' => \&configure_as_fcgi,
1293 'nproc|n=i' => sub {
1294 my ($arg, $val) = @_;
1295 return unless eval { require FCGI::ProcManager; 1; };
1296 my $proc_manager = FCGI::ProcManager->new({
1297 n_processes => $val,
1299 our $pre_listen_hook = sub { $proc_manager->pm_manage() };
1300 our $pre_dispatch_hook = sub { $proc_manager->pm_pre_dispatch() };
1301 our $post_dispatch_hook = sub { $proc_manager->pm_post_dispatch() };
1306 sub run {
1307 evaluate_argv();
1309 $first_request = 1;
1310 $pre_listen_hook->()
1311 if $pre_listen_hook;
1313 REQUEST:
1314 while ($cgi = $CGI->new()) {
1315 $pre_dispatch_hook->()
1316 if $pre_dispatch_hook;
1318 run_request();
1320 $post_dispatch_hook->()
1321 if $post_dispatch_hook;
1322 $first_request = 0;
1324 last REQUEST if ($is_last_request->());
1327 DONE_GITWEB:
1331 run();
1333 if (defined caller) {
1334 # wrapped in a subroutine processing requests,
1335 # e.g. mod_perl with ModPerl::Registry, or PSGI with Plack::App::WrapCGI
1336 return;
1337 } else {
1338 # pure CGI script, serving single request
1339 exit;
1342 ## ======================================================================
1343 ## action links
1345 # possible values of extra options
1346 # -full => 0|1 - use absolute/full URL ($my_uri/$my_url as base)
1347 # -replay => 1 - start from a current view (replay with modifications)
1348 # -path_info => 0|1 - don't use/use path_info URL (if possible)
1349 # -anchor => ANCHOR - add #ANCHOR to end of URL, implies -replay if used alone
1350 sub href {
1351 my %params = @_;
1352 # default is to use -absolute url() i.e. $my_uri
1353 my $href = $params{-full} ? $my_url : $my_uri;
1355 # implicit -replay, must be first of implicit params
1356 $params{-replay} = 1 if (keys %params == 1 && $params{-anchor});
1358 $params{'project'} = $project unless exists $params{'project'};
1360 if ($params{-replay}) {
1361 while (my ($name, $symbol) = each %cgi_param_mapping) {
1362 if (!exists $params{$name}) {
1363 $params{$name} = $input_params{$name};
1368 my $use_pathinfo = gitweb_check_feature('pathinfo');
1369 if (defined $params{'project'} &&
1370 (exists $params{-path_info} ? $params{-path_info} : $use_pathinfo)) {
1371 # try to put as many parameters as possible in PATH_INFO:
1372 # - project name
1373 # - action
1374 # - hash_parent or hash_parent_base:/file_parent
1375 # - hash or hash_base:/filename
1376 # - the snapshot_format as an appropriate suffix
1378 # When the script is the root DirectoryIndex for the domain,
1379 # $href here would be something like http://gitweb.example.com/
1380 # Thus, we strip any trailing / from $href, to spare us double
1381 # slashes in the final URL
1382 $href =~ s,/$,,;
1384 # Then add the project name, if present
1385 $href .= "/".esc_path_info($params{'project'});
1386 delete $params{'project'};
1388 # since we destructively absorb parameters, we keep this
1389 # boolean that remembers if we're handling a snapshot
1390 my $is_snapshot = $params{'action'} eq 'snapshot';
1392 # Summary just uses the project path URL, any other action is
1393 # added to the URL
1394 if (defined $params{'action'}) {
1395 $href .= "/".esc_path_info($params{'action'})
1396 unless $params{'action'} eq 'summary';
1397 delete $params{'action'};
1400 # Next, we put hash_parent_base:/file_parent..hash_base:/file_name,
1401 # stripping nonexistent or useless pieces
1402 $href .= "/" if ($params{'hash_base'} || $params{'hash_parent_base'}
1403 || $params{'hash_parent'} || $params{'hash'});
1404 if (defined $params{'hash_base'}) {
1405 if (defined $params{'hash_parent_base'}) {
1406 $href .= esc_path_info($params{'hash_parent_base'});
1407 # skip the file_parent if it's the same as the file_name
1408 if (defined $params{'file_parent'}) {
1409 if (defined $params{'file_name'} && $params{'file_parent'} eq $params{'file_name'}) {
1410 delete $params{'file_parent'};
1411 } elsif ($params{'file_parent'} !~ /\.\./) {
1412 $href .= ":/".esc_path_info($params{'file_parent'});
1413 delete $params{'file_parent'};
1416 $href .= "..";
1417 delete $params{'hash_parent'};
1418 delete $params{'hash_parent_base'};
1419 } elsif (defined $params{'hash_parent'}) {
1420 $href .= esc_path_info($params{'hash_parent'}). "..";
1421 delete $params{'hash_parent'};
1424 $href .= esc_path_info($params{'hash_base'});
1425 if (defined $params{'file_name'} && $params{'file_name'} !~ /\.\./) {
1426 $href .= ":/".esc_path_info($params{'file_name'});
1427 delete $params{'file_name'};
1429 delete $params{'hash'};
1430 delete $params{'hash_base'};
1431 } elsif (defined $params{'hash'}) {
1432 $href .= esc_path_info($params{'hash'});
1433 delete $params{'hash'};
1436 # If the action was a snapshot, we can absorb the
1437 # snapshot_format parameter too
1438 if ($is_snapshot) {
1439 my $fmt = $params{'snapshot_format'};
1440 # snapshot_format should always be defined when href()
1441 # is called, but just in case some code forgets, we
1442 # fall back to the default
1443 $fmt ||= $snapshot_fmts[0];
1444 $href .= $known_snapshot_formats{$fmt}{'suffix'};
1445 delete $params{'snapshot_format'};
1449 # now encode the parameters explicitly
1450 my @result = ();
1451 for (my $i = 0; $i < @cgi_param_mapping; $i += 2) {
1452 my ($name, $symbol) = ($cgi_param_mapping[$i], $cgi_param_mapping[$i+1]);
1453 if (defined $params{$name}) {
1454 if (ref($params{$name}) eq "ARRAY") {
1455 foreach my $par (@{$params{$name}}) {
1456 push @result, $symbol . "=" . esc_param($par);
1458 } else {
1459 push @result, $symbol . "=" . esc_param($params{$name});
1463 $href .= "?" . join(';', @result) if scalar @result;
1465 # final transformation: trailing spaces must be escaped (URI-encoded)
1466 $href =~ s/(\s+)$/CGI::escape($1)/e;
1468 if ($params{-anchor}) {
1469 $href .= "#".esc_param($params{-anchor});
1472 return $href;
1476 ## ======================================================================
1477 ## validation, quoting/unquoting and escaping
1479 sub is_valid_action {
1480 my $input = shift;
1481 return undef unless exists $actions{$input};
1482 return 1;
1485 sub is_valid_project {
1486 my $input = shift;
1488 return unless defined $input;
1489 if (!is_valid_pathname($input) ||
1490 !(-d "$projectroot/$input") ||
1491 !check_export_ok("$projectroot/$input") ||
1492 ($strict_export && !project_in_list($input))) {
1493 return undef;
1494 } else {
1495 return 1;
1499 sub is_valid_pathname {
1500 my $input = shift;
1502 return undef unless defined $input;
1503 # no '.' or '..' as elements of path, i.e. no '.' or '..'
1504 # at the beginning, at the end, and between slashes.
1505 # also this catches doubled slashes
1506 if ($input =~ m!(^|/)(|\.|\.\.)(/|$)!) {
1507 return undef;
1509 # no null characters
1510 if ($input =~ m!\0!) {
1511 return undef;
1513 return 1;
1516 sub is_valid_ref_format {
1517 my $input = shift;
1519 return undef unless defined $input;
1520 # restrictions on ref name according to git-check-ref-format
1521 if ($input =~ m!(/\.|\.\.|[\000-\040\177 ~^:?*\[]|/$)!) {
1522 return undef;
1524 return 1;
1527 sub is_valid_refname {
1528 my $input = shift;
1530 return undef unless defined $input;
1531 # textual hashes are O.K.
1532 if ($input =~ m/^[0-9a-fA-F]{40}$/) {
1533 return 1;
1535 # it must be correct pathname
1536 is_valid_pathname($input) or return undef;
1537 # check git-check-ref-format restrictions
1538 is_valid_ref_format($input) or return undef;
1539 return 1;
1542 # decode sequences of octets in utf8 into Perl's internal form,
1543 # which is utf-8 with utf8 flag set if needed. gitweb writes out
1544 # in utf-8 thanks to "binmode STDOUT, ':utf8'" at beginning
1545 sub to_utf8 {
1546 my $str = shift;
1547 return undef unless defined $str;
1549 if (utf8::is_utf8($str) || utf8::decode($str)) {
1550 return $str;
1551 } else {
1552 return decode($fallback_encoding, $str, Encode::FB_DEFAULT);
1556 # quote unsafe chars, but keep the slash, even when it's not
1557 # correct, but quoted slashes look too horrible in bookmarks
1558 sub esc_param {
1559 my $str = shift;
1560 return undef unless defined $str;
1561 $str =~ s/([^A-Za-z0-9\-_.~()\/:@ ]+)/CGI::escape($1)/eg;
1562 $str =~ s/ /\+/g;
1563 return $str;
1566 # the quoting rules for path_info fragment are slightly different
1567 sub esc_path_info {
1568 my $str = shift;
1569 return undef unless defined $str;
1571 # path_info doesn't treat '+' as space (specially), but '?' must be escaped
1572 $str =~ s/([^A-Za-z0-9\-_.~();\/;:@&= +]+)/CGI::escape($1)/eg;
1574 return $str;
1577 # quote unsafe chars in whole URL, so some characters cannot be quoted
1578 sub esc_url {
1579 my $str = shift;
1580 return undef unless defined $str;
1581 $str =~ s/([^A-Za-z0-9\-_.~();\/;?:@&= ]+)/CGI::escape($1)/eg;
1582 $str =~ s/ /\+/g;
1583 return $str;
1586 # quote unsafe characters in HTML attributes
1587 sub esc_attr {
1589 # for XHTML conformance escaping '"' to '&quot;' is not enough
1590 return esc_html(@_);
1593 # replace invalid utf8 character with SUBSTITUTION sequence
1594 sub esc_html {
1595 my $str = shift;
1596 my %opts = @_;
1598 return undef unless defined $str;
1600 $str = to_utf8($str);
1601 $str = $cgi->escapeHTML($str);
1602 if ($opts{'-nbsp'}) {
1603 $str =~ s/ /&nbsp;/g;
1605 $str =~ s|([[:cntrl:]])|(($1 ne "\t") ? quot_cec($1) : $1)|eg;
1606 return $str;
1609 # quote control characters and escape filename to HTML
1610 sub esc_path {
1611 my $str = shift;
1612 my %opts = @_;
1614 return undef unless defined $str;
1616 $str = to_utf8($str);
1617 $str = $cgi->escapeHTML($str);
1618 if ($opts{'-nbsp'}) {
1619 $str =~ s/ /&nbsp;/g;
1621 $str =~ s|([[:cntrl:]])|quot_cec($1)|eg;
1622 return $str;
1625 # Sanitize for use in XHTML + application/xml+xhtm (valid XML 1.0)
1626 sub sanitize {
1627 my $str = shift;
1629 return undef unless defined $str;
1631 $str = to_utf8($str);
1632 $str =~ s|([[:cntrl:]])|(index("\t\n\r", $1) != -1 ? $1 : quot_cec($1))|eg;
1633 return $str;
1636 # Make control characters "printable", using character escape codes (CEC)
1637 sub quot_cec {
1638 my $cntrl = shift;
1639 my %opts = @_;
1640 my %es = ( # character escape codes, aka escape sequences
1641 "\t" => '\t', # tab (HT)
1642 "\n" => '\n', # line feed (LF)
1643 "\r" => '\r', # carrige return (CR)
1644 "\f" => '\f', # form feed (FF)
1645 "\b" => '\b', # backspace (BS)
1646 "\a" => '\a', # alarm (bell) (BEL)
1647 "\e" => '\e', # escape (ESC)
1648 "\013" => '\v', # vertical tab (VT)
1649 "\000" => '\0', # nul character (NUL)
1651 my $chr = ( (exists $es{$cntrl})
1652 ? $es{$cntrl}
1653 : sprintf('\%2x', ord($cntrl)) );
1654 if ($opts{-nohtml}) {
1655 return $chr;
1656 } else {
1657 return "<span class=\"cntrl\">$chr</span>";
1661 # Alternatively use unicode control pictures codepoints,
1662 # Unicode "printable representation" (PR)
1663 sub quot_upr {
1664 my $cntrl = shift;
1665 my %opts = @_;
1667 my $chr = sprintf('&#%04d;', 0x2400+ord($cntrl));
1668 if ($opts{-nohtml}) {
1669 return $chr;
1670 } else {
1671 return "<span class=\"cntrl\">$chr</span>";
1675 # git may return quoted and escaped filenames
1676 sub unquote {
1677 my $str = shift;
1679 sub unq {
1680 my $seq = shift;
1681 my %es = ( # character escape codes, aka escape sequences
1682 't' => "\t", # tab (HT, TAB)
1683 'n' => "\n", # newline (NL)
1684 'r' => "\r", # return (CR)
1685 'f' => "\f", # form feed (FF)
1686 'b' => "\b", # backspace (BS)
1687 'a' => "\a", # alarm (bell) (BEL)
1688 'e' => "\e", # escape (ESC)
1689 'v' => "\013", # vertical tab (VT)
1692 if ($seq =~ m/^[0-7]{1,3}$/) {
1693 # octal char sequence
1694 return chr(oct($seq));
1695 } elsif (exists $es{$seq}) {
1696 # C escape sequence, aka character escape code
1697 return $es{$seq};
1699 # quoted ordinary character
1700 return $seq;
1703 if ($str =~ m/^"(.*)"$/) {
1704 # needs unquoting
1705 $str = $1;
1706 $str =~ s/\\([^0-7]|[0-7]{1,3})/unq($1)/eg;
1708 return $str;
1711 # escape tabs (convert tabs to spaces)
1712 sub untabify {
1713 my $line = shift;
1715 while ((my $pos = index($line, "\t")) != -1) {
1716 if (my $count = (8 - ($pos % 8))) {
1717 my $spaces = ' ' x $count;
1718 $line =~ s/\t/$spaces/;
1722 return $line;
1725 sub project_in_list {
1726 my $project = shift;
1727 my @list = git_get_projects_list();
1728 return @list && scalar(grep { $_->{'path'} eq $project } @list);
1731 ## ----------------------------------------------------------------------
1732 ## HTML aware string manipulation
1734 # Try to chop given string on a word boundary between position
1735 # $len and $len+$add_len. If there is no word boundary there,
1736 # chop at $len+$add_len. Do not chop if chopped part plus ellipsis
1737 # (marking chopped part) would be longer than given string.
1738 sub chop_str {
1739 my $str = shift;
1740 my $len = shift;
1741 my $add_len = shift || 10;
1742 my $where = shift || 'right'; # 'left' | 'center' | 'right'
1744 # Make sure perl knows it is utf8 encoded so we don't
1745 # cut in the middle of a utf8 multibyte char.
1746 $str = to_utf8($str);
1748 # allow only $len chars, but don't cut a word if it would fit in $add_len
1749 # if it doesn't fit, cut it if it's still longer than the dots we would add
1750 # remove chopped character entities entirely
1752 # when chopping in the middle, distribute $len into left and right part
1753 # return early if chopping wouldn't make string shorter
1754 if ($where eq 'center') {
1755 return $str if ($len + 5 >= length($str)); # filler is length 5
1756 $len = int($len/2);
1757 } else {
1758 return $str if ($len + 4 >= length($str)); # filler is length 4
1761 # regexps: ending and beginning with word part up to $add_len
1762 my $endre = qr/.{$len}\w{0,$add_len}/;
1763 my $begre = qr/\w{0,$add_len}.{$len}/;
1765 if ($where eq 'left') {
1766 $str =~ m/^(.*?)($begre)$/;
1767 my ($lead, $body) = ($1, $2);
1768 if (length($lead) > 4) {
1769 $lead = " ...";
1771 return "$lead$body";
1773 } elsif ($where eq 'center') {
1774 $str =~ m/^($endre)(.*)$/;
1775 my ($left, $str) = ($1, $2);
1776 $str =~ m/^(.*?)($begre)$/;
1777 my ($mid, $right) = ($1, $2);
1778 if (length($mid) > 5) {
1779 $mid = " ... ";
1781 return "$left$mid$right";
1783 } else {
1784 $str =~ m/^($endre)(.*)$/;
1785 my $body = $1;
1786 my $tail = $2;
1787 if (length($tail) > 4) {
1788 $tail = "... ";
1790 return "$body$tail";
1794 # takes the same arguments as chop_str, but also wraps a <span> around the
1795 # result with a title attribute if it does get chopped. Additionally, the
1796 # string is HTML-escaped.
1797 sub chop_and_escape_str {
1798 my ($str) = @_;
1800 my $chopped = chop_str(@_);
1801 $str = to_utf8($str);
1802 if ($chopped eq $str) {
1803 return esc_html($chopped);
1804 } else {
1805 $str =~ s/[[:cntrl:]]/?/g;
1806 return $cgi->span({-title=>$str}, esc_html($chopped));
1810 # Highlight selected fragments of string, using given CSS class,
1811 # and escape HTML. It is assumed that fragments do not overlap.
1812 # Regions are passed as list of pairs (array references).
1814 # Example: esc_html_hl_regions("foobar", "mark", [ 0, 3 ]) returns
1815 # '<span class="mark">foo</span>bar'
1816 sub esc_html_hl_regions {
1817 my ($str, $css_class, @sel) = @_;
1818 my %opts = grep { ref($_) ne 'ARRAY' } @sel;
1819 @sel = grep { ref($_) eq 'ARRAY' } @sel;
1820 return esc_html($str, %opts) unless @sel;
1822 my $out = '';
1823 my $pos = 0;
1825 for my $s (@sel) {
1826 my ($begin, $end) = @$s;
1828 # Don't create empty <span> elements.
1829 next if $end <= $begin;
1831 my $escaped = esc_html(substr($str, $begin, $end - $begin),
1832 %opts);
1834 $out .= esc_html(substr($str, $pos, $begin - $pos), %opts)
1835 if ($begin - $pos > 0);
1836 $out .= $cgi->span({-class => $css_class}, $escaped);
1838 $pos = $end;
1840 $out .= esc_html(substr($str, $pos), %opts)
1841 if ($pos < length($str));
1843 return $out;
1846 # return positions of beginning and end of each match
1847 sub matchpos_list {
1848 my ($str, $regexp) = @_;
1849 return unless (defined $str && defined $regexp);
1851 my @matches;
1852 while ($str =~ /$regexp/g) {
1853 push @matches, [$-[0], $+[0]];
1855 return @matches;
1858 # highlight match (if any), and escape HTML
1859 sub esc_html_match_hl {
1860 my ($str, $regexp) = @_;
1861 return esc_html($str) unless defined $regexp;
1863 my @matches = matchpos_list($str, $regexp);
1864 return esc_html($str) unless @matches;
1866 return esc_html_hl_regions($str, 'match', @matches);
1870 # highlight match (if any) of shortened string, and escape HTML
1871 sub esc_html_match_hl_chopped {
1872 my ($str, $chopped, $regexp) = @_;
1873 return esc_html_match_hl($str, $regexp) unless defined $chopped;
1875 my @matches = matchpos_list($str, $regexp);
1876 return esc_html($chopped) unless @matches;
1878 # filter matches so that we mark chopped string
1879 my $tail = "... "; # see chop_str
1880 unless ($chopped =~ s/\Q$tail\E$//) {
1881 $tail = '';
1883 my $chop_len = length($chopped);
1884 my $tail_len = length($tail);
1885 my @filtered;
1887 for my $m (@matches) {
1888 if ($m->[0] > $chop_len) {
1889 push @filtered, [ $chop_len, $chop_len + $tail_len ] if ($tail_len > 0);
1890 last;
1891 } elsif ($m->[1] > $chop_len) {
1892 push @filtered, [ $m->[0], $chop_len + $tail_len ];
1893 last;
1895 push @filtered, $m;
1898 return esc_html_hl_regions($chopped . $tail, 'match', @filtered);
1901 ## ----------------------------------------------------------------------
1902 ## functions returning short strings
1904 # CSS class for given age value (in seconds)
1905 sub age_class {
1906 my $age = shift;
1908 if (!defined $age) {
1909 return "noage";
1910 } elsif ($age < 60*60*2) {
1911 return "age0";
1912 } elsif ($age < 60*60*24*2) {
1913 return "age1";
1914 } else {
1915 return "age2";
1919 # convert age in seconds to "nn units ago" string
1920 sub age_string {
1921 my $age = shift;
1922 my $age_str;
1924 if ($age > 60*60*24*365*2) {
1925 $age_str = (int $age/60/60/24/365);
1926 $age_str .= " years ago";
1927 } elsif ($age > 60*60*24*(365/12)*2) {
1928 $age_str = int $age/60/60/24/(365/12);
1929 $age_str .= " months ago";
1930 } elsif ($age > 60*60*24*7*2) {
1931 $age_str = int $age/60/60/24/7;
1932 $age_str .= " weeks ago";
1933 } elsif ($age > 60*60*24*2) {
1934 $age_str = int $age/60/60/24;
1935 $age_str .= " days ago";
1936 } elsif ($age > 60*60*2) {
1937 $age_str = int $age/60/60;
1938 $age_str .= " hours ago";
1939 } elsif ($age > 60*2) {
1940 $age_str = int $age/60;
1941 $age_str .= " min ago";
1942 } elsif ($age > 2) {
1943 $age_str = int $age;
1944 $age_str .= " sec ago";
1945 } else {
1946 $age_str .= " right now";
1948 return $age_str;
1951 use constant {
1952 S_IFINVALID => 0030000,
1953 S_IFGITLINK => 0160000,
1956 # submodule/subproject, a commit object reference
1957 sub S_ISGITLINK {
1958 my $mode = shift;
1960 return (($mode & S_IFMT) == S_IFGITLINK)
1963 # convert file mode in octal to symbolic file mode string
1964 sub mode_str {
1965 my $mode = oct shift;
1967 if (S_ISGITLINK($mode)) {
1968 return 'm---------';
1969 } elsif (S_ISDIR($mode & S_IFMT)) {
1970 return 'drwxr-xr-x';
1971 } elsif (S_ISLNK($mode)) {
1972 return 'lrwxrwxrwx';
1973 } elsif (S_ISREG($mode)) {
1974 # git cares only about the executable bit
1975 if ($mode & S_IXUSR) {
1976 return '-rwxr-xr-x';
1977 } else {
1978 return '-rw-r--r--';
1980 } else {
1981 return '----------';
1985 # convert file mode in octal to file type string
1986 sub file_type {
1987 my $mode = shift;
1989 if ($mode !~ m/^[0-7]+$/) {
1990 return $mode;
1991 } else {
1992 $mode = oct $mode;
1995 if (S_ISGITLINK($mode)) {
1996 return "submodule";
1997 } elsif (S_ISDIR($mode & S_IFMT)) {
1998 return "directory";
1999 } elsif (S_ISLNK($mode)) {
2000 return "symlink";
2001 } elsif (S_ISREG($mode)) {
2002 return "file";
2003 } else {
2004 return "unknown";
2008 # convert file mode in octal to file type description string
2009 sub file_type_long {
2010 my $mode = shift;
2012 if ($mode !~ m/^[0-7]+$/) {
2013 return $mode;
2014 } else {
2015 $mode = oct $mode;
2018 if (S_ISGITLINK($mode)) {
2019 return "submodule";
2020 } elsif (S_ISDIR($mode & S_IFMT)) {
2021 return "directory";
2022 } elsif (S_ISLNK($mode)) {
2023 return "symlink";
2024 } elsif (S_ISREG($mode)) {
2025 if ($mode & S_IXUSR) {
2026 return "executable";
2027 } else {
2028 return "file";
2030 } else {
2031 return "unknown";
2036 ## ----------------------------------------------------------------------
2037 ## functions returning short HTML fragments, or transforming HTML fragments
2038 ## which don't belong to other sections
2040 # format line of commit message.
2041 sub format_log_line_html {
2042 my $line = shift;
2044 $line = esc_html($line, -nbsp=>1);
2045 $line =~ s{\b([0-9a-fA-F]{8,40})\b}{
2046 $cgi->a({-href => href(action=>"object", hash=>$1),
2047 -class => "text"}, $1);
2048 }eg;
2050 return $line;
2053 # format marker of refs pointing to given object
2055 # the destination action is chosen based on object type and current context:
2056 # - for annotated tags, we choose the tag view unless it's the current view
2057 # already, in which case we go to shortlog view
2058 # - for other refs, we keep the current view if we're in history, shortlog or
2059 # log view, and select shortlog otherwise
2060 sub format_ref_marker {
2061 my ($refs, $id) = @_;
2062 my $markers = '';
2064 if (defined $refs->{$id}) {
2065 foreach my $ref (@{$refs->{$id}}) {
2066 # this code exploits the fact that non-lightweight tags are the
2067 # only indirect objects, and that they are the only objects for which
2068 # we want to use tag instead of shortlog as action
2069 my ($type, $name) = qw();
2070 my $indirect = ($ref =~ s/\^\{\}$//);
2071 # e.g. tags/v2.6.11 or heads/next
2072 if ($ref =~ m!^(.*?)s?/(.*)$!) {
2073 $type = $1;
2074 $name = $2;
2075 } else {
2076 $type = "ref";
2077 $name = $ref;
2080 my $class = $type;
2081 $class .= " indirect" if $indirect;
2083 my $dest_action = "shortlog";
2085 if ($indirect) {
2086 $dest_action = "tag" unless $action eq "tag";
2087 } elsif ($action =~ /^(history|(short)?log)$/) {
2088 $dest_action = $action;
2091 my $dest = "";
2092 $dest .= "refs/" unless $ref =~ m!^refs/!;
2093 $dest .= $ref;
2095 my $link = $cgi->a({
2096 -href => href(
2097 action=>$dest_action,
2098 hash=>$dest
2099 )}, $name);
2101 $markers .= " <span class=\"".esc_attr($class)."\" title=\"".esc_attr($ref)."\">" .
2102 $link . "</span>";
2106 if ($markers) {
2107 return ' <span class="refs">'. $markers . '</span>';
2108 } else {
2109 return "";
2113 # format, perhaps shortened and with markers, title line
2114 sub format_subject_html {
2115 my ($long, $short, $href, $extra) = @_;
2116 $extra = '' unless defined($extra);
2118 if (length($short) < length($long)) {
2119 $long =~ s/[[:cntrl:]]/?/g;
2120 return $cgi->a({-href => $href, -class => "list subject",
2121 -title => to_utf8($long)},
2122 esc_html($short)) . $extra;
2123 } else {
2124 return $cgi->a({-href => $href, -class => "list subject"},
2125 esc_html($long)) . $extra;
2129 # Rather than recomputing the url for an email multiple times, we cache it
2130 # after the first hit. This gives a visible benefit in views where the avatar
2131 # for the same email is used repeatedly (e.g. shortlog).
2132 # The cache is shared by all avatar engines (currently gravatar only), which
2133 # are free to use it as preferred. Since only one avatar engine is used for any
2134 # given page, there's no risk for cache conflicts.
2135 our %avatar_cache = ();
2137 # Compute the picon url for a given email, by using the picon search service over at
2138 # http://www.cs.indiana.edu/picons/search.html
2139 sub picon_url {
2140 my $email = lc shift;
2141 if (!$avatar_cache{$email}) {
2142 my ($user, $domain) = split('@', $email);
2143 $avatar_cache{$email} =
2144 "//www.cs.indiana.edu/cgi-pub/kinzler/piconsearch.cgi/" .
2145 "$domain/$user/" .
2146 "users+domains+unknown/up/single";
2148 return $avatar_cache{$email};
2151 # Compute the gravatar url for a given email, if it's not in the cache already.
2152 # Gravatar stores only the part of the URL before the size, since that's the
2153 # one computationally more expensive. This also allows reuse of the cache for
2154 # different sizes (for this particular engine).
2155 sub gravatar_url {
2156 my $email = lc shift;
2157 my $size = shift;
2158 $avatar_cache{$email} ||=
2159 "//www.gravatar.com/avatar/" .
2160 Digest::MD5::md5_hex($email) . "?s=";
2161 return $avatar_cache{$email} . $size;
2164 # Insert an avatar for the given $email at the given $size if the feature
2165 # is enabled.
2166 sub git_get_avatar {
2167 my ($email, %opts) = @_;
2168 my $pre_white = ($opts{-pad_before} ? "&nbsp;" : "");
2169 my $post_white = ($opts{-pad_after} ? "&nbsp;" : "");
2170 $opts{-size} ||= 'default';
2171 my $size = $avatar_size{$opts{-size}} || $avatar_size{'default'};
2172 my $url = "";
2173 if ($git_avatar eq 'gravatar') {
2174 $url = gravatar_url($email, $size);
2175 } elsif ($git_avatar eq 'picon') {
2176 $url = picon_url($email);
2178 # Other providers can be added by extending the if chain, defining $url
2179 # as needed. If no variant puts something in $url, we assume avatars
2180 # are completely disabled/unavailable.
2181 if ($url) {
2182 return $pre_white .
2183 "<img width=\"$size\" " .
2184 "class=\"avatar\" " .
2185 "src=\"".esc_url($url)."\" " .
2186 "alt=\"\" " .
2187 "/>" . $post_white;
2188 } else {
2189 return "";
2193 sub format_search_author {
2194 my ($author, $searchtype, $displaytext) = @_;
2195 my $have_search = gitweb_check_feature('search');
2197 if ($have_search) {
2198 my $performed = "";
2199 if ($searchtype eq 'author') {
2200 $performed = "authored";
2201 } elsif ($searchtype eq 'committer') {
2202 $performed = "committed";
2205 return $cgi->a({-href => href(action=>"search", hash=>$hash,
2206 searchtext=>$author,
2207 searchtype=>$searchtype), class=>"list",
2208 title=>"Search for commits $performed by $author"},
2209 $displaytext);
2211 } else {
2212 return $displaytext;
2216 # format the author name of the given commit with the given tag
2217 # the author name is chopped and escaped according to the other
2218 # optional parameters (see chop_str).
2219 sub format_author_html {
2220 my $tag = shift;
2221 my $co = shift;
2222 my $author = chop_and_escape_str($co->{'author_name'}, @_);
2223 return "<$tag class=\"author\">" .
2224 format_search_author($co->{'author_name'}, "author",
2225 git_get_avatar($co->{'author_email'}, -pad_after => 1) .
2226 $author) .
2227 "</$tag>";
2230 # format git diff header line, i.e. "diff --(git|combined|cc) ..."
2231 sub format_git_diff_header_line {
2232 my $line = shift;
2233 my $diffinfo = shift;
2234 my ($from, $to) = @_;
2236 if ($diffinfo->{'nparents'}) {
2237 # combined diff
2238 $line =~ s!^(diff (.*?) )"?.*$!$1!;
2239 if ($to->{'href'}) {
2240 $line .= $cgi->a({-href => $to->{'href'}, -class => "path"},
2241 esc_path($to->{'file'}));
2242 } else { # file was deleted (no href)
2243 $line .= esc_path($to->{'file'});
2245 } else {
2246 # "ordinary" diff
2247 $line =~ s!^(diff (.*?) )"?a/.*$!$1!;
2248 if ($from->{'href'}) {
2249 $line .= $cgi->a({-href => $from->{'href'}, -class => "path"},
2250 'a/' . esc_path($from->{'file'}));
2251 } else { # file was added (no href)
2252 $line .= 'a/' . esc_path($from->{'file'});
2254 $line .= ' ';
2255 if ($to->{'href'}) {
2256 $line .= $cgi->a({-href => $to->{'href'}, -class => "path"},
2257 'b/' . esc_path($to->{'file'}));
2258 } else { # file was deleted
2259 $line .= 'b/' . esc_path($to->{'file'});
2263 return "<div class=\"diff header\">$line</div>\n";
2266 # format extended diff header line, before patch itself
2267 sub format_extended_diff_header_line {
2268 my $line = shift;
2269 my $diffinfo = shift;
2270 my ($from, $to) = @_;
2272 # match <path>
2273 if ($line =~ s!^((copy|rename) from ).*$!$1! && $from->{'href'}) {
2274 $line .= $cgi->a({-href=>$from->{'href'}, -class=>"path"},
2275 esc_path($from->{'file'}));
2277 if ($line =~ s!^((copy|rename) to ).*$!$1! && $to->{'href'}) {
2278 $line .= $cgi->a({-href=>$to->{'href'}, -class=>"path"},
2279 esc_path($to->{'file'}));
2281 # match single <mode>
2282 if ($line =~ m/\s(\d{6})$/) {
2283 $line .= '<span class="info"> (' .
2284 file_type_long($1) .
2285 ')</span>';
2287 # match <hash>
2288 if ($line =~ m/^index [0-9a-fA-F]{40},[0-9a-fA-F]{40}/) {
2289 # can match only for combined diff
2290 $line = 'index ';
2291 for (my $i = 0; $i < $diffinfo->{'nparents'}; $i++) {
2292 if ($from->{'href'}[$i]) {
2293 $line .= $cgi->a({-href=>$from->{'href'}[$i],
2294 -class=>"hash"},
2295 substr($diffinfo->{'from_id'}[$i],0,7));
2296 } else {
2297 $line .= '0' x 7;
2299 # separator
2300 $line .= ',' if ($i < $diffinfo->{'nparents'} - 1);
2302 $line .= '..';
2303 if ($to->{'href'}) {
2304 $line .= $cgi->a({-href=>$to->{'href'}, -class=>"hash"},
2305 substr($diffinfo->{'to_id'},0,7));
2306 } else {
2307 $line .= '0' x 7;
2310 } elsif ($line =~ m/^index [0-9a-fA-F]{40}..[0-9a-fA-F]{40}/) {
2311 # can match only for ordinary diff
2312 my ($from_link, $to_link);
2313 if ($from->{'href'}) {
2314 $from_link = $cgi->a({-href=>$from->{'href'}, -class=>"hash"},
2315 substr($diffinfo->{'from_id'},0,7));
2316 } else {
2317 $from_link = '0' x 7;
2319 if ($to->{'href'}) {
2320 $to_link = $cgi->a({-href=>$to->{'href'}, -class=>"hash"},
2321 substr($diffinfo->{'to_id'},0,7));
2322 } else {
2323 $to_link = '0' x 7;
2325 my ($from_id, $to_id) = ($diffinfo->{'from_id'}, $diffinfo->{'to_id'});
2326 $line =~ s!$from_id\.\.$to_id!$from_link..$to_link!;
2329 return $line . "<br/>\n";
2332 # format from-file/to-file diff header
2333 sub format_diff_from_to_header {
2334 my ($from_line, $to_line, $diffinfo, $from, $to, @parents) = @_;
2335 my $line;
2336 my $result = '';
2338 $line = $from_line;
2339 #assert($line =~ m/^---/) if DEBUG;
2340 # no extra formatting for "^--- /dev/null"
2341 if (! $diffinfo->{'nparents'}) {
2342 # ordinary (single parent) diff
2343 if ($line =~ m!^--- "?a/!) {
2344 if ($from->{'href'}) {
2345 $line = '--- a/' .
2346 $cgi->a({-href=>$from->{'href'}, -class=>"path"},
2347 esc_path($from->{'file'}));
2348 } else {
2349 $line = '--- a/' .
2350 esc_path($from->{'file'});
2353 $result .= qq!<div class="diff from_file">$line</div>\n!;
2355 } else {
2356 # combined diff (merge commit)
2357 for (my $i = 0; $i < $diffinfo->{'nparents'}; $i++) {
2358 if ($from->{'href'}[$i]) {
2359 $line = '--- ' .
2360 $cgi->a({-href=>href(action=>"blobdiff",
2361 hash_parent=>$diffinfo->{'from_id'}[$i],
2362 hash_parent_base=>$parents[$i],
2363 file_parent=>$from->{'file'}[$i],
2364 hash=>$diffinfo->{'to_id'},
2365 hash_base=>$hash,
2366 file_name=>$to->{'file'}),
2367 -class=>"path",
2368 -title=>"diff" . ($i+1)},
2369 $i+1) .
2370 '/' .
2371 $cgi->a({-href=>$from->{'href'}[$i], -class=>"path"},
2372 esc_path($from->{'file'}[$i]));
2373 } else {
2374 $line = '--- /dev/null';
2376 $result .= qq!<div class="diff from_file">$line</div>\n!;
2380 $line = $to_line;
2381 #assert($line =~ m/^\+\+\+/) if DEBUG;
2382 # no extra formatting for "^+++ /dev/null"
2383 if ($line =~ m!^\+\+\+ "?b/!) {
2384 if ($to->{'href'}) {
2385 $line = '+++ b/' .
2386 $cgi->a({-href=>$to->{'href'}, -class=>"path"},
2387 esc_path($to->{'file'}));
2388 } else {
2389 $line = '+++ b/' .
2390 esc_path($to->{'file'});
2393 $result .= qq!<div class="diff to_file">$line</div>\n!;
2395 return $result;
2398 # create note for patch simplified by combined diff
2399 sub format_diff_cc_simplified {
2400 my ($diffinfo, @parents) = @_;
2401 my $result = '';
2403 $result .= "<div class=\"diff header\">" .
2404 "diff --cc ";
2405 if (!is_deleted($diffinfo)) {
2406 $result .= $cgi->a({-href => href(action=>"blob",
2407 hash_base=>$hash,
2408 hash=>$diffinfo->{'to_id'},
2409 file_name=>$diffinfo->{'to_file'}),
2410 -class => "path"},
2411 esc_path($diffinfo->{'to_file'}));
2412 } else {
2413 $result .= esc_path($diffinfo->{'to_file'});
2415 $result .= "</div>\n" . # class="diff header"
2416 "<div class=\"diff nodifferences\">" .
2417 "Simple merge" .
2418 "</div>\n"; # class="diff nodifferences"
2420 return $result;
2423 sub diff_line_class {
2424 my ($line, $from, $to) = @_;
2426 # ordinary diff
2427 my $num_sign = 1;
2428 # combined diff
2429 if ($from && $to && ref($from->{'href'}) eq "ARRAY") {
2430 $num_sign = scalar @{$from->{'href'}};
2433 my @diff_line_classifier = (
2434 { regexp => qr/^\@\@{$num_sign} /, class => "chunk_header"},
2435 { regexp => qr/^\\/, class => "incomplete" },
2436 { regexp => qr/^ {$num_sign}/, class => "ctx" },
2437 # classifier for context must come before classifier add/rem,
2438 # or we would have to use more complicated regexp, for example
2439 # qr/(?= {0,$m}\+)[+ ]{$num_sign}/, where $m = $num_sign - 1;
2440 { regexp => qr/^[+ ]{$num_sign}/, class => "add" },
2441 { regexp => qr/^[- ]{$num_sign}/, class => "rem" },
2443 for my $clsfy (@diff_line_classifier) {
2444 return $clsfy->{'class'}
2445 if ($line =~ $clsfy->{'regexp'});
2448 # fallback
2449 return "";
2452 # assumes that $from and $to are defined and correctly filled,
2453 # and that $line holds a line of chunk header for unified diff
2454 sub format_unidiff_chunk_header {
2455 my ($line, $from, $to) = @_;
2457 my ($from_text, $from_start, $from_lines, $to_text, $to_start, $to_lines, $section) =
2458 $line =~ m/^\@{2} (-(\d+)(?:,(\d+))?) (\+(\d+)(?:,(\d+))?) \@{2}(.*)$/;
2460 $from_lines = 0 unless defined $from_lines;
2461 $to_lines = 0 unless defined $to_lines;
2463 if ($from->{'href'}) {
2464 $from_text = $cgi->a({-href=>"$from->{'href'}#l$from_start",
2465 -class=>"list"}, $from_text);
2467 if ($to->{'href'}) {
2468 $to_text = $cgi->a({-href=>"$to->{'href'}#l$to_start",
2469 -class=>"list"}, $to_text);
2471 $line = "<span class=\"chunk_info\">@@ $from_text $to_text @@</span>" .
2472 "<span class=\"section\">" . esc_html($section, -nbsp=>1) . "</span>";
2473 return $line;
2476 # assumes that $from and $to are defined and correctly filled,
2477 # and that $line holds a line of chunk header for combined diff
2478 sub format_cc_diff_chunk_header {
2479 my ($line, $from, $to) = @_;
2481 my ($prefix, $ranges, $section) = $line =~ m/^(\@+) (.*?) \@+(.*)$/;
2482 my (@from_text, @from_start, @from_nlines, $to_text, $to_start, $to_nlines);
2484 @from_text = split(' ', $ranges);
2485 for (my $i = 0; $i < @from_text; ++$i) {
2486 ($from_start[$i], $from_nlines[$i]) =
2487 (split(',', substr($from_text[$i], 1)), 0);
2490 $to_text = pop @from_text;
2491 $to_start = pop @from_start;
2492 $to_nlines = pop @from_nlines;
2494 $line = "<span class=\"chunk_info\">$prefix ";
2495 for (my $i = 0; $i < @from_text; ++$i) {
2496 if ($from->{'href'}[$i]) {
2497 $line .= $cgi->a({-href=>"$from->{'href'}[$i]#l$from_start[$i]",
2498 -class=>"list"}, $from_text[$i]);
2499 } else {
2500 $line .= $from_text[$i];
2502 $line .= " ";
2504 if ($to->{'href'}) {
2505 $line .= $cgi->a({-href=>"$to->{'href'}#l$to_start",
2506 -class=>"list"}, $to_text);
2507 } else {
2508 $line .= $to_text;
2510 $line .= " $prefix</span>" .
2511 "<span class=\"section\">" . esc_html($section, -nbsp=>1) . "</span>";
2512 return $line;
2515 # process patch (diff) line (not to be used for diff headers),
2516 # returning HTML-formatted (but not wrapped) line.
2517 # If the line is passed as a reference, it is treated as HTML and not
2518 # esc_html()'ed.
2519 sub format_diff_line {
2520 my ($line, $diff_class, $from, $to) = @_;
2522 if (ref($line)) {
2523 $line = $$line;
2524 } else {
2525 chomp $line;
2526 $line = untabify($line);
2528 if ($from && $to && $line =~ m/^\@{2} /) {
2529 $line = format_unidiff_chunk_header($line, $from, $to);
2530 } elsif ($from && $to && $line =~ m/^\@{3}/) {
2531 $line = format_cc_diff_chunk_header($line, $from, $to);
2532 } else {
2533 $line = esc_html($line, -nbsp=>1);
2537 my $diff_classes = "diff";
2538 $diff_classes .= " $diff_class" if ($diff_class);
2539 $line = "<div class=\"$diff_classes\">$line</div>\n";
2541 return $line;
2544 # Generates undef or something like "_snapshot_" or "snapshot (_tbz2_ _zip_)",
2545 # linked. Pass the hash of the tree/commit to snapshot.
2546 sub format_snapshot_links {
2547 my ($hash) = @_;
2548 my $num_fmts = @snapshot_fmts;
2549 if ($num_fmts > 1) {
2550 # A parenthesized list of links bearing format names.
2551 # e.g. "snapshot (_tar.gz_ _zip_)"
2552 return "snapshot (" . join(' ', map
2553 $cgi->a({
2554 -href => href(
2555 action=>"snapshot",
2556 hash=>$hash,
2557 snapshot_format=>$_
2559 }, $known_snapshot_formats{$_}{'display'})
2560 , @snapshot_fmts) . ")";
2561 } elsif ($num_fmts == 1) {
2562 # A single "snapshot" link whose tooltip bears the format name.
2563 # i.e. "_snapshot_"
2564 my ($fmt) = @snapshot_fmts;
2565 return
2566 $cgi->a({
2567 -href => href(
2568 action=>"snapshot",
2569 hash=>$hash,
2570 snapshot_format=>$fmt
2572 -title => "in format: $known_snapshot_formats{$fmt}{'display'}"
2573 }, "snapshot");
2574 } else { # $num_fmts == 0
2575 return undef;
2579 ## ......................................................................
2580 ## functions returning values to be passed, perhaps after some
2581 ## transformation, to other functions; e.g. returning arguments to href()
2583 # returns hash to be passed to href to generate gitweb URL
2584 # in -title key it returns description of link
2585 sub get_feed_info {
2586 my $format = shift || 'Atom';
2587 my %res = (action => lc($format));
2588 my $matched_ref = 0;
2590 # feed links are possible only for project views
2591 return unless (defined $project);
2592 # some views should link to OPML, or to generic project feed,
2593 # or don't have specific feed yet (so they should use generic)
2594 return if (!$action || $action =~ /^(?:tags|heads|forks|tag|search)$/x);
2596 my $branch = undef;
2597 # branches refs uses 'refs/' + $get_branch_refs()[x] + '/' prefix
2598 # (fullname) to differentiate from tag links; this also makes
2599 # possible to detect branch links
2600 for my $ref (get_branch_refs()) {
2601 if ((defined $hash_base && $hash_base =~ m!^refs/\Q$ref\E/(.*)$!) ||
2602 (defined $hash && $hash =~ m!^refs/\Q$ref\E/(.*)$!)) {
2603 $branch = $1;
2604 $matched_ref = $ref;
2605 last;
2608 # find log type for feed description (title)
2609 my $type = 'log';
2610 if (defined $file_name) {
2611 $type = "history of $file_name";
2612 $type .= "/" if ($action eq 'tree');
2613 $type .= " on '$branch'" if (defined $branch);
2614 } else {
2615 $type = "log of $branch" if (defined $branch);
2618 $res{-title} = $type;
2619 $res{'hash'} = (defined $branch ? "refs/$matched_ref/$branch" : undef);
2620 $res{'file_name'} = $file_name;
2622 return %res;
2625 ## ----------------------------------------------------------------------
2626 ## git utility subroutines, invoking git commands
2628 # returns path to the core git executable and the --git-dir parameter as list
2629 sub git_cmd {
2630 $number_of_git_cmds++;
2631 return $GIT, '--git-dir='.$git_dir;
2634 # quote the given arguments for passing them to the shell
2635 # quote_command("command", "arg 1", "arg with ' and ! characters")
2636 # => "'command' 'arg 1' 'arg with '\'' and '\!' characters'"
2637 # Try to avoid using this function wherever possible.
2638 sub quote_command {
2639 return join(' ',
2640 map { my $a = $_; $a =~ s/(['!])/'\\$1'/g; "'$a'" } @_ );
2643 # get HEAD ref of given project as hash
2644 sub git_get_head_hash {
2645 return git_get_full_hash(shift, 'HEAD');
2648 sub git_get_full_hash {
2649 return git_get_hash(@_);
2652 sub git_get_short_hash {
2653 return git_get_hash(@_, '--short=7');
2656 sub git_get_hash {
2657 my ($project, $hash, @options) = @_;
2658 my $o_git_dir = $git_dir;
2659 my $retval = undef;
2660 $git_dir = "$projectroot/$project";
2661 if (open my $fd, '-|', git_cmd(), 'rev-parse',
2662 '--verify', '-q', @options, $hash) {
2663 $retval = <$fd>;
2664 chomp $retval if defined $retval;
2665 close $fd;
2667 if (defined $o_git_dir) {
2668 $git_dir = $o_git_dir;
2670 return $retval;
2673 # get type of given object
2674 sub git_get_type {
2675 my $hash = shift;
2677 open my $fd, "-|", git_cmd(), "cat-file", '-t', $hash or return;
2678 my $type = <$fd>;
2679 close $fd or return;
2680 chomp $type;
2681 return $type;
2684 # repository configuration
2685 our $config_file = '';
2686 our %config;
2688 # store multiple values for single key as anonymous array reference
2689 # single values stored directly in the hash, not as [ <value> ]
2690 sub hash_set_multi {
2691 my ($hash, $key, $value) = @_;
2693 if (!exists $hash->{$key}) {
2694 $hash->{$key} = $value;
2695 } elsif (!ref $hash->{$key}) {
2696 $hash->{$key} = [ $hash->{$key}, $value ];
2697 } else {
2698 push @{$hash->{$key}}, $value;
2702 # return hash of git project configuration
2703 # optionally limited to some section, e.g. 'gitweb'
2704 sub git_parse_project_config {
2705 my $section_regexp = shift;
2706 my %config;
2708 local $/ = "\0";
2710 open my $fh, "-|", git_cmd(), "config", '-z', '-l',
2711 or return;
2713 while (my $keyval = <$fh>) {
2714 chomp $keyval;
2715 my ($key, $value) = split(/\n/, $keyval, 2);
2717 hash_set_multi(\%config, $key, $value)
2718 if (!defined $section_regexp || $key =~ /^(?:$section_regexp)\./o);
2720 close $fh;
2722 return %config;
2725 # convert config value to boolean: 'true' or 'false'
2726 # no value, number > 0, 'true' and 'yes' values are true
2727 # rest of values are treated as false (never as error)
2728 sub config_to_bool {
2729 my $val = shift;
2731 return 1 if !defined $val; # section.key
2733 # strip leading and trailing whitespace
2734 $val =~ s/^\s+//;
2735 $val =~ s/\s+$//;
2737 return (($val =~ /^\d+$/ && $val) || # section.key = 1
2738 ($val =~ /^(?:true|yes)$/i)); # section.key = true
2741 # convert config value to simple decimal number
2742 # an optional value suffix of 'k', 'm', or 'g' will cause the value
2743 # to be multiplied by 1024, 1048576, or 1073741824
2744 sub config_to_int {
2745 my $val = shift;
2747 # strip leading and trailing whitespace
2748 $val =~ s/^\s+//;
2749 $val =~ s/\s+$//;
2751 if (my ($num, $unit) = ($val =~ /^([0-9]*)([kmg])$/i)) {
2752 $unit = lc($unit);
2753 # unknown unit is treated as 1
2754 return $num * ($unit eq 'g' ? 1073741824 :
2755 $unit eq 'm' ? 1048576 :
2756 $unit eq 'k' ? 1024 : 1);
2758 return $val;
2761 # convert config value to array reference, if needed
2762 sub config_to_multi {
2763 my $val = shift;
2765 return ref($val) ? $val : (defined($val) ? [ $val ] : []);
2768 sub git_get_project_config {
2769 my ($key, $type) = @_;
2771 return unless defined $git_dir;
2773 # key sanity check
2774 return unless ($key);
2775 # only subsection, if exists, is case sensitive,
2776 # and not lowercased by 'git config -z -l'
2777 if (my ($hi, $mi, $lo) = ($key =~ /^([^.]*)\.(.*)\.([^.]*)$/)) {
2778 $lo =~ s/_//g;
2779 $key = join(".", lc($hi), $mi, lc($lo));
2780 return if ($lo =~ /\W/ || $hi =~ /\W/);
2781 } else {
2782 $key = lc($key);
2783 $key =~ s/_//g;
2784 return if ($key =~ /\W/);
2786 $key =~ s/^gitweb\.//;
2788 # type sanity check
2789 if (defined $type) {
2790 $type =~ s/^--//;
2791 $type = undef
2792 unless ($type eq 'bool' || $type eq 'int');
2795 # get config
2796 if (!defined $config_file ||
2797 $config_file ne "$git_dir/config") {
2798 %config = git_parse_project_config('gitweb');
2799 $config_file = "$git_dir/config";
2802 # check if config variable (key) exists
2803 return unless exists $config{"gitweb.$key"};
2805 # ensure given type
2806 if (!defined $type) {
2807 return $config{"gitweb.$key"};
2808 } elsif ($type eq 'bool') {
2809 # backward compatibility: 'git config --bool' returns true/false
2810 return config_to_bool($config{"gitweb.$key"}) ? 'true' : 'false';
2811 } elsif ($type eq 'int') {
2812 return config_to_int($config{"gitweb.$key"});
2814 return $config{"gitweb.$key"};
2817 # get hash of given path at given ref
2818 sub git_get_hash_by_path {
2819 my $base = shift;
2820 my $path = shift || return undef;
2821 my $type = shift;
2823 $path =~ s,/+$,,;
2825 open my $fd, "-|", git_cmd(), "ls-tree", $base, "--", $path
2826 or die_error(500, "Open git-ls-tree failed");
2827 my $line = <$fd>;
2828 close $fd or return undef;
2830 if (!defined $line) {
2831 # there is no tree or hash given by $path at $base
2832 return undef;
2835 #'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'
2836 $line =~ m/^([0-9]+) (.+) ([0-9a-fA-F]{40})\t/;
2837 if (defined $type && $type ne $2) {
2838 # type doesn't match
2839 return undef;
2841 return $3;
2844 # get path of entry with given hash at given tree-ish (ref)
2845 # used to get 'from' filename for combined diff (merge commit) for renames
2846 sub git_get_path_by_hash {
2847 my $base = shift || return;
2848 my $hash = shift || return;
2850 local $/ = "\0";
2852 open my $fd, "-|", git_cmd(), "ls-tree", '-r', '-t', '-z', $base
2853 or return undef;
2854 while (my $line = <$fd>) {
2855 chomp $line;
2857 #'040000 tree 595596a6a9117ddba9fe379b6b012b558bac8423 gitweb'
2858 #'100644 blob e02e90f0429be0d2a69b76571101f20b8f75530f gitweb/README'
2859 if ($line =~ m/(?:[0-9]+) (?:.+) $hash\t(.+)$/) {
2860 close $fd;
2861 return $1;
2864 close $fd;
2865 return undef;
2868 ## ......................................................................
2869 ## git utility functions, directly accessing git repository
2871 # get the value of config variable either from file named as the variable
2872 # itself in the repository ($GIT_DIR/$name file), or from gitweb.$name
2873 # configuration variable in the repository config file.
2874 sub git_get_file_or_project_config {
2875 my ($path, $name) = @_;
2877 $git_dir = "$projectroot/$path";
2878 open my $fd, '<', "$git_dir/$name"
2879 or return git_get_project_config($name);
2880 my $conf = <$fd>;
2881 close $fd;
2882 if (defined $conf) {
2883 chomp $conf;
2885 return $conf;
2888 sub git_get_project_description {
2889 my $path = shift;
2890 return git_get_file_or_project_config($path, 'description');
2893 sub git_get_project_category {
2894 my $path = shift;
2895 return git_get_file_or_project_config($path, 'category');
2899 # supported formats:
2900 # * $GIT_DIR/ctags/<tagname> file (in 'ctags' subdirectory)
2901 # - if its contents is a number, use it as tag weight,
2902 # - otherwise add a tag with weight 1
2903 # * $GIT_DIR/ctags file, each line is a tag (with weight 1)
2904 # the same value multiple times increases tag weight
2905 # * `gitweb.ctag' multi-valued repo config variable
2906 sub git_get_project_ctags {
2907 my $project = shift;
2908 my $ctags = {};
2910 $git_dir = "$projectroot/$project";
2911 if (opendir my $dh, "$git_dir/ctags") {
2912 my @files = grep { -f $_ } map { "$git_dir/ctags/$_" } readdir($dh);
2913 foreach my $tagfile (@files) {
2914 open my $ct, '<', $tagfile
2915 or next;
2916 my $val = <$ct>;
2917 chomp $val if $val;
2918 close $ct;
2920 (my $ctag = $tagfile) =~ s#.*/##;
2921 if ($val =~ /^\d+$/) {
2922 $ctags->{$ctag} = $val;
2923 } else {
2924 $ctags->{$ctag} = 1;
2927 closedir $dh;
2929 } elsif (open my $fh, '<', "$git_dir/ctags") {
2930 while (my $line = <$fh>) {
2931 chomp $line;
2932 $ctags->{$line}++ if $line;
2934 close $fh;
2936 } else {
2937 my $taglist = config_to_multi(git_get_project_config('ctag'));
2938 foreach my $tag (@$taglist) {
2939 $ctags->{$tag}++;
2943 return $ctags;
2946 # return hash, where keys are content tags ('ctags'),
2947 # and values are sum of weights of given tag in every project
2948 sub git_gather_all_ctags {
2949 my $projects = shift;
2950 my $ctags = {};
2952 foreach my $p (@$projects) {
2953 foreach my $ct (keys %{$p->{'ctags'}}) {
2954 $ctags->{$ct} += $p->{'ctags'}->{$ct};
2958 return $ctags;
2961 sub git_populate_project_tagcloud {
2962 my $ctags = shift;
2964 # First, merge different-cased tags; tags vote on casing
2965 my %ctags_lc;
2966 foreach (keys %$ctags) {
2967 $ctags_lc{lc $_}->{count} += $ctags->{$_};
2968 if (not $ctags_lc{lc $_}->{topcount}
2969 or $ctags_lc{lc $_}->{topcount} < $ctags->{$_}) {
2970 $ctags_lc{lc $_}->{topcount} = $ctags->{$_};
2971 $ctags_lc{lc $_}->{topname} = $_;
2975 my $cloud;
2976 my $matched = $input_params{'ctag'};
2977 if (eval { require HTML::TagCloud; 1; }) {
2978 $cloud = HTML::TagCloud->new;
2979 foreach my $ctag (sort keys %ctags_lc) {
2980 # Pad the title with spaces so that the cloud looks
2981 # less crammed.
2982 my $title = esc_html($ctags_lc{$ctag}->{topname});
2983 $title =~ s/ /&nbsp;/g;
2984 $title =~ s/^/&nbsp;/g;
2985 $title =~ s/$/&nbsp;/g;
2986 if (defined $matched && $matched eq $ctag) {
2987 $title = qq(<span class="match">$title</span>);
2989 $cloud->add($title, href(project=>undef, ctag=>$ctag),
2990 $ctags_lc{$ctag}->{count});
2992 } else {
2993 $cloud = {};
2994 foreach my $ctag (keys %ctags_lc) {
2995 my $title = esc_html($ctags_lc{$ctag}->{topname}, -nbsp=>1);
2996 if (defined $matched && $matched eq $ctag) {
2997 $title = qq(<span class="match">$title</span>);
2999 $cloud->{$ctag}{count} = $ctags_lc{$ctag}->{count};
3000 $cloud->{$ctag}{ctag} =
3001 $cgi->a({-href=>href(project=>undef, ctag=>$ctag)}, $title);
3004 return $cloud;
3007 sub git_show_project_tagcloud {
3008 my ($cloud, $count) = @_;
3009 if (ref $cloud eq 'HTML::TagCloud') {
3010 return $cloud->html_and_css($count);
3011 } else {
3012 my @tags = sort { $cloud->{$a}->{'count'} <=> $cloud->{$b}->{'count'} } keys %$cloud;
3013 return
3014 '<div id="htmltagcloud"'.($project ? '' : ' align="center"').'>' .
3015 join (', ', map {
3016 $cloud->{$_}->{'ctag'}
3017 } splice(@tags, 0, $count)) .
3018 '</div>';
3022 sub git_get_project_url_list {
3023 my $path = shift;
3025 $git_dir = "$projectroot/$path";
3026 open my $fd, '<', "$git_dir/cloneurl"
3027 or return wantarray ?
3028 @{ config_to_multi(git_get_project_config('url')) } :
3029 config_to_multi(git_get_project_config('url'));
3030 my @git_project_url_list = map { chomp; $_ } <$fd>;
3031 close $fd;
3033 return wantarray ? @git_project_url_list : \@git_project_url_list;
3036 sub git_get_projects_list {
3037 my $filter = shift || '';
3038 my $paranoid = shift;
3039 my @list;
3041 if (-d $projects_list) {
3042 # search in directory
3043 my $dir = $projects_list;
3044 # remove the trailing "/"
3045 $dir =~ s!/+$!!;
3046 my $pfxlen = length("$dir");
3047 my $pfxdepth = ($dir =~ tr!/!!);
3048 # when filtering, search only given subdirectory
3049 if ($filter && !$paranoid) {
3050 $dir .= "/$filter";
3051 $dir =~ s!/+$!!;
3054 File::Find::find({
3055 follow_fast => 1, # follow symbolic links
3056 follow_skip => 2, # ignore duplicates
3057 dangling_symlinks => 0, # ignore dangling symlinks, silently
3058 wanted => sub {
3059 # global variables
3060 our $project_maxdepth;
3061 our $projectroot;
3062 # skip project-list toplevel, if we get it.
3063 return if (m!^[/.]$!);
3064 # only directories can be git repositories
3065 return unless (-d $_);
3066 # don't traverse too deep (Find is super slow on os x)
3067 # $project_maxdepth excludes depth of $projectroot
3068 if (($File::Find::name =~ tr!/!!) - $pfxdepth > $project_maxdepth) {
3069 $File::Find::prune = 1;
3070 return;
3073 my $path = substr($File::Find::name, $pfxlen + 1);
3074 # paranoidly only filter here
3075 if ($paranoid && $filter && $path !~ m!^\Q$filter\E/!) {
3076 next;
3078 # we check related file in $projectroot
3079 if (check_export_ok("$projectroot/$path")) {
3080 push @list, { path => $path };
3081 $File::Find::prune = 1;
3084 }, "$dir");
3086 } elsif (-f $projects_list) {
3087 # read from file(url-encoded):
3088 # 'git%2Fgit.git Linus+Torvalds'
3089 # 'libs%2Fklibc%2Fklibc.git H.+Peter+Anvin'
3090 # 'linux%2Fhotplug%2Fudev.git Greg+Kroah-Hartman'
3091 open my $fd, '<', $projects_list or return;
3092 PROJECT:
3093 while (my $line = <$fd>) {
3094 chomp $line;
3095 my ($path, $owner) = split ' ', $line;
3096 $path = unescape($path);
3097 $owner = unescape($owner);
3098 if (!defined $path) {
3099 next;
3101 # if $filter is rpovided, check if $path begins with $filter
3102 if ($filter && $path !~ m!^\Q$filter\E/!) {
3103 next;
3105 if (check_export_ok("$projectroot/$path")) {
3106 my $pr = {
3107 path => $path
3109 if ($owner) {
3110 $pr->{'owner'} = to_utf8($owner);
3112 push @list, $pr;
3115 close $fd;
3117 return @list;
3120 # written with help of Tree::Trie module (Perl Artistic License, GPL compatibile)
3121 # as side effects it sets 'forks' field to list of forks for forked projects
3122 sub filter_forks_from_projects_list {
3123 my $projects = shift;
3125 my %trie; # prefix tree of directories (path components)
3126 # generate trie out of those directories that might contain forks
3127 foreach my $pr (@$projects) {
3128 my $path = $pr->{'path'};
3129 $path =~ s/\.git$//; # forks of 'repo.git' are in 'repo/' directory
3130 next if ($path =~ m!/$!); # skip non-bare repositories, e.g. 'repo/.git'
3131 next unless ($path); # skip '.git' repository: tests, git-instaweb
3132 next unless (-d "$projectroot/$path"); # containing directory exists
3133 $pr->{'forks'} = []; # there can be 0 or more forks of project
3135 # add to trie
3136 my @dirs = split('/', $path);
3137 # walk the trie, until either runs out of components or out of trie
3138 my $ref = \%trie;
3139 while (scalar @dirs &&
3140 exists($ref->{$dirs[0]})) {
3141 $ref = $ref->{shift @dirs};
3143 # create rest of trie structure from rest of components
3144 foreach my $dir (@dirs) {
3145 $ref = $ref->{$dir} = {};
3147 # create end marker, store $pr as a data
3148 $ref->{''} = $pr if (!exists $ref->{''});
3151 # filter out forks, by finding shortest prefix match for paths
3152 my @filtered;
3153 PROJECT:
3154 foreach my $pr (@$projects) {
3155 # trie lookup
3156 my $ref = \%trie;
3157 DIR:
3158 foreach my $dir (split('/', $pr->{'path'})) {
3159 if (exists $ref->{''}) {
3160 # found [shortest] prefix, is a fork - skip it
3161 push @{$ref->{''}{'forks'}}, $pr;
3162 next PROJECT;
3164 if (!exists $ref->{$dir}) {
3165 # not in trie, cannot have prefix, not a fork
3166 push @filtered, $pr;
3167 next PROJECT;
3169 # If the dir is there, we just walk one step down the trie.
3170 $ref = $ref->{$dir};
3172 # we ran out of trie
3173 # (shouldn't happen: it's either no match, or end marker)
3174 push @filtered, $pr;
3177 return @filtered;
3180 # note: fill_project_list_info must be run first,
3181 # for 'descr_long' and 'ctags' to be filled
3182 sub search_projects_list {
3183 my ($projlist, %opts) = @_;
3184 my $tagfilter = $opts{'tagfilter'};
3185 my $search_re = $opts{'search_regexp'};
3187 return @$projlist
3188 unless ($tagfilter || $search_re);
3190 # searching projects require filling to be run before it;
3191 fill_project_list_info($projlist,
3192 $tagfilter ? 'ctags' : (),
3193 $search_re ? ('path', 'descr') : ());
3194 my @projects;
3195 PROJECT:
3196 foreach my $pr (@$projlist) {
3198 if ($tagfilter) {
3199 next unless ref($pr->{'ctags'}) eq 'HASH';
3200 next unless
3201 grep { lc($_) eq lc($tagfilter) } keys %{$pr->{'ctags'}};
3204 if ($search_re) {
3205 next unless
3206 $pr->{'path'} =~ /$search_re/ ||
3207 $pr->{'descr_long'} =~ /$search_re/;
3210 push @projects, $pr;
3213 return @projects;
3216 our $gitweb_project_owner = undef;
3217 sub git_get_project_list_from_file {
3219 return if (defined $gitweb_project_owner);
3221 $gitweb_project_owner = {};
3222 # read from file (url-encoded):
3223 # 'git%2Fgit.git Linus+Torvalds'
3224 # 'libs%2Fklibc%2Fklibc.git H.+Peter+Anvin'
3225 # 'linux%2Fhotplug%2Fudev.git Greg+Kroah-Hartman'
3226 if (-f $projects_list) {
3227 open(my $fd, '<', $projects_list);
3228 while (my $line = <$fd>) {
3229 chomp $line;
3230 my ($pr, $ow) = split ' ', $line;
3231 $pr = unescape($pr);
3232 $ow = unescape($ow);
3233 $gitweb_project_owner->{$pr} = to_utf8($ow);
3235 close $fd;
3239 sub git_get_project_owner {
3240 my $project = shift;
3241 my $owner;
3243 return undef unless $project;
3244 $git_dir = "$projectroot/$project";
3246 if (!defined $gitweb_project_owner) {
3247 git_get_project_list_from_file();
3250 if (exists $gitweb_project_owner->{$project}) {
3251 $owner = $gitweb_project_owner->{$project};
3253 if (!defined $owner){
3254 $owner = git_get_project_config('owner');
3256 if (!defined $owner) {
3257 $owner = get_file_owner("$git_dir");
3260 return $owner;
3263 sub git_get_last_activity {
3264 my ($path) = @_;
3265 my $fd;
3267 $git_dir = "$projectroot/$path";
3268 open($fd, "-|", git_cmd(), 'for-each-ref',
3269 '--format=%(committer)',
3270 '--sort=-committerdate',
3271 '--count=1',
3272 map { "refs/$_" } get_branch_refs ()) or return;
3273 my $most_recent = <$fd>;
3274 close $fd or return;
3275 if (defined $most_recent &&
3276 $most_recent =~ / (\d+) [-+][01]\d\d\d$/) {
3277 my $timestamp = $1;
3278 my $age = time - $timestamp;
3279 return ($age, age_string($age));
3281 return (undef, undef);
3284 # Implementation note: when a single remote is wanted, we cannot use 'git
3285 # remote show -n' because that command always work (assuming it's a remote URL
3286 # if it's not defined), and we cannot use 'git remote show' because that would
3287 # try to make a network roundtrip. So the only way to find if that particular
3288 # remote is defined is to walk the list provided by 'git remote -v' and stop if
3289 # and when we find what we want.
3290 sub git_get_remotes_list {
3291 my $wanted = shift;
3292 my %remotes = ();
3294 open my $fd, '-|' , git_cmd(), 'remote', '-v';
3295 return unless $fd;
3296 while (my $remote = <$fd>) {
3297 chomp $remote;
3298 $remote =~ s!\t(.*?)\s+\((\w+)\)$!!;
3299 next if $wanted and not $remote eq $wanted;
3300 my ($url, $key) = ($1, $2);
3302 $remotes{$remote} ||= { 'heads' => () };
3303 $remotes{$remote}{$key} = $url;
3305 close $fd or return;
3306 return wantarray ? %remotes : \%remotes;
3309 # Takes a hash of remotes as first parameter and fills it by adding the
3310 # available remote heads for each of the indicated remotes.
3311 sub fill_remote_heads {
3312 my $remotes = shift;
3313 my @heads = map { "remotes/$_" } keys %$remotes;
3314 my @remoteheads = git_get_heads_list(undef, @heads);
3315 foreach my $remote (keys %$remotes) {
3316 $remotes->{$remote}{'heads'} = [ grep {
3317 $_->{'name'} =~ s!^$remote/!!
3318 } @remoteheads ];
3322 sub git_get_references {
3323 my $type = shift || "";
3324 my %refs;
3325 # 5dc01c595e6c6ec9ccda4f6f69c131c0dd945f8c refs/tags/v2.6.11
3326 # c39ae07f393806ccf406ef966e9a15afc43cc36a refs/tags/v2.6.11^{}
3327 open my $fd, "-|", git_cmd(), "show-ref", "--dereference",
3328 ($type ? ("--", "refs/$type") : ()) # use -- <pattern> if $type
3329 or return;
3331 while (my $line = <$fd>) {
3332 chomp $line;
3333 if ($line =~ m!^([0-9a-fA-F]{40})\srefs/($type.*)$!) {
3334 if (defined $refs{$1}) {
3335 push @{$refs{$1}}, $2;
3336 } else {
3337 $refs{$1} = [ $2 ];
3341 close $fd or return;
3342 return \%refs;
3345 sub git_get_rev_name_tags {
3346 my $hash = shift || return undef;
3348 open my $fd, "-|", git_cmd(), "name-rev", "--tags", $hash
3349 or return;
3350 my $name_rev = <$fd>;
3351 close $fd;
3353 if ($name_rev =~ m|^$hash tags/(.*)$|) {
3354 return $1;
3355 } else {
3356 # catches also '$hash undefined' output
3357 return undef;
3361 ## ----------------------------------------------------------------------
3362 ## parse to hash functions
3364 sub parse_date {
3365 my $epoch = shift;
3366 my $tz = shift || "-0000";
3368 my %date;
3369 my @months = ("Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec");
3370 my @days = ("Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat");
3371 my ($sec, $min, $hour, $mday, $mon, $year, $wday, $yday) = gmtime($epoch);
3372 $date{'hour'} = $hour;
3373 $date{'minute'} = $min;
3374 $date{'mday'} = $mday;
3375 $date{'day'} = $days[$wday];
3376 $date{'month'} = $months[$mon];
3377 $date{'rfc2822'} = sprintf "%s, %d %s %4d %02d:%02d:%02d +0000",
3378 $days[$wday], $mday, $months[$mon], 1900+$year, $hour ,$min, $sec;
3379 $date{'mday-time'} = sprintf "%d %s %02d:%02d",
3380 $mday, $months[$mon], $hour ,$min;
3381 $date{'iso-8601'} = sprintf "%04d-%02d-%02dT%02d:%02d:%02dZ",
3382 1900+$year, 1+$mon, $mday, $hour ,$min, $sec;
3384 my ($tz_sign, $tz_hour, $tz_min) =
3385 ($tz =~ m/^([-+])(\d\d)(\d\d)$/);
3386 $tz_sign = ($tz_sign eq '-' ? -1 : +1);
3387 my $local = $epoch + $tz_sign*((($tz_hour*60) + $tz_min)*60);
3388 ($sec, $min, $hour, $mday, $mon, $year, $wday, $yday) = gmtime($local);
3389 $date{'hour_local'} = $hour;
3390 $date{'minute_local'} = $min;
3391 $date{'tz_local'} = $tz;
3392 $date{'iso-tz'} = sprintf("%04d-%02d-%02d %02d:%02d:%02d %s",
3393 1900+$year, $mon+1, $mday,
3394 $hour, $min, $sec, $tz);
3395 return %date;
3398 sub parse_tag {
3399 my $tag_id = shift;
3400 my %tag;
3401 my @comment;
3403 open my $fd, "-|", git_cmd(), "cat-file", "tag", $tag_id or return;
3404 $tag{'id'} = $tag_id;
3405 while (my $line = <$fd>) {
3406 chomp $line;
3407 if ($line =~ m/^object ([0-9a-fA-F]{40})$/) {
3408 $tag{'object'} = $1;
3409 } elsif ($line =~ m/^type (.+)$/) {
3410 $tag{'type'} = $1;
3411 } elsif ($line =~ m/^tag (.+)$/) {
3412 $tag{'name'} = $1;
3413 } elsif ($line =~ m/^tagger (.*) ([0-9]+) (.*)$/) {
3414 $tag{'author'} = $1;
3415 $tag{'author_epoch'} = $2;
3416 $tag{'author_tz'} = $3;
3417 if ($tag{'author'} =~ m/^([^<]+) <([^>]*)>/) {
3418 $tag{'author_name'} = $1;
3419 $tag{'author_email'} = $2;
3420 } else {
3421 $tag{'author_name'} = $tag{'author'};
3423 } elsif ($line =~ m/--BEGIN/) {
3424 push @comment, $line;
3425 last;
3426 } elsif ($line eq "") {
3427 last;
3430 push @comment, <$fd>;
3431 $tag{'comment'} = \@comment;
3432 close $fd or return;
3433 if (!defined $tag{'name'}) {
3434 return
3436 return %tag
3439 sub parse_commit_text {
3440 my ($commit_text, $withparents) = @_;
3441 my @commit_lines = split '\n', $commit_text;
3442 my %co;
3444 pop @commit_lines; # Remove '\0'
3446 if (! @commit_lines) {
3447 return;
3450 my $header = shift @commit_lines;
3451 if ($header !~ m/^[0-9a-fA-F]{40}/) {
3452 return;
3454 ($co{'id'}, my @parents) = split ' ', $header;
3455 while (my $line = shift @commit_lines) {
3456 last if $line eq "\n";
3457 if ($line =~ m/^tree ([0-9a-fA-F]{40})$/) {
3458 $co{'tree'} = $1;
3459 } elsif ((!defined $withparents) && ($line =~ m/^parent ([0-9a-fA-F]{40})$/)) {
3460 push @parents, $1;
3461 } elsif ($line =~ m/^author (.*) ([0-9]+) (.*)$/) {
3462 $co{'author'} = to_utf8($1);
3463 $co{'author_epoch'} = $2;
3464 $co{'author_tz'} = $3;
3465 if ($co{'author'} =~ m/^([^<]+) <([^>]*)>/) {
3466 $co{'author_name'} = $1;
3467 $co{'author_email'} = $2;
3468 } else {
3469 $co{'author_name'} = $co{'author'};
3471 } elsif ($line =~ m/^committer (.*) ([0-9]+) (.*)$/) {
3472 $co{'committer'} = to_utf8($1);
3473 $co{'committer_epoch'} = $2;
3474 $co{'committer_tz'} = $3;
3475 if ($co{'committer'} =~ m/^([^<]+) <([^>]*)>/) {
3476 $co{'committer_name'} = $1;
3477 $co{'committer_email'} = $2;
3478 } else {
3479 $co{'committer_name'} = $co{'committer'};
3483 if (!defined $co{'tree'}) {
3484 return;
3486 $co{'parents'} = \@parents;
3487 $co{'parent'} = $parents[0];
3489 foreach my $title (@commit_lines) {
3490 $title =~ s/^ //;
3491 if ($title ne "") {
3492 $co{'title'} = chop_str($title, 80, 5);
3493 # remove leading stuff of merges to make the interesting part visible
3494 if (length($title) > 50) {
3495 $title =~ s/^Automatic //;
3496 $title =~ s/^merge (of|with) /Merge ... /i;
3497 if (length($title) > 50) {
3498 $title =~ s/(http|rsync):\/\///;
3500 if (length($title) > 50) {
3501 $title =~ s/(master|www|rsync)\.//;
3503 if (length($title) > 50) {
3504 $title =~ s/kernel.org:?//;
3506 if (length($title) > 50) {
3507 $title =~ s/\/pub\/scm//;
3510 $co{'title_short'} = chop_str($title, 50, 5);
3511 last;
3514 if (! defined $co{'title'} || $co{'title'} eq "") {
3515 $co{'title'} = $co{'title_short'} = '(no commit message)';
3517 # remove added spaces
3518 foreach my $line (@commit_lines) {
3519 $line =~ s/^ //;
3521 $co{'comment'} = \@commit_lines;
3523 my $age = time - $co{'committer_epoch'};
3524 $co{'age'} = $age;
3525 $co{'age_string'} = age_string($age);
3526 my ($sec, $min, $hour, $mday, $mon, $year, $wday, $yday) = gmtime($co{'committer_epoch'});
3527 if ($age > 60*60*24*7*2) {
3528 $co{'age_string_date'} = sprintf "%4i-%02u-%02i", 1900 + $year, $mon+1, $mday;
3529 $co{'age_string_age'} = $co{'age_string'};
3530 } else {
3531 $co{'age_string_date'} = $co{'age_string'};
3532 $co{'age_string_age'} = sprintf "%4i-%02u-%02i", 1900 + $year, $mon+1, $mday;
3534 return %co;
3537 sub parse_commit {
3538 my ($commit_id) = @_;
3539 my %co;
3541 local $/ = "\0";
3543 open my $fd, "-|", git_cmd(), "rev-list",
3544 "--parents",
3545 "--header",
3546 "--max-count=1",
3547 $commit_id,
3548 "--",
3549 or die_error(500, "Open git-rev-list failed");
3550 %co = parse_commit_text(<$fd>, 1);
3551 close $fd;
3553 return %co;
3556 sub parse_commits {
3557 my ($commit_id, $maxcount, $skip, $filename, @args) = @_;
3558 my @cos;
3560 $maxcount ||= 1;
3561 $skip ||= 0;
3563 local $/ = "\0";
3565 open my $fd, "-|", git_cmd(), "rev-list",
3566 "--header",
3567 @args,
3568 ("--max-count=" . $maxcount),
3569 ("--skip=" . $skip),
3570 @extra_options,
3571 $commit_id,
3572 "--",
3573 ($filename ? ($filename) : ())
3574 or die_error(500, "Open git-rev-list failed");
3575 while (my $line = <$fd>) {
3576 my %co = parse_commit_text($line);
3577 push @cos, \%co;
3579 close $fd;
3581 return wantarray ? @cos : \@cos;
3584 # parse line of git-diff-tree "raw" output
3585 sub parse_difftree_raw_line {
3586 my $line = shift;
3587 my %res;
3589 # ':100644 100644 03b218260e99b78c6df0ed378e59ed9205ccc96d 3b93d5e7cc7f7dd4ebed13a5cc1a4ad976fc94d8 M ls-files.c'
3590 # ':100644 100644 7f9281985086971d3877aca27704f2aaf9c448ce bc190ebc71bbd923f2b728e505408f5e54bd073a M rev-tree.c'
3591 if ($line =~ m/^:([0-7]{6}) ([0-7]{6}) ([0-9a-fA-F]{40}) ([0-9a-fA-F]{40}) (.)([0-9]{0,3})\t(.*)$/) {
3592 $res{'from_mode'} = $1;
3593 $res{'to_mode'} = $2;
3594 $res{'from_id'} = $3;
3595 $res{'to_id'} = $4;
3596 $res{'status'} = $5;
3597 $res{'similarity'} = $6;
3598 if ($res{'status'} eq 'R' || $res{'status'} eq 'C') { # renamed or copied
3599 ($res{'from_file'}, $res{'to_file'}) = map { unquote($_) } split("\t", $7);
3600 } else {
3601 $res{'from_file'} = $res{'to_file'} = $res{'file'} = unquote($7);
3604 # '::100755 100755 100755 60e79ca1b01bc8b057abe17ddab484699a7f5fdb 94067cc5f73388f33722d52ae02f44692bc07490 94067cc5f73388f33722d52ae02f44692bc07490 MR git-gui/git-gui.sh'
3605 # combined diff (for merge commit)
3606 elsif ($line =~ s/^(::+)((?:[0-7]{6} )+)((?:[0-9a-fA-F]{40} )+)([a-zA-Z]+)\t(.*)$//) {
3607 $res{'nparents'} = length($1);
3608 $res{'from_mode'} = [ split(' ', $2) ];
3609 $res{'to_mode'} = pop @{$res{'from_mode'}};
3610 $res{'from_id'} = [ split(' ', $3) ];
3611 $res{'to_id'} = pop @{$res{'from_id'}};
3612 $res{'status'} = [ split('', $4) ];
3613 $res{'to_file'} = unquote($5);
3615 # 'c512b523472485aef4fff9e57b229d9d243c967f'
3616 elsif ($line =~ m/^([0-9a-fA-F]{40})$/) {
3617 $res{'commit'} = $1;
3620 return wantarray ? %res : \%res;
3623 # wrapper: return parsed line of git-diff-tree "raw" output
3624 # (the argument might be raw line, or parsed info)
3625 sub parsed_difftree_line {
3626 my $line_or_ref = shift;
3628 if (ref($line_or_ref) eq "HASH") {
3629 # pre-parsed (or generated by hand)
3630 return $line_or_ref;
3631 } else {
3632 return parse_difftree_raw_line($line_or_ref);
3636 # parse line of git-ls-tree output
3637 sub parse_ls_tree_line {
3638 my $line = shift;
3639 my %opts = @_;
3640 my %res;
3642 if ($opts{'-l'}) {
3643 #'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa 16717 panic.c'
3644 $line =~ m/^([0-9]+) (.+) ([0-9a-fA-F]{40}) +(-|[0-9]+)\t(.+)$/s;
3646 $res{'mode'} = $1;
3647 $res{'type'} = $2;
3648 $res{'hash'} = $3;
3649 $res{'size'} = $4;
3650 if ($opts{'-z'}) {
3651 $res{'name'} = $5;
3652 } else {
3653 $res{'name'} = unquote($5);
3655 } else {
3656 #'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'
3657 $line =~ m/^([0-9]+) (.+) ([0-9a-fA-F]{40})\t(.+)$/s;
3659 $res{'mode'} = $1;
3660 $res{'type'} = $2;
3661 $res{'hash'} = $3;
3662 if ($opts{'-z'}) {
3663 $res{'name'} = $4;
3664 } else {
3665 $res{'name'} = unquote($4);
3669 return wantarray ? %res : \%res;
3672 # generates _two_ hashes, references to which are passed as 2 and 3 argument
3673 sub parse_from_to_diffinfo {
3674 my ($diffinfo, $from, $to, @parents) = @_;
3676 if ($diffinfo->{'nparents'}) {
3677 # combined diff
3678 $from->{'file'} = [];
3679 $from->{'href'} = [];
3680 fill_from_file_info($diffinfo, @parents)
3681 unless exists $diffinfo->{'from_file'};
3682 for (my $i = 0; $i < $diffinfo->{'nparents'}; $i++) {
3683 $from->{'file'}[$i] =
3684 defined $diffinfo->{'from_file'}[$i] ?
3685 $diffinfo->{'from_file'}[$i] :
3686 $diffinfo->{'to_file'};
3687 if ($diffinfo->{'status'}[$i] ne "A") { # not new (added) file
3688 $from->{'href'}[$i] = href(action=>"blob",
3689 hash_base=>$parents[$i],
3690 hash=>$diffinfo->{'from_id'}[$i],
3691 file_name=>$from->{'file'}[$i]);
3692 } else {
3693 $from->{'href'}[$i] = undef;
3696 } else {
3697 # ordinary (not combined) diff
3698 $from->{'file'} = $diffinfo->{'from_file'};
3699 if ($diffinfo->{'status'} ne "A") { # not new (added) file
3700 $from->{'href'} = href(action=>"blob", hash_base=>$hash_parent,
3701 hash=>$diffinfo->{'from_id'},
3702 file_name=>$from->{'file'});
3703 } else {
3704 delete $from->{'href'};
3708 $to->{'file'} = $diffinfo->{'to_file'};
3709 if (!is_deleted($diffinfo)) { # file exists in result
3710 $to->{'href'} = href(action=>"blob", hash_base=>$hash,
3711 hash=>$diffinfo->{'to_id'},
3712 file_name=>$to->{'file'});
3713 } else {
3714 delete $to->{'href'};
3718 ## ......................................................................
3719 ## parse to array of hashes functions
3721 sub git_get_heads_list {
3722 my ($limit, @classes) = @_;
3723 @classes = get_branch_refs() unless @classes;
3724 my @patterns = map { "refs/$_" } @classes;
3725 my @headslist;
3727 open my $fd, '-|', git_cmd(), 'for-each-ref',
3728 ($limit ? '--count='.($limit+1) : ()), '--sort=-committerdate',
3729 '--format=%(objectname) %(refname) %(subject)%00%(committer)',
3730 @patterns
3731 or return;
3732 while (my $line = <$fd>) {
3733 my %ref_item;
3735 chomp $line;
3736 my ($refinfo, $committerinfo) = split(/\0/, $line);
3737 my ($hash, $name, $title) = split(' ', $refinfo, 3);
3738 my ($committer, $epoch, $tz) =
3739 ($committerinfo =~ /^(.*) ([0-9]+) (.*)$/);
3740 $ref_item{'fullname'} = $name;
3741 my $strip_refs = join '|', map { quotemeta } get_branch_refs();
3742 $name =~ s!^refs/($strip_refs|remotes)/!!;
3743 $ref_item{'name'} = $name;
3744 # for refs neither in 'heads' nor 'remotes' we want to
3745 # show their ref dir
3746 my $ref_dir = (defined $1) ? $1 : '';
3747 if ($ref_dir ne '' and $ref_dir ne 'heads' and $ref_dir ne 'remotes') {
3748 $ref_item{'name'} .= ' (' . $ref_dir . ')';
3751 $ref_item{'id'} = $hash;
3752 $ref_item{'title'} = $title || '(no commit message)';
3753 $ref_item{'epoch'} = $epoch;
3754 if ($epoch) {
3755 $ref_item{'age'} = age_string(time - $ref_item{'epoch'});
3756 } else {
3757 $ref_item{'age'} = "unknown";
3760 push @headslist, \%ref_item;
3762 close $fd;
3764 return wantarray ? @headslist : \@headslist;
3767 sub git_get_tags_list {
3768 my $limit = shift;
3769 my @tagslist;
3771 open my $fd, '-|', git_cmd(), 'for-each-ref',
3772 ($limit ? '--count='.($limit+1) : ()), '--sort=-creatordate',
3773 '--format=%(objectname) %(objecttype) %(refname) '.
3774 '%(*objectname) %(*objecttype) %(subject)%00%(creator)',
3775 'refs/tags'
3776 or return;
3777 while (my $line = <$fd>) {
3778 my %ref_item;
3780 chomp $line;
3781 my ($refinfo, $creatorinfo) = split(/\0/, $line);
3782 my ($id, $type, $name, $refid, $reftype, $title) = split(' ', $refinfo, 6);
3783 my ($creator, $epoch, $tz) =
3784 ($creatorinfo =~ /^(.*) ([0-9]+) (.*)$/);
3785 $ref_item{'fullname'} = $name;
3786 $name =~ s!^refs/tags/!!;
3788 $ref_item{'type'} = $type;
3789 $ref_item{'id'} = $id;
3790 $ref_item{'name'} = $name;
3791 if ($type eq "tag") {
3792 $ref_item{'subject'} = $title;
3793 $ref_item{'reftype'} = $reftype;
3794 $ref_item{'refid'} = $refid;
3795 } else {
3796 $ref_item{'reftype'} = $type;
3797 $ref_item{'refid'} = $id;
3800 if ($type eq "tag" || $type eq "commit") {
3801 $ref_item{'epoch'} = $epoch;
3802 if ($epoch) {
3803 $ref_item{'age'} = age_string(time - $ref_item{'epoch'});
3804 } else {
3805 $ref_item{'age'} = "unknown";
3809 push @tagslist, \%ref_item;
3811 close $fd;
3813 return wantarray ? @tagslist : \@tagslist;
3816 ## ----------------------------------------------------------------------
3817 ## filesystem-related functions
3819 sub get_file_owner {
3820 my $path = shift;
3822 my ($dev, $ino, $mode, $nlink, $st_uid, $st_gid, $rdev, $size) = stat($path);
3823 my ($name, $passwd, $uid, $gid, $quota, $comment, $gcos, $dir, $shell) = getpwuid($st_uid);
3824 if (!defined $gcos) {
3825 return undef;
3827 my $owner = $gcos;
3828 $owner =~ s/[,;].*$//;
3829 return to_utf8($owner);
3832 # assume that file exists
3833 sub insert_file {
3834 my $filename = shift;
3836 open my $fd, '<', $filename;
3837 print map { to_utf8($_) } <$fd>;
3838 close $fd;
3841 ## ......................................................................
3842 ## mimetype related functions
3844 sub mimetype_guess_file {
3845 my $filename = shift;
3846 my $mimemap = shift;
3847 -r $mimemap or return undef;
3849 my %mimemap;
3850 open(my $mh, '<', $mimemap) or return undef;
3851 while (<$mh>) {
3852 next if m/^#/; # skip comments
3853 my ($mimetype, @exts) = split(/\s+/);
3854 foreach my $ext (@exts) {
3855 $mimemap{$ext} = $mimetype;
3858 close($mh);
3860 $filename =~ /\.([^.]*)$/;
3861 return $mimemap{$1};
3864 sub mimetype_guess {
3865 my $filename = shift;
3866 my $mime;
3867 $filename =~ /\./ or return undef;
3869 if ($mimetypes_file) {
3870 my $file = $mimetypes_file;
3871 if ($file !~ m!^/!) { # if it is relative path
3872 # it is relative to project
3873 $file = "$projectroot/$project/$file";
3875 $mime = mimetype_guess_file($filename, $file);
3877 $mime ||= mimetype_guess_file($filename, '/etc/mime.types');
3878 return $mime;
3881 sub blob_mimetype {
3882 my $fd = shift;
3883 my $filename = shift;
3885 if ($filename) {
3886 my $mime = mimetype_guess($filename);
3887 $mime and return $mime;
3890 # just in case
3891 return $default_blob_plain_mimetype unless $fd;
3893 if (-T $fd) {
3894 return 'text/plain';
3895 } elsif (! $filename) {
3896 return 'application/octet-stream';
3897 } elsif ($filename =~ m/\.png$/i) {
3898 return 'image/png';
3899 } elsif ($filename =~ m/\.gif$/i) {
3900 return 'image/gif';
3901 } elsif ($filename =~ m/\.jpe?g$/i) {
3902 return 'image/jpeg';
3903 } else {
3904 return 'application/octet-stream';
3908 sub blob_contenttype {
3909 my ($fd, $file_name, $type) = @_;
3911 $type ||= blob_mimetype($fd, $file_name);
3912 if ($type eq 'text/plain' && defined $default_text_plain_charset) {
3913 $type .= "; charset=$default_text_plain_charset";
3916 return $type;
3919 # guess file syntax for syntax highlighting; return undef if no highlighting
3920 # the name of syntax can (in the future) depend on syntax highlighter used
3921 sub guess_file_syntax {
3922 my ($highlight, $mimetype, $file_name) = @_;
3923 return undef unless ($highlight && defined $file_name);
3924 my $basename = basename($file_name, '.in');
3925 return $highlight_basename{$basename}
3926 if exists $highlight_basename{$basename};
3928 $basename =~ /\.([^.]*)$/;
3929 my $ext = $1 or return undef;
3930 return $highlight_ext{$ext}
3931 if exists $highlight_ext{$ext};
3933 return undef;
3936 # run highlighter and return FD of its output,
3937 # or return original FD if no highlighting
3938 sub run_highlighter {
3939 my ($fd, $highlight, $syntax) = @_;
3940 return $fd unless ($highlight && defined $syntax);
3942 close $fd;
3943 open $fd, quote_command(git_cmd(), "cat-file", "blob", $hash)." | ".
3944 quote_command($highlight_bin).
3945 " --replace-tabs=8 --fragment --syntax $syntax |"
3946 or die_error(500, "Couldn't open file or run syntax highlighter");
3947 return $fd;
3950 ## ======================================================================
3951 ## functions printing HTML: header, footer, error page
3953 sub get_page_title {
3954 my $title = to_utf8($site_name);
3956 unless (defined $project) {
3957 if (defined $project_filter) {
3958 $title .= " - projects in '" . esc_path($project_filter) . "'";
3960 return $title;
3962 $title .= " - " . to_utf8($project);
3964 return $title unless (defined $action);
3965 $title .= "/$action"; # $action is US-ASCII (7bit ASCII)
3967 return $title unless (defined $file_name);
3968 $title .= " - " . esc_path($file_name);
3969 if ($action eq "tree" && $file_name !~ m|/$|) {
3970 $title .= "/";
3973 return $title;
3976 sub get_content_type_html {
3977 # require explicit support from the UA if we are to send the page as
3978 # 'application/xhtml+xml', otherwise send it as plain old 'text/html'.
3979 # we have to do this because MSIE sometimes globs '*/*', pretending to
3980 # support xhtml+xml but choking when it gets what it asked for.
3981 if (defined $cgi->http('HTTP_ACCEPT') &&
3982 $cgi->http('HTTP_ACCEPT') =~ m/(,|;|\s|^)application\/xhtml\+xml(,|;|\s|$)/ &&
3983 $cgi->Accept('application/xhtml+xml') != 0) {
3984 return 'application/xhtml+xml';
3985 } else {
3986 return 'text/html';
3990 sub print_feed_meta {
3991 if (defined $project) {
3992 my %href_params = get_feed_info();
3993 if (!exists $href_params{'-title'}) {
3994 $href_params{'-title'} = 'log';
3997 foreach my $format (qw(RSS Atom)) {
3998 my $type = lc($format);
3999 my %link_attr = (
4000 '-rel' => 'alternate',
4001 '-title' => esc_attr("$project - $href_params{'-title'} - $format feed"),
4002 '-type' => "application/$type+xml"
4005 $href_params{'extra_options'} = undef;
4006 $href_params{'action'} = $type;
4007 $link_attr{'-href'} = href(%href_params);
4008 print "<link ".
4009 "rel=\"$link_attr{'-rel'}\" ".
4010 "title=\"$link_attr{'-title'}\" ".
4011 "href=\"$link_attr{'-href'}\" ".
4012 "type=\"$link_attr{'-type'}\" ".
4013 "/>\n";
4015 $href_params{'extra_options'} = '--no-merges';
4016 $link_attr{'-href'} = href(%href_params);
4017 $link_attr{'-title'} .= ' (no merges)';
4018 print "<link ".
4019 "rel=\"$link_attr{'-rel'}\" ".
4020 "title=\"$link_attr{'-title'}\" ".
4021 "href=\"$link_attr{'-href'}\" ".
4022 "type=\"$link_attr{'-type'}\" ".
4023 "/>\n";
4026 } else {
4027 printf('<link rel="alternate" title="%s projects list" '.
4028 'href="%s" type="text/plain; charset=utf-8" />'."\n",
4029 esc_attr($site_name), href(project=>undef, action=>"project_index"));
4030 printf('<link rel="alternate" title="%s projects feeds" '.
4031 'href="%s" type="text/x-opml" />'."\n",
4032 esc_attr($site_name), href(project=>undef, action=>"opml"));
4036 sub print_header_links {
4037 my $status = shift;
4039 # print out each stylesheet that exist, providing backwards capability
4040 # for those people who defined $stylesheet in a config file
4041 if (defined $stylesheet) {
4042 print '<link rel="stylesheet" type="text/css" href="'.esc_url($stylesheet).'"/>'."\n";
4043 } else {
4044 foreach my $stylesheet (@stylesheets) {
4045 next unless $stylesheet;
4046 print '<link rel="stylesheet" type="text/css" href="'.esc_url($stylesheet).'"/>'."\n";
4049 print_feed_meta()
4050 if ($status eq '200 OK');
4051 if (defined $favicon) {
4052 print qq(<link rel="shortcut icon" href=").esc_url($favicon).qq(" type="image/png" />\n);
4056 sub print_nav_breadcrumbs_path {
4057 my $dirprefix = undef;
4058 while (my $part = shift) {
4059 $dirprefix .= "/" if defined $dirprefix;
4060 $dirprefix .= $part;
4061 print $cgi->a({-href => href(project => undef,
4062 project_filter => $dirprefix,
4063 action => "project_list")},
4064 esc_html($part)) . " / ";
4068 sub print_nav_breadcrumbs {
4069 my %opts = @_;
4071 for my $crumb (@extra_breadcrumbs, [ $home_link_str => $home_link ]) {
4072 print $cgi->a({-href => esc_url($crumb->[1])}, $crumb->[0]) . " / ";
4074 if (defined $project) {
4075 my @dirname = split '/', $project;
4076 my $projectbasename = pop @dirname;
4077 print_nav_breadcrumbs_path(@dirname);
4078 print $cgi->a({-href => href(action=>"summary")}, esc_html($projectbasename));
4079 if (defined $action) {
4080 my $action_print = $action ;
4081 if (defined $opts{-action_extra}) {
4082 $action_print = $cgi->a({-href => href(action=>$action)},
4083 $action);
4085 print " / $action_print";
4087 if (defined $opts{-action_extra}) {
4088 print " / $opts{-action_extra}";
4090 print "\n";
4091 } elsif (defined $project_filter) {
4092 print_nav_breadcrumbs_path(split '/', $project_filter);
4096 sub print_search_form {
4097 if (!defined $searchtext) {
4098 $searchtext = "";
4100 my $search_hash;
4101 if (defined $hash_base) {
4102 $search_hash = $hash_base;
4103 } elsif (defined $hash) {
4104 $search_hash = $hash;
4105 } else {
4106 $search_hash = "HEAD";
4108 my $action = $my_uri;
4109 my $use_pathinfo = gitweb_check_feature('pathinfo');
4110 if ($use_pathinfo) {
4111 $action .= "/".esc_url($project);
4113 print $cgi->start_form(-method => "get", -action => $action) .
4114 "<div class=\"search\">\n" .
4115 (!$use_pathinfo &&
4116 $cgi->input({-name=>"p", -value=>$project, -type=>"hidden"}) . "\n") .
4117 $cgi->input({-name=>"a", -value=>"search", -type=>"hidden"}) . "\n" .
4118 $cgi->input({-name=>"h", -value=>$search_hash, -type=>"hidden"}) . "\n" .
4119 $cgi->popup_menu(-name => 'st', -default => 'commit',
4120 -values => ['commit', 'grep', 'author', 'committer', 'pickaxe']) .
4121 " " . $cgi->a({-href => href(action=>"search_help"),
4122 -title => "search help" }, "?") . " search:\n",
4123 $cgi->textfield(-name => "s", -value => $searchtext, -override => 1) . "\n" .
4124 "<span title=\"Extended regular expression\">" .
4125 $cgi->checkbox(-name => 'sr', -value => 1, -label => 're',
4126 -checked => $search_use_regexp) .
4127 "</span>" .
4128 "</div>" .
4129 $cgi->end_form() . "\n";
4132 sub git_header_html {
4133 my $status = shift || "200 OK";
4134 my $expires = shift;
4135 my %opts = @_;
4137 my $title = get_page_title();
4138 my $content_type = get_content_type_html();
4139 print $cgi->header(-type=>$content_type, -charset => 'utf-8',
4140 -status=> $status, -expires => $expires)
4141 unless ($opts{'-no_http_header'});
4142 my $mod_perl_version = $ENV{'MOD_PERL'} ? " $ENV{'MOD_PERL'}" : '';
4143 print <<EOF;
4144 <?xml version="1.0" encoding="utf-8"?>
4145 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4146 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" lang="en-US">
4147 <!-- git web interface version $version, (C) 2005-2006, Kay Sievers <kay.sievers\@vrfy.org>, Christian Gierke -->
4148 <!-- git core binaries version $git_version -->
4149 <head>
4150 <meta http-equiv="content-type" content="$content_type; charset=utf-8"/>
4151 <meta name="generator" content="gitweb/$version git/$git_version$mod_perl_version"/>
4152 <meta name="robots" content="index, nofollow"/>
4153 <title>$title</title>
4155 # the stylesheet, favicon etc urls won't work correctly with path_info
4156 # unless we set the appropriate base URL
4157 if ($ENV{'PATH_INFO'}) {
4158 print "<base href=\"".esc_url($base_url)."\" />\n";
4160 print_header_links($status);
4162 if (defined $site_html_head_string) {
4163 print to_utf8($site_html_head_string);
4166 print "</head>\n" .
4167 "<body>\n";
4169 if (defined $site_header && -f $site_header) {
4170 insert_file($site_header);
4173 print "<div class=\"page_header\">\n";
4174 if (defined $logo) {
4175 print $cgi->a({-href => esc_url($logo_url),
4176 -title => $logo_label},
4177 $cgi->img({-src => esc_url($logo),
4178 -width => 72, -height => 27,
4179 -alt => "git",
4180 -class => "logo"}));
4182 print_nav_breadcrumbs(%opts);
4183 print "</div>\n";
4185 my $have_search = gitweb_check_feature('search');
4186 if (defined $project && $have_search) {
4187 print_search_form();
4191 sub git_footer_html {
4192 my $feed_class = 'rss_logo';
4194 print "<div class=\"page_footer\">\n";
4195 if (defined $project) {
4196 my $descr = git_get_project_description($project);
4197 if (defined $descr) {
4198 print "<div class=\"page_footer_text\">" . esc_html($descr) . "</div>\n";
4201 my %href_params = get_feed_info();
4202 if (!%href_params) {
4203 $feed_class .= ' generic';
4205 $href_params{'-title'} ||= 'log';
4207 foreach my $format (qw(RSS Atom)) {
4208 $href_params{'action'} = lc($format);
4209 print $cgi->a({-href => href(%href_params),
4210 -title => "$href_params{'-title'} $format feed",
4211 -class => $feed_class}, $format)."\n";
4214 } else {
4215 print $cgi->a({-href => href(project=>undef, action=>"opml",
4216 project_filter => $project_filter),
4217 -class => $feed_class}, "OPML") . " ";
4218 print $cgi->a({-href => href(project=>undef, action=>"project_index",
4219 project_filter => $project_filter),
4220 -class => $feed_class}, "TXT") . "\n";
4222 print "</div>\n"; # class="page_footer"
4224 if (defined $t0 && gitweb_check_feature('timed')) {
4225 print "<div id=\"generating_info\">\n";
4226 print 'This page took '.
4227 '<span id="generating_time" class="time_span">'.
4228 tv_interval($t0, [ gettimeofday() ]).
4229 ' seconds </span>'.
4230 ' and '.
4231 '<span id="generating_cmd">'.
4232 $number_of_git_cmds.
4233 '</span> git commands '.
4234 " to generate.\n";
4235 print "</div>\n"; # class="page_footer"
4238 if (defined $site_footer && -f $site_footer) {
4239 insert_file($site_footer);
4242 print qq!<script type="text/javascript" src="!.esc_url($javascript).qq!"></script>\n!;
4243 if (defined $action &&
4244 $action eq 'blame_incremental') {
4245 print qq!<script type="text/javascript">\n!.
4246 qq!startBlame("!. href(action=>"blame_data", -replay=>1) .qq!",\n!.
4247 qq! "!. href() .qq!");\n!.
4248 qq!</script>\n!;
4249 } else {
4250 my ($jstimezone, $tz_cookie, $datetime_class) =
4251 gitweb_get_feature('javascript-timezone');
4253 print qq!<script type="text/javascript">\n!.
4254 qq!window.onload = function () {\n!;
4255 if (gitweb_check_feature('javascript-actions')) {
4256 print qq! fixLinks();\n!;
4258 if ($jstimezone && $tz_cookie && $datetime_class) {
4259 print qq! var tz_cookie = { name: '$tz_cookie', expires: 14, path: '/' };\n!. # in days
4260 qq! onloadTZSetup('$jstimezone', tz_cookie, '$datetime_class');\n!;
4262 print qq!};\n!.
4263 qq!</script>\n!;
4266 print "</body>\n" .
4267 "</html>";
4270 # die_error(<http_status_code>, <error_message>[, <detailed_html_description>])
4271 # Example: die_error(404, 'Hash not found')
4272 # By convention, use the following status codes (as defined in RFC 2616):
4273 # 400: Invalid or missing CGI parameters, or
4274 # requested object exists but has wrong type.
4275 # 403: Requested feature (like "pickaxe" or "snapshot") not enabled on
4276 # this server or project.
4277 # 404: Requested object/revision/project doesn't exist.
4278 # 500: The server isn't configured properly, or
4279 # an internal error occurred (e.g. failed assertions caused by bugs), or
4280 # an unknown error occurred (e.g. the git binary died unexpectedly).
4281 # 503: The server is currently unavailable (because it is overloaded,
4282 # or down for maintenance). Generally, this is a temporary state.
4283 sub die_error {
4284 my $status = shift || 500;
4285 my $error = esc_html(shift) || "Internal Server Error";
4286 my $extra = shift;
4287 my %opts = @_;
4289 my %http_responses = (
4290 400 => '400 Bad Request',
4291 403 => '403 Forbidden',
4292 404 => '404 Not Found',
4293 500 => '500 Internal Server Error',
4294 503 => '503 Service Unavailable',
4296 git_header_html($http_responses{$status}, undef, %opts);
4297 print <<EOF;
4298 <div class="page_body">
4299 <br /><br />
4300 $status - $error
4301 <br />
4303 if (defined $extra) {
4304 print "<hr />\n" .
4305 "$extra\n";
4307 print "</div>\n";
4309 git_footer_html();
4310 goto DONE_GITWEB
4311 unless ($opts{'-error_handler'});
4314 ## ----------------------------------------------------------------------
4315 ## functions printing or outputting HTML: navigation
4317 sub git_print_page_nav {
4318 my ($current, $suppress, $head, $treehead, $treebase, $extra) = @_;
4319 $extra = '' if !defined $extra; # pager or formats
4321 my @navs = qw(summary shortlog log commit commitdiff tree);
4322 if ($suppress) {
4323 @navs = grep { $_ ne $suppress } @navs;
4326 my %arg = map { $_ => {action=>$_} } @navs;
4327 if (defined $head) {
4328 for (qw(commit commitdiff)) {
4329 $arg{$_}{'hash'} = $head;
4331 if ($current =~ m/^(tree | log | shortlog | commit | commitdiff | search)$/x) {
4332 for (qw(shortlog log)) {
4333 $arg{$_}{'hash'} = $head;
4338 $arg{'tree'}{'hash'} = $treehead if defined $treehead;
4339 $arg{'tree'}{'hash_base'} = $treebase if defined $treebase;
4341 my @actions = gitweb_get_feature('actions');
4342 my %repl = (
4343 '%' => '%',
4344 'n' => $project, # project name
4345 'f' => $git_dir, # project path within filesystem
4346 'h' => $treehead || '', # current hash ('h' parameter)
4347 'b' => $treebase || '', # hash base ('hb' parameter)
4349 while (@actions) {
4350 my ($label, $link, $pos) = splice(@actions,0,3);
4351 # insert
4352 @navs = map { $_ eq $pos ? ($_, $label) : $_ } @navs;
4353 # munch munch
4354 $link =~ s/%([%nfhb])/$repl{$1}/g;
4355 $arg{$label}{'_href'} = $link;
4358 print "<div class=\"page_nav\">\n" .
4359 (join " | ",
4360 map { $_ eq $current ?
4361 $_ : $cgi->a({-href => ($arg{$_}{_href} ? $arg{$_}{_href} : href(%{$arg{$_}}))}, "$_")
4362 } @navs);
4363 print "<br/>\n$extra<br/>\n" .
4364 "</div>\n";
4367 # returns a submenu for the nagivation of the refs views (tags, heads,
4368 # remotes) with the current view disabled and the remotes view only
4369 # available if the feature is enabled
4370 sub format_ref_views {
4371 my ($current) = @_;
4372 my @ref_views = qw{tags heads};
4373 push @ref_views, 'remotes' if gitweb_check_feature('remote_heads');
4374 return join " | ", map {
4375 $_ eq $current ? $_ :
4376 $cgi->a({-href => href(action=>$_)}, $_)
4377 } @ref_views
4380 sub format_paging_nav {
4381 my ($action, $page, $has_next_link) = @_;
4382 my $paging_nav;
4385 if ($page > 0) {
4386 $paging_nav .=
4387 $cgi->a({-href => href(-replay=>1, page=>undef)}, "first") .
4388 " &sdot; " .
4389 $cgi->a({-href => href(-replay=>1, page=>$page-1),
4390 -accesskey => "p", -title => "Alt-p"}, "prev");
4391 } else {
4392 $paging_nav .= "first &sdot; prev";
4395 if ($has_next_link) {
4396 $paging_nav .= " &sdot; " .
4397 $cgi->a({-href => href(-replay=>1, page=>$page+1),
4398 -accesskey => "n", -title => "Alt-n"}, "next");
4399 } else {
4400 $paging_nav .= " &sdot; next";
4403 return $paging_nav;
4406 ## ......................................................................
4407 ## functions printing or outputting HTML: div
4409 sub git_print_header_div {
4410 my ($action, $title, $hash, $hash_base) = @_;
4411 my %args = ();
4413 $args{'action'} = $action;
4414 $args{'hash'} = $hash if $hash;
4415 $args{'hash_base'} = $hash_base if $hash_base;
4417 print "<div class=\"header\">\n" .
4418 $cgi->a({-href => href(%args), -class => "title"},
4419 $title ? $title : $action) .
4420 "\n</div>\n";
4423 sub format_repo_url {
4424 my ($name, $url) = @_;
4425 return "<tr class=\"metadata_url\"><td>$name</td><td>$url</td></tr>\n";
4428 # Group output by placing it in a DIV element and adding a header.
4429 # Options for start_div() can be provided by passing a hash reference as the
4430 # first parameter to the function.
4431 # Options to git_print_header_div() can be provided by passing an array
4432 # reference. This must follow the options to start_div if they are present.
4433 # The content can be a scalar, which is output as-is, a scalar reference, which
4434 # is output after html escaping, an IO handle passed either as *handle or
4435 # *handle{IO}, or a function reference. In the latter case all following
4436 # parameters will be taken as argument to the content function call.
4437 sub git_print_section {
4438 my ($div_args, $header_args, $content);
4439 my $arg = shift;
4440 if (ref($arg) eq 'HASH') {
4441 $div_args = $arg;
4442 $arg = shift;
4444 if (ref($arg) eq 'ARRAY') {
4445 $header_args = $arg;
4446 $arg = shift;
4448 $content = $arg;
4450 print $cgi->start_div($div_args);
4451 git_print_header_div(@$header_args);
4453 if (ref($content) eq 'CODE') {
4454 $content->(@_);
4455 } elsif (ref($content) eq 'SCALAR') {
4456 print esc_html($$content);
4457 } elsif (ref($content) eq 'GLOB' or ref($content) eq 'IO::Handle') {
4458 print <$content>;
4459 } elsif (!ref($content) && defined($content)) {
4460 print $content;
4463 print $cgi->end_div;
4466 sub format_timestamp_html {
4467 my $date = shift;
4468 my $strtime = $date->{'rfc2822'};
4470 my (undef, undef, $datetime_class) =
4471 gitweb_get_feature('javascript-timezone');
4472 if ($datetime_class) {
4473 $strtime = qq!<span class="$datetime_class">$strtime</span>!;
4476 my $localtime_format = '(%02d:%02d %s)';
4477 if ($date->{'hour_local'} < 6) {
4478 $localtime_format = '(<span class="atnight">%02d:%02d</span> %s)';
4480 $strtime .= ' ' .
4481 sprintf($localtime_format,
4482 $date->{'hour_local'}, $date->{'minute_local'}, $date->{'tz_local'});
4484 return $strtime;
4487 # Outputs the author name and date in long form
4488 sub git_print_authorship {
4489 my $co = shift;
4490 my %opts = @_;
4491 my $tag = $opts{-tag} || 'div';
4492 my $author = $co->{'author_name'};
4494 my %ad = parse_date($co->{'author_epoch'}, $co->{'author_tz'});
4495 print "<$tag class=\"author_date\">" .
4496 format_search_author($author, "author", esc_html($author)) .
4497 " [".format_timestamp_html(\%ad)."]".
4498 git_get_avatar($co->{'author_email'}, -pad_before => 1) .
4499 "</$tag>\n";
4502 # Outputs table rows containing the full author or committer information,
4503 # in the format expected for 'commit' view (& similar).
4504 # Parameters are a commit hash reference, followed by the list of people
4505 # to output information for. If the list is empty it defaults to both
4506 # author and committer.
4507 sub git_print_authorship_rows {
4508 my $co = shift;
4509 # too bad we can't use @people = @_ || ('author', 'committer')
4510 my @people = @_;
4511 @people = ('author', 'committer') unless @people;
4512 foreach my $who (@people) {
4513 my %wd = parse_date($co->{"${who}_epoch"}, $co->{"${who}_tz"});
4514 print "<tr><td>$who</td><td>" .
4515 format_search_author($co->{"${who}_name"}, $who,
4516 esc_html($co->{"${who}_name"})) . " " .
4517 format_search_author($co->{"${who}_email"}, $who,
4518 esc_html("<" . $co->{"${who}_email"} . ">")) .
4519 "</td><td rowspan=\"2\">" .
4520 git_get_avatar($co->{"${who}_email"}, -size => 'double') .
4521 "</td></tr>\n" .
4522 "<tr>" .
4523 "<td></td><td>" .
4524 format_timestamp_html(\%wd) .
4525 "</td>" .
4526 "</tr>\n";
4530 sub git_print_page_path {
4531 my $name = shift;
4532 my $type = shift;
4533 my $hb = shift;
4536 print "<div class=\"page_path\">";
4537 print $cgi->a({-href => href(action=>"tree", hash_base=>$hb),
4538 -title => 'tree root'}, to_utf8("[$project]"));
4539 print " / ";
4540 if (defined $name) {
4541 my @dirname = split '/', $name;
4542 my $basename = pop @dirname;
4543 my $fullname = '';
4545 foreach my $dir (@dirname) {
4546 $fullname .= ($fullname ? '/' : '') . $dir;
4547 print $cgi->a({-href => href(action=>"tree", file_name=>$fullname,
4548 hash_base=>$hb),
4549 -title => $fullname}, esc_path($dir));
4550 print " / ";
4552 if (defined $type && $type eq 'blob') {
4553 print $cgi->a({-href => href(action=>"blob_plain", file_name=>$file_name,
4554 hash_base=>$hb),
4555 -title => $name}, esc_path($basename));
4556 } elsif (defined $type && $type eq 'tree') {
4557 print $cgi->a({-href => href(action=>"tree", file_name=>$file_name,
4558 hash_base=>$hb),
4559 -title => $name}, esc_path($basename));
4560 print " / ";
4561 } else {
4562 print esc_path($basename);
4565 print "<br/></div>\n";
4568 sub git_print_log {
4569 my $log = shift;
4570 my %opts = @_;
4572 if ($opts{'-remove_title'}) {
4573 # remove title, i.e. first line of log
4574 shift @$log;
4576 # remove leading empty lines
4577 while (defined $log->[0] && $log->[0] eq "") {
4578 shift @$log;
4581 # print log
4582 my $skip_blank_line = 0;
4583 foreach my $line (@$log) {
4584 if ($line =~ m/^\s*([A-Z][-A-Za-z]*-[Bb]y|C[Cc]): /) {
4585 if (! $opts{'-remove_signoff'}) {
4586 print "<span class=\"signoff\">" . esc_html($line) . "</span><br/>\n";
4587 $skip_blank_line = 1;
4589 next;
4592 if ($line =~ m,\s*([a-z]*link): (https?://\S+),i) {
4593 if (! $opts{'-remove_signoff'}) {
4594 print "<span class=\"signoff\">" . esc_html($1) . ": " .
4595 "<a href=\"" . esc_html($2) . "\">" . esc_html($2) . "</a>" .
4596 "</span><br/>\n";
4597 $skip_blank_line = 1;
4599 next;
4602 # print only one empty line
4603 # do not print empty line after signoff
4604 if ($line eq "") {
4605 next if ($skip_blank_line);
4606 $skip_blank_line = 1;
4607 } else {
4608 $skip_blank_line = 0;
4611 print format_log_line_html($line) . "<br/>\n";
4614 if ($opts{'-final_empty_line'}) {
4615 # end with single empty line
4616 print "<br/>\n" unless $skip_blank_line;
4620 # return link target (what link points to)
4621 sub git_get_link_target {
4622 my $hash = shift;
4623 my $link_target;
4625 # read link
4626 open my $fd, "-|", git_cmd(), "cat-file", "blob", $hash
4627 or return;
4629 local $/ = undef;
4630 $link_target = <$fd>;
4632 close $fd
4633 or return;
4635 return $link_target;
4638 # given link target, and the directory (basedir) the link is in,
4639 # return target of link relative to top directory (top tree);
4640 # return undef if it is not possible (including absolute links).
4641 sub normalize_link_target {
4642 my ($link_target, $basedir) = @_;
4644 # absolute symlinks (beginning with '/') cannot be normalized
4645 return if (substr($link_target, 0, 1) eq '/');
4647 # normalize link target to path from top (root) tree (dir)
4648 my $path;
4649 if ($basedir) {
4650 $path = $basedir . '/' . $link_target;
4651 } else {
4652 # we are in top (root) tree (dir)
4653 $path = $link_target;
4656 # remove //, /./, and /../
4657 my @path_parts;
4658 foreach my $part (split('/', $path)) {
4659 # discard '.' and ''
4660 next if (!$part || $part eq '.');
4661 # handle '..'
4662 if ($part eq '..') {
4663 if (@path_parts) {
4664 pop @path_parts;
4665 } else {
4666 # link leads outside repository (outside top dir)
4667 return;
4669 } else {
4670 push @path_parts, $part;
4673 $path = join('/', @path_parts);
4675 return $path;
4678 # print tree entry (row of git_tree), but without encompassing <tr> element
4679 sub git_print_tree_entry {
4680 my ($t, $basedir, $hash_base, $have_blame) = @_;
4682 my %base_key = ();
4683 $base_key{'hash_base'} = $hash_base if defined $hash_base;
4685 # The format of a table row is: mode list link. Where mode is
4686 # the mode of the entry, list is the name of the entry, an href,
4687 # and link is the action links of the entry.
4689 print "<td class=\"mode\">" . mode_str($t->{'mode'}) . "</td>\n";
4690 if (exists $t->{'size'}) {
4691 print "<td class=\"size\">$t->{'size'}</td>\n";
4693 if ($t->{'type'} eq "blob") {
4694 print "<td class=\"list\">" .
4695 $cgi->a({-href => href(action=>"blob", hash=>$t->{'hash'},
4696 file_name=>"$basedir$t->{'name'}", %base_key),
4697 -class => "list"}, esc_path($t->{'name'}));
4698 if (S_ISLNK(oct $t->{'mode'})) {
4699 my $link_target = git_get_link_target($t->{'hash'});
4700 if ($link_target) {
4701 my $norm_target = normalize_link_target($link_target, $basedir);
4702 if (defined $norm_target) {
4703 print " -> " .
4704 $cgi->a({-href => href(action=>"object", hash_base=>$hash_base,
4705 file_name=>$norm_target),
4706 -title => $norm_target}, esc_path($link_target));
4707 } else {
4708 print " -> " . esc_path($link_target);
4712 print "</td>\n";
4713 print "<td class=\"link\">";
4714 print $cgi->a({-href => href(action=>"blob", hash=>$t->{'hash'},
4715 file_name=>"$basedir$t->{'name'}", %base_key)},
4716 "blob");
4717 if ($have_blame) {
4718 print " | " .
4719 $cgi->a({-href => href(action=>"blame", hash=>$t->{'hash'},
4720 file_name=>"$basedir$t->{'name'}", %base_key)},
4721 "blame");
4723 if (defined $hash_base) {
4724 print " | " .
4725 $cgi->a({-href => href(action=>"history", hash_base=>$hash_base,
4726 hash=>$t->{'hash'}, file_name=>"$basedir$t->{'name'}")},
4727 "history");
4729 print " | " .
4730 $cgi->a({-href => href(action=>"blob_plain", hash_base=>$hash_base,
4731 file_name=>"$basedir$t->{'name'}")},
4732 "raw");
4733 print "</td>\n";
4735 } elsif ($t->{'type'} eq "tree") {
4736 print "<td class=\"list\">";
4737 print $cgi->a({-href => href(action=>"tree", hash=>$t->{'hash'},
4738 file_name=>"$basedir$t->{'name'}",
4739 %base_key)},
4740 esc_path($t->{'name'}));
4741 print "</td>\n";
4742 print "<td class=\"link\">";
4743 print $cgi->a({-href => href(action=>"tree", hash=>$t->{'hash'},
4744 file_name=>"$basedir$t->{'name'}",
4745 %base_key)},
4746 "tree");
4747 if (defined $hash_base) {
4748 print " | " .
4749 $cgi->a({-href => href(action=>"history", hash_base=>$hash_base,
4750 file_name=>"$basedir$t->{'name'}")},
4751 "history");
4753 print "</td>\n";
4754 } else {
4755 # unknown object: we can only present history for it
4756 # (this includes 'commit' object, i.e. submodule support)
4757 print "<td class=\"list\">" .
4758 esc_path($t->{'name'}) .
4759 "</td>\n";
4760 print "<td class=\"link\">";
4761 if (defined $hash_base) {
4762 print $cgi->a({-href => href(action=>"history",
4763 hash_base=>$hash_base,
4764 file_name=>"$basedir$t->{'name'}")},
4765 "history");
4767 print "</td>\n";
4771 ## ......................................................................
4772 ## functions printing large fragments of HTML
4774 # get pre-image filenames for merge (combined) diff
4775 sub fill_from_file_info {
4776 my ($diff, @parents) = @_;
4778 $diff->{'from_file'} = [ ];
4779 $diff->{'from_file'}[$diff->{'nparents'} - 1] = undef;
4780 for (my $i = 0; $i < $diff->{'nparents'}; $i++) {
4781 if ($diff->{'status'}[$i] eq 'R' ||
4782 $diff->{'status'}[$i] eq 'C') {
4783 $diff->{'from_file'}[$i] =
4784 git_get_path_by_hash($parents[$i], $diff->{'from_id'}[$i]);
4788 return $diff;
4791 # is current raw difftree line of file deletion
4792 sub is_deleted {
4793 my $diffinfo = shift;
4795 return $diffinfo->{'to_id'} eq ('0' x 40);
4798 # does patch correspond to [previous] difftree raw line
4799 # $diffinfo - hashref of parsed raw diff format
4800 # $patchinfo - hashref of parsed patch diff format
4801 # (the same keys as in $diffinfo)
4802 sub is_patch_split {
4803 my ($diffinfo, $patchinfo) = @_;
4805 return defined $diffinfo && defined $patchinfo
4806 && $diffinfo->{'to_file'} eq $patchinfo->{'to_file'};
4810 sub git_difftree_body {
4811 my ($difftree, $hash, @parents) = @_;
4812 my ($parent) = $parents[0];
4813 my $have_blame = gitweb_check_feature('blame');
4814 print "<div class=\"list_head\">\n";
4815 if ($#{$difftree} > 10) {
4816 print(($#{$difftree} + 1) . " files changed:\n");
4818 print "</div>\n";
4820 print "<table class=\"" .
4821 (@parents > 1 ? "combined " : "") .
4822 "diff_tree\">\n";
4824 # header only for combined diff in 'commitdiff' view
4825 my $has_header = @$difftree && @parents > 1 && $action eq 'commitdiff';
4826 if ($has_header) {
4827 # table header
4828 print "<thead><tr>\n" .
4829 "<th></th><th></th>\n"; # filename, patchN link
4830 for (my $i = 0; $i < @parents; $i++) {
4831 my $par = $parents[$i];
4832 print "<th>" .
4833 $cgi->a({-href => href(action=>"commitdiff",
4834 hash=>$hash, hash_parent=>$par),
4835 -title => 'commitdiff to parent number ' .
4836 ($i+1) . ': ' . substr($par,0,7)},
4837 $i+1) .
4838 "&nbsp;</th>\n";
4840 print "</tr></thead>\n<tbody>\n";
4843 my $alternate = 1;
4844 my $patchno = 0;
4845 foreach my $line (@{$difftree}) {
4846 my $diff = parsed_difftree_line($line);
4848 if ($alternate) {
4849 print "<tr class=\"dark\">\n";
4850 } else {
4851 print "<tr class=\"light\">\n";
4853 $alternate ^= 1;
4855 if (exists $diff->{'nparents'}) { # combined diff
4857 fill_from_file_info($diff, @parents)
4858 unless exists $diff->{'from_file'};
4860 if (!is_deleted($diff)) {
4861 # file exists in the result (child) commit
4862 print "<td>" .
4863 $cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},
4864 file_name=>$diff->{'to_file'},
4865 hash_base=>$hash),
4866 -class => "list"}, esc_path($diff->{'to_file'})) .
4867 "</td>\n";
4868 } else {
4869 print "<td>" .
4870 esc_path($diff->{'to_file'}) .
4871 "</td>\n";
4874 if ($action eq 'commitdiff') {
4875 # link to patch
4876 $patchno++;
4877 print "<td class=\"link\">" .
4878 $cgi->a({-href => href(-anchor=>"patch$patchno")},
4879 "patch") .
4880 " | " .
4881 "</td>\n";
4884 my $has_history = 0;
4885 my $not_deleted = 0;
4886 for (my $i = 0; $i < $diff->{'nparents'}; $i++) {
4887 my $hash_parent = $parents[$i];
4888 my $from_hash = $diff->{'from_id'}[$i];
4889 my $from_path = $diff->{'from_file'}[$i];
4890 my $status = $diff->{'status'}[$i];
4892 $has_history ||= ($status ne 'A');
4893 $not_deleted ||= ($status ne 'D');
4895 if ($status eq 'A') {
4896 print "<td class=\"link\" align=\"right\"> | </td>\n";
4897 } elsif ($status eq 'D') {
4898 print "<td class=\"link\">" .
4899 $cgi->a({-href => href(action=>"blob",
4900 hash_base=>$hash,
4901 hash=>$from_hash,
4902 file_name=>$from_path)},
4903 "blob" . ($i+1)) .
4904 " | </td>\n";
4905 } else {
4906 if ($diff->{'to_id'} eq $from_hash) {
4907 print "<td class=\"link nochange\">";
4908 } else {
4909 print "<td class=\"link\">";
4911 print $cgi->a({-href => href(action=>"blobdiff",
4912 hash=>$diff->{'to_id'},
4913 hash_parent=>$from_hash,
4914 hash_base=>$hash,
4915 hash_parent_base=>$hash_parent,
4916 file_name=>$diff->{'to_file'},
4917 file_parent=>$from_path)},
4918 "diff" . ($i+1)) .
4919 " | </td>\n";
4923 print "<td class=\"link\">";
4924 if ($not_deleted) {
4925 print $cgi->a({-href => href(action=>"blob",
4926 hash=>$diff->{'to_id'},
4927 file_name=>$diff->{'to_file'},
4928 hash_base=>$hash)},
4929 "blob");
4930 print " | " if ($has_history);
4932 if ($has_history) {
4933 print $cgi->a({-href => href(action=>"history",
4934 file_name=>$diff->{'to_file'},
4935 hash_base=>$hash)},
4936 "history");
4938 print "</td>\n";
4940 print "</tr>\n";
4941 next; # instead of 'else' clause, to avoid extra indent
4943 # else ordinary diff
4945 my ($to_mode_oct, $to_mode_str, $to_file_type);
4946 my ($from_mode_oct, $from_mode_str, $from_file_type);
4947 if ($diff->{'to_mode'} ne ('0' x 6)) {
4948 $to_mode_oct = oct $diff->{'to_mode'};
4949 if (S_ISREG($to_mode_oct)) { # only for regular file
4950 $to_mode_str = sprintf("%04o", $to_mode_oct & 0777); # permission bits
4952 $to_file_type = file_type($diff->{'to_mode'});
4954 if ($diff->{'from_mode'} ne ('0' x 6)) {
4955 $from_mode_oct = oct $diff->{'from_mode'};
4956 if (S_ISREG($from_mode_oct)) { # only for regular file
4957 $from_mode_str = sprintf("%04o", $from_mode_oct & 0777); # permission bits
4959 $from_file_type = file_type($diff->{'from_mode'});
4962 if ($diff->{'status'} eq "A") { # created
4963 my $mode_chng = "<span class=\"file_status new\">[new $to_file_type";
4964 $mode_chng .= " with mode: $to_mode_str" if $to_mode_str;
4965 $mode_chng .= "]</span>";
4966 print "<td>";
4967 print $cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},
4968 hash_base=>$hash, file_name=>$diff->{'file'}),
4969 -class => "list"}, esc_path($diff->{'file'}));
4970 print "</td>\n";
4971 print "<td>$mode_chng</td>\n";
4972 print "<td class=\"link\">";
4973 if ($action eq 'commitdiff') {
4974 # link to patch
4975 $patchno++;
4976 print $cgi->a({-href => href(-anchor=>"patch$patchno")},
4977 "patch") .
4978 " | ";
4980 print $cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},
4981 hash_base=>$hash, file_name=>$diff->{'file'})},
4982 "blob");
4983 print "</td>\n";
4985 } elsif ($diff->{'status'} eq "D") { # deleted
4986 my $mode_chng = "<span class=\"file_status deleted\">[deleted $from_file_type]</span>";
4987 print "<td>";
4988 print $cgi->a({-href => href(action=>"blob", hash=>$diff->{'from_id'},
4989 hash_base=>$parent, file_name=>$diff->{'file'}),
4990 -class => "list"}, esc_path($diff->{'file'}));
4991 print "</td>\n";
4992 print "<td>$mode_chng</td>\n";
4993 print "<td class=\"link\">";
4994 if ($action eq 'commitdiff') {
4995 # link to patch
4996 $patchno++;
4997 print $cgi->a({-href => href(-anchor=>"patch$patchno")},
4998 "patch") .
4999 " | ";
5001 print $cgi->a({-href => href(action=>"blob", hash=>$diff->{'from_id'},
5002 hash_base=>$parent, file_name=>$diff->{'file'})},
5003 "blob") . " | ";
5004 if ($have_blame) {
5005 print $cgi->a({-href => href(action=>"blame", hash_base=>$parent,
5006 file_name=>$diff->{'file'})},
5007 "blame") . " | ";
5009 print $cgi->a({-href => href(action=>"history", hash_base=>$parent,
5010 file_name=>$diff->{'file'})},
5011 "history");
5012 print "</td>\n";
5014 } elsif ($diff->{'status'} eq "M" || $diff->{'status'} eq "T") { # modified, or type changed
5015 my $mode_chnge = "";
5016 if ($diff->{'from_mode'} != $diff->{'to_mode'}) {
5017 $mode_chnge = "<span class=\"file_status mode_chnge\">[changed";
5018 if ($from_file_type ne $to_file_type) {
5019 $mode_chnge .= " from $from_file_type to $to_file_type";
5021 if (($from_mode_oct & 0777) != ($to_mode_oct & 0777)) {
5022 if ($from_mode_str && $to_mode_str) {
5023 $mode_chnge .= " mode: $from_mode_str->$to_mode_str";
5024 } elsif ($to_mode_str) {
5025 $mode_chnge .= " mode: $to_mode_str";
5028 $mode_chnge .= "]</span>\n";
5030 print "<td>";
5031 print $cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},
5032 hash_base=>$hash, file_name=>$diff->{'file'}),
5033 -class => "list"}, esc_path($diff->{'file'}));
5034 print "</td>\n";
5035 print "<td>$mode_chnge</td>\n";
5036 print "<td class=\"link\">";
5037 if ($action eq 'commitdiff') {
5038 # link to patch
5039 $patchno++;
5040 print $cgi->a({-href => href(-anchor=>"patch$patchno")},
5041 "patch") .
5042 " | ";
5043 } elsif ($diff->{'to_id'} ne $diff->{'from_id'}) {
5044 # "commit" view and modified file (not onlu mode changed)
5045 print $cgi->a({-href => href(action=>"blobdiff",
5046 hash=>$diff->{'to_id'}, hash_parent=>$diff->{'from_id'},
5047 hash_base=>$hash, hash_parent_base=>$parent,
5048 file_name=>$diff->{'file'})},
5049 "diff") .
5050 " | ";
5052 print $cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},
5053 hash_base=>$hash, file_name=>$diff->{'file'})},
5054 "blob") . " | ";
5055 if ($have_blame) {
5056 print $cgi->a({-href => href(action=>"blame", hash_base=>$hash,
5057 file_name=>$diff->{'file'})},
5058 "blame") . " | ";
5060 print $cgi->a({-href => href(action=>"history", hash_base=>$hash,
5061 file_name=>$diff->{'file'})},
5062 "history");
5063 print "</td>\n";
5065 } elsif ($diff->{'status'} eq "R" || $diff->{'status'} eq "C") { # renamed or copied
5066 my %status_name = ('R' => 'moved', 'C' => 'copied');
5067 my $nstatus = $status_name{$diff->{'status'}};
5068 my $mode_chng = "";
5069 if ($diff->{'from_mode'} != $diff->{'to_mode'}) {
5070 # mode also for directories, so we cannot use $to_mode_str
5071 $mode_chng = sprintf(", mode: %04o", $to_mode_oct & 0777);
5073 print "<td>" .
5074 $cgi->a({-href => href(action=>"blob", hash_base=>$hash,
5075 hash=>$diff->{'to_id'}, file_name=>$diff->{'to_file'}),
5076 -class => "list"}, esc_path($diff->{'to_file'})) . "</td>\n" .
5077 "<td><span class=\"file_status $nstatus\">[$nstatus from " .
5078 $cgi->a({-href => href(action=>"blob", hash_base=>$parent,
5079 hash=>$diff->{'from_id'}, file_name=>$diff->{'from_file'}),
5080 -class => "list"}, esc_path($diff->{'from_file'})) .
5081 " with " . (int $diff->{'similarity'}) . "% similarity$mode_chng]</span></td>\n" .
5082 "<td class=\"link\">";
5083 if ($action eq 'commitdiff') {
5084 # link to patch
5085 $patchno++;
5086 print $cgi->a({-href => href(-anchor=>"patch$patchno")},
5087 "patch") .
5088 " | ";
5089 } elsif ($diff->{'to_id'} ne $diff->{'from_id'}) {
5090 # "commit" view and modified file (not only pure rename or copy)
5091 print $cgi->a({-href => href(action=>"blobdiff",
5092 hash=>$diff->{'to_id'}, hash_parent=>$diff->{'from_id'},
5093 hash_base=>$hash, hash_parent_base=>$parent,
5094 file_name=>$diff->{'to_file'}, file_parent=>$diff->{'from_file'})},
5095 "diff") .
5096 " | ";
5098 print $cgi->a({-href => href(action=>"blob", hash=>$diff->{'to_id'},
5099 hash_base=>$parent, file_name=>$diff->{'to_file'})},
5100 "blob") . " | ";
5101 if ($have_blame) {
5102 print $cgi->a({-href => href(action=>"blame", hash_base=>$hash,
5103 file_name=>$diff->{'to_file'})},
5104 "blame") . " | ";
5106 print $cgi->a({-href => href(action=>"history", hash_base=>$hash,
5107 file_name=>$diff->{'to_file'})},
5108 "history");
5109 print "</td>\n";
5111 } # we should not encounter Unmerged (U) or Unknown (X) status
5112 print "</tr>\n";
5114 print "</tbody>" if $has_header;
5115 print "</table>\n";
5118 # Print context lines and then rem/add lines in a side-by-side manner.
5119 sub print_sidebyside_diff_lines {
5120 my ($ctx, $rem, $add) = @_;
5122 # print context block before add/rem block
5123 if (@$ctx) {
5124 print join '',
5125 '<div class="chunk_block ctx">',
5126 '<div class="old">',
5127 @$ctx,
5128 '</div>',
5129 '<div class="new">',
5130 @$ctx,
5131 '</div>',
5132 '</div>';
5135 if (!@$add) {
5136 # pure removal
5137 print join '',
5138 '<div class="chunk_block rem">',
5139 '<div class="old">',
5140 @$rem,
5141 '</div>',
5142 '</div>';
5143 } elsif (!@$rem) {
5144 # pure addition
5145 print join '',
5146 '<div class="chunk_block add">',
5147 '<div class="new">',
5148 @$add,
5149 '</div>',
5150 '</div>';
5151 } else {
5152 print join '',
5153 '<div class="chunk_block chg">',
5154 '<div class="old">',
5155 @$rem,
5156 '</div>',
5157 '<div class="new">',
5158 @$add,
5159 '</div>',
5160 '</div>';
5164 # Print context lines and then rem/add lines in inline manner.
5165 sub print_inline_diff_lines {
5166 my ($ctx, $rem, $add) = @_;
5168 print @$ctx, @$rem, @$add;
5171 # Format removed and added line, mark changed part and HTML-format them.
5172 # Implementation is based on contrib/diff-highlight
5173 sub format_rem_add_lines_pair {
5174 my ($rem, $add, $num_parents) = @_;
5176 # We need to untabify lines before split()'ing them;
5177 # otherwise offsets would be invalid.
5178 chomp $rem;
5179 chomp $add;
5180 $rem = untabify($rem);
5181 $add = untabify($add);
5183 my @rem = split(//, $rem);
5184 my @add = split(//, $add);
5185 my ($esc_rem, $esc_add);
5186 # Ignore leading +/- characters for each parent.
5187 my ($prefix_len, $suffix_len) = ($num_parents, 0);
5188 my ($prefix_has_nonspace, $suffix_has_nonspace);
5190 my $shorter = (@rem < @add) ? @rem : @add;
5191 while ($prefix_len < $shorter) {
5192 last if ($rem[$prefix_len] ne $add[$prefix_len]);
5194 $prefix_has_nonspace = 1 if ($rem[$prefix_len] !~ /\s/);
5195 $prefix_len++;
5198 while ($prefix_len + $suffix_len < $shorter) {
5199 last if ($rem[-1 - $suffix_len] ne $add[-1 - $suffix_len]);
5201 $suffix_has_nonspace = 1 if ($rem[-1 - $suffix_len] !~ /\s/);
5202 $suffix_len++;
5205 # Mark lines that are different from each other, but have some common
5206 # part that isn't whitespace. If lines are completely different, don't
5207 # mark them because that would make output unreadable, especially if
5208 # diff consists of multiple lines.
5209 if ($prefix_has_nonspace || $suffix_has_nonspace) {
5210 $esc_rem = esc_html_hl_regions($rem, 'marked',
5211 [$prefix_len, @rem - $suffix_len], -nbsp=>1);
5212 $esc_add = esc_html_hl_regions($add, 'marked',
5213 [$prefix_len, @add - $suffix_len], -nbsp=>1);
5214 } else {
5215 $esc_rem = esc_html($rem, -nbsp=>1);
5216 $esc_add = esc_html($add, -nbsp=>1);
5219 return format_diff_line(\$esc_rem, 'rem'),
5220 format_diff_line(\$esc_add, 'add');
5223 # HTML-format diff context, removed and added lines.
5224 sub format_ctx_rem_add_lines {
5225 my ($ctx, $rem, $add, $num_parents) = @_;
5226 my (@new_ctx, @new_rem, @new_add);
5227 my $can_highlight = 0;
5228 my $is_combined = ($num_parents > 1);
5230 # Highlight if every removed line has a corresponding added line.
5231 if (@$add > 0 && @$add == @$rem) {
5232 $can_highlight = 1;
5234 # Highlight lines in combined diff only if the chunk contains
5235 # diff between the same version, e.g.
5237 # - a
5238 # - b
5239 # + c
5240 # + d
5242 # Otherwise the highlightling would be confusing.
5243 if ($is_combined) {
5244 for (my $i = 0; $i < @$add; $i++) {
5245 my $prefix_rem = substr($rem->[$i], 0, $num_parents);
5246 my $prefix_add = substr($add->[$i], 0, $num_parents);
5248 $prefix_rem =~ s/-/+/g;
5250 if ($prefix_rem ne $prefix_add) {
5251 $can_highlight = 0;
5252 last;
5258 if ($can_highlight) {
5259 for (my $i = 0; $i < @$add; $i++) {
5260 my ($line_rem, $line_add) = format_rem_add_lines_pair(
5261 $rem->[$i], $add->[$i], $num_parents);
5262 push @new_rem, $line_rem;
5263 push @new_add, $line_add;
5265 } else {
5266 @new_rem = map { format_diff_line($_, 'rem') } @$rem;
5267 @new_add = map { format_diff_line($_, 'add') } @$add;
5270 @new_ctx = map { format_diff_line($_, 'ctx') } @$ctx;
5272 return (\@new_ctx, \@new_rem, \@new_add);
5275 # Print context lines and then rem/add lines.
5276 sub print_diff_lines {
5277 my ($ctx, $rem, $add, $diff_style, $num_parents) = @_;
5278 my $is_combined = $num_parents > 1;
5280 ($ctx, $rem, $add) = format_ctx_rem_add_lines($ctx, $rem, $add,
5281 $num_parents);
5283 if ($diff_style eq 'sidebyside' && !$is_combined) {
5284 print_sidebyside_diff_lines($ctx, $rem, $add);
5285 } else {
5286 # default 'inline' style and unknown styles
5287 print_inline_diff_lines($ctx, $rem, $add);
5291 sub print_diff_chunk {
5292 my ($diff_style, $num_parents, $from, $to, @chunk) = @_;
5293 my (@ctx, @rem, @add);
5295 # The class of the previous line.
5296 my $prev_class = '';
5298 return unless @chunk;
5300 # incomplete last line might be among removed or added lines,
5301 # or both, or among context lines: find which
5302 for (my $i = 1; $i < @chunk; $i++) {
5303 if ($chunk[$i][0] eq 'incomplete') {
5304 $chunk[$i][0] = $chunk[$i-1][0];
5308 # guardian
5309 push @chunk, ["", ""];
5311 foreach my $line_info (@chunk) {
5312 my ($class, $line) = @$line_info;
5314 # print chunk headers
5315 if ($class && $class eq 'chunk_header') {
5316 print format_diff_line($line, $class, $from, $to);
5317 next;
5320 ## print from accumulator when have some add/rem lines or end
5321 # of chunk (flush context lines), or when have add and rem
5322 # lines and new block is reached (otherwise add/rem lines could
5323 # be reordered)
5324 if (!$class || ((@rem || @add) && $class eq 'ctx') ||
5325 (@rem && @add && $class ne $prev_class)) {
5326 print_diff_lines(\@ctx, \@rem, \@add,
5327 $diff_style, $num_parents);
5328 @ctx = @rem = @add = ();
5331 ## adding lines to accumulator
5332 # guardian value
5333 last unless $line;
5334 # rem, add or change
5335 if ($class eq 'rem') {
5336 push @rem, $line;
5337 } elsif ($class eq 'add') {
5338 push @add, $line;
5340 # context line
5341 if ($class eq 'ctx') {
5342 push @ctx, $line;
5345 $prev_class = $class;
5349 sub git_patchset_body {
5350 my ($fd, $diff_style, $difftree, $hash, @hash_parents) = @_;
5351 my ($hash_parent) = $hash_parents[0];
5353 my $is_combined = (@hash_parents > 1);
5354 my $patch_idx = 0;
5355 my $patch_number = 0;
5356 my $patch_line;
5357 my $diffinfo;
5358 my $to_name;
5359 my (%from, %to);
5360 my @chunk; # for side-by-side diff
5362 print "<div class=\"patchset\">\n";
5364 # skip to first patch
5365 while ($patch_line = <$fd>) {
5366 chomp $patch_line;
5368 last if ($patch_line =~ m/^diff /);
5371 PATCH:
5372 while ($patch_line) {
5374 # parse "git diff" header line
5375 if ($patch_line =~ m/^diff --git (\"(?:[^\\\"]*(?:\\.[^\\\"]*)*)\"|[^ "]*) (.*)$/) {
5376 # $1 is from_name, which we do not use
5377 $to_name = unquote($2);
5378 $to_name =~ s!^b/!!;
5379 } elsif ($patch_line =~ m/^diff --(cc|combined) ("?.*"?)$/) {
5380 # $1 is 'cc' or 'combined', which we do not use
5381 $to_name = unquote($2);
5382 } else {
5383 $to_name = undef;
5386 # check if current patch belong to current raw line
5387 # and parse raw git-diff line if needed
5388 if (is_patch_split($diffinfo, { 'to_file' => $to_name })) {
5389 # this is continuation of a split patch
5390 print "<div class=\"patch cont\">\n";
5391 } else {
5392 # advance raw git-diff output if needed
5393 $patch_idx++ if defined $diffinfo;
5395 # read and prepare patch information
5396 $diffinfo = parsed_difftree_line($difftree->[$patch_idx]);
5398 # compact combined diff output can have some patches skipped
5399 # find which patch (using pathname of result) we are at now;
5400 if ($is_combined) {
5401 while ($to_name ne $diffinfo->{'to_file'}) {
5402 print "<div class=\"patch\" id=\"patch". ($patch_idx+1) ."\">\n" .
5403 format_diff_cc_simplified($diffinfo, @hash_parents) .
5404 "</div>\n"; # class="patch"
5406 $patch_idx++;
5407 $patch_number++;
5409 last if $patch_idx > $#$difftree;
5410 $diffinfo = parsed_difftree_line($difftree->[$patch_idx]);
5414 # modifies %from, %to hashes
5415 parse_from_to_diffinfo($diffinfo, \%from, \%to, @hash_parents);
5417 # this is first patch for raw difftree line with $patch_idx index
5418 # we index @$difftree array from 0, but number patches from 1
5419 print "<div class=\"patch\" id=\"patch". ($patch_idx+1) ."\">\n";
5422 # git diff header
5423 #assert($patch_line =~ m/^diff /) if DEBUG;
5424 #assert($patch_line !~ m!$/$!) if DEBUG; # is chomp-ed
5425 $patch_number++;
5426 # print "git diff" header
5427 print format_git_diff_header_line($patch_line, $diffinfo,
5428 \%from, \%to);
5430 # print extended diff header
5431 print "<div class=\"diff extended_header\">\n";
5432 EXTENDED_HEADER:
5433 while ($patch_line = <$fd>) {
5434 chomp $patch_line;
5436 last EXTENDED_HEADER if ($patch_line =~ m/^--- |^diff /);
5438 print format_extended_diff_header_line($patch_line, $diffinfo,
5439 \%from, \%to);
5441 print "</div>\n"; # class="diff extended_header"
5443 # from-file/to-file diff header
5444 if (! $patch_line) {
5445 print "</div>\n"; # class="patch"
5446 last PATCH;
5448 next PATCH if ($patch_line =~ m/^diff /);
5449 #assert($patch_line =~ m/^---/) if DEBUG;
5451 my $last_patch_line = $patch_line;
5452 $patch_line = <$fd>;
5453 chomp $patch_line;
5454 #assert($patch_line =~ m/^\+\+\+/) if DEBUG;
5456 print format_diff_from_to_header($last_patch_line, $patch_line,
5457 $diffinfo, \%from, \%to,
5458 @hash_parents);
5460 # the patch itself
5461 LINE:
5462 while ($patch_line = <$fd>) {
5463 chomp $patch_line;
5465 next PATCH if ($patch_line =~ m/^diff /);
5467 my $class = diff_line_class($patch_line, \%from, \%to);
5469 if ($class eq 'chunk_header') {
5470 print_diff_chunk($diff_style, scalar @hash_parents, \%from, \%to, @chunk);
5471 @chunk = ();
5474 push @chunk, [ $class, $patch_line ];
5477 } continue {
5478 if (@chunk) {
5479 print_diff_chunk($diff_style, scalar @hash_parents, \%from, \%to, @chunk);
5480 @chunk = ();
5482 print "</div>\n"; # class="patch"
5485 # for compact combined (--cc) format, with chunk and patch simplification
5486 # the patchset might be empty, but there might be unprocessed raw lines
5487 for (++$patch_idx if $patch_number > 0;
5488 $patch_idx < @$difftree;
5489 ++$patch_idx) {
5490 # read and prepare patch information
5491 $diffinfo = parsed_difftree_line($difftree->[$patch_idx]);
5493 # generate anchor for "patch" links in difftree / whatchanged part
5494 print "<div class=\"patch\" id=\"patch". ($patch_idx+1) ."\">\n" .
5495 format_diff_cc_simplified($diffinfo, @hash_parents) .
5496 "</div>\n"; # class="patch"
5498 $patch_number++;
5501 if ($patch_number == 0) {
5502 if (@hash_parents > 1) {
5503 print "<div class=\"diff nodifferences\">Trivial merge</div>\n";
5504 } else {
5505 print "<div class=\"diff nodifferences\">No differences found</div>\n";
5509 print "</div>\n"; # class="patchset"
5512 # . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
5514 sub git_project_search_form {
5515 my ($searchtext, $search_use_regexp) = @_;
5517 my $limit = '';
5518 if ($project_filter) {
5519 $limit = " in '$project_filter/'";
5522 print "<div class=\"projsearch\">\n";
5523 print $cgi->start_form(-method => 'get', -action => $my_uri) .
5524 $cgi->hidden(-name => 'a', -value => 'project_list') . "\n";
5525 print $cgi->hidden(-name => 'pf', -value => $project_filter). "\n"
5526 if (defined $project_filter);
5527 print $cgi->textfield(-name => 's', -value => $searchtext,
5528 -title => "Search project by name and description$limit",
5529 -size => 60) . "\n" .
5530 "<span title=\"Extended regular expression\">" .
5531 $cgi->checkbox(-name => 'sr', -value => 1, -label => 're',
5532 -checked => $search_use_regexp) .
5533 "</span>\n" .
5534 $cgi->submit(-name => 'btnS', -value => 'Search') .
5535 $cgi->end_form() . "\n" .
5536 $cgi->a({-href => href(project => undef, searchtext => undef,
5537 project_filter => $project_filter)},
5538 esc_html("List all projects$limit")) . "<br />\n";
5539 print "</div>\n";
5542 # entry for given @keys needs filling if at least one of keys in list
5543 # is not present in %$project_info
5544 sub project_info_needs_filling {
5545 my ($project_info, @keys) = @_;
5547 # return List::MoreUtils::any { !exists $project_info->{$_} } @keys;
5548 foreach my $key (@keys) {
5549 if (!exists $project_info->{$key}) {
5550 return 1;
5553 return;
5556 # fills project list info (age, description, owner, category, forks, etc.)
5557 # for each project in the list, removing invalid projects from
5558 # returned list, or fill only specified info.
5560 # Invalid projects are removed from the returned list if and only if you
5561 # ask 'age' or 'age_string' to be filled, because they are the only fields
5562 # that run unconditionally git command that requires repository, and
5563 # therefore do always check if project repository is invalid.
5565 # USAGE:
5566 # * fill_project_list_info(\@project_list, 'descr_long', 'ctags')
5567 # ensures that 'descr_long' and 'ctags' fields are filled
5568 # * @project_list = fill_project_list_info(\@project_list)
5569 # ensures that all fields are filled (and invalid projects removed)
5571 # NOTE: modifies $projlist, but does not remove entries from it
5572 sub fill_project_list_info {
5573 my ($projlist, @wanted_keys) = @_;
5574 my @projects;
5575 my $filter_set = sub { return @_; };
5576 if (@wanted_keys) {
5577 my %wanted_keys = map { $_ => 1 } @wanted_keys;
5578 $filter_set = sub { return grep { $wanted_keys{$_} } @_; };
5581 my $show_ctags = gitweb_check_feature('ctags');
5582 PROJECT:
5583 foreach my $pr (@$projlist) {
5584 if (project_info_needs_filling($pr, $filter_set->('age', 'age_string'))) {
5585 my (@activity) = git_get_last_activity($pr->{'path'});
5586 unless (@activity) {
5587 next PROJECT;
5589 ($pr->{'age'}, $pr->{'age_string'}) = @activity;
5591 if (project_info_needs_filling($pr, $filter_set->('descr', 'descr_long'))) {
5592 my $descr = git_get_project_description($pr->{'path'}) || "";
5593 $descr = to_utf8($descr);
5594 $pr->{'descr_long'} = $descr;
5595 $pr->{'descr'} = chop_str($descr, $projects_list_description_width, 5);
5597 if (project_info_needs_filling($pr, $filter_set->('owner'))) {
5598 $pr->{'owner'} = git_get_project_owner("$pr->{'path'}") || "";
5600 if ($show_ctags &&
5601 project_info_needs_filling($pr, $filter_set->('ctags'))) {
5602 $pr->{'ctags'} = git_get_project_ctags($pr->{'path'});
5604 if ($projects_list_group_categories &&
5605 project_info_needs_filling($pr, $filter_set->('category'))) {
5606 my $cat = git_get_project_category($pr->{'path'}) ||
5607 $project_list_default_category;
5608 $pr->{'category'} = to_utf8($cat);
5611 push @projects, $pr;
5614 return @projects;
5617 sub sort_projects_list {
5618 my ($projlist, $order) = @_;
5620 sub order_str {
5621 my $key = shift;
5622 return sub { $a->{$key} cmp $b->{$key} };
5625 sub order_num_then_undef {
5626 my $key = shift;
5627 return sub {
5628 defined $a->{$key} ?
5629 (defined $b->{$key} ? $a->{$key} <=> $b->{$key} : -1) :
5630 (defined $b->{$key} ? 1 : 0)
5634 my %orderings = (
5635 project => order_str('path'),
5636 descr => order_str('descr_long'),
5637 owner => order_str('owner'),
5638 age => order_num_then_undef('age'),
5641 my $ordering = $orderings{$order};
5642 return defined $ordering ? sort $ordering @$projlist : @$projlist;
5645 # returns a hash of categories, containing the list of project
5646 # belonging to each category
5647 sub build_projlist_by_category {
5648 my ($projlist, $from, $to) = @_;
5649 my %categories;
5651 $from = 0 unless defined $from;
5652 $to = $#$projlist if (!defined $to || $#$projlist < $to);
5654 for (my $i = $from; $i <= $to; $i++) {
5655 my $pr = $projlist->[$i];
5656 push @{$categories{ $pr->{'category'} }}, $pr;
5659 return wantarray ? %categories : \%categories;
5662 # print 'sort by' <th> element, generating 'sort by $name' replay link
5663 # if that order is not selected
5664 sub print_sort_th {
5665 print format_sort_th(@_);
5668 sub format_sort_th {
5669 my ($name, $order, $header) = @_;
5670 my $sort_th = "";
5671 $header ||= ucfirst($name);
5673 if ($order eq $name) {
5674 $sort_th .= "<th>$header</th>\n";
5675 } else {
5676 $sort_th .= "<th>" .
5677 $cgi->a({-href => href(-replay=>1, order=>$name),
5678 -class => "header"}, $header) .
5679 "</th>\n";
5682 return $sort_th;
5685 sub git_project_list_rows {
5686 my ($projlist, $from, $to, $check_forks) = @_;
5688 $from = 0 unless defined $from;
5689 $to = $#$projlist if (!defined $to || $#$projlist < $to);
5691 my $alternate = 1;
5692 for (my $i = $from; $i <= $to; $i++) {
5693 my $pr = $projlist->[$i];
5695 if ($alternate) {
5696 print "<tr class=\"dark\">\n";
5697 } else {
5698 print "<tr class=\"light\">\n";
5700 $alternate ^= 1;
5702 if ($check_forks) {
5703 print "<td>";
5704 if ($pr->{'forks'}) {
5705 my $nforks = scalar @{$pr->{'forks'}};
5706 if ($nforks > 0) {
5707 print $cgi->a({-href => href(project=>$pr->{'path'}, action=>"forks"),
5708 -title => "$nforks forks"}, "+");
5709 } else {
5710 print $cgi->span({-title => "$nforks forks"}, "+");
5713 print "</td>\n";
5715 print "<td>" . $cgi->a({-href => href(project=>$pr->{'path'}, action=>"summary"),
5716 -class => "list"},
5717 esc_html_match_hl($pr->{'path'}, $search_regexp)) .
5718 "</td>\n" .
5719 "<td>" . $cgi->a({-href => href(project=>$pr->{'path'}, action=>"summary"),
5720 -class => "list",
5721 -title => $pr->{'descr_long'}},
5722 $search_regexp
5723 ? esc_html_match_hl_chopped($pr->{'descr_long'},
5724 $pr->{'descr'}, $search_regexp)
5725 : esc_html($pr->{'descr'})) .
5726 "</td>\n";
5727 unless ($omit_owner) {
5728 print "<td><i>" . chop_and_escape_str($pr->{'owner'}, 15) . "</i></td>\n";
5730 unless ($omit_age_column) {
5731 print "<td class=\"". age_class($pr->{'age'}) . "\">" .
5732 (defined $pr->{'age_string'} ? $pr->{'age_string'} : "No commits") . "</td>\n";
5734 print"<td class=\"link\">" .
5735 $cgi->a({-href => href(project=>$pr->{'path'}, action=>"summary")}, "summary") . " | " .
5736 $cgi->a({-href => href(project=>$pr->{'path'}, action=>"shortlog")}, "shortlog") . " | " .
5737 $cgi->a({-href => href(project=>$pr->{'path'}, action=>"log")}, "log") . " | " .
5738 $cgi->a({-href => href(project=>$pr->{'path'}, action=>"tree")}, "tree") .
5739 ($pr->{'forks'} ? " | " . $cgi->a({-href => href(project=>$pr->{'path'}, action=>"forks")}, "forks") : '') .
5740 "</td>\n" .
5741 "</tr>\n";
5745 sub git_project_list_body {
5746 # actually uses global variable $project
5747 my ($projlist, $order, $from, $to, $extra, $no_header) = @_;
5748 my @projects = @$projlist;
5750 my $check_forks = gitweb_check_feature('forks');
5751 my $show_ctags = gitweb_check_feature('ctags');
5752 my $tagfilter = $show_ctags ? $input_params{'ctag'} : undef;
5753 $check_forks = undef
5754 if ($tagfilter || $search_regexp);
5756 # filtering out forks before filling info allows to do less work
5757 @projects = filter_forks_from_projects_list(\@projects)
5758 if ($check_forks);
5759 # search_projects_list pre-fills required info
5760 @projects = search_projects_list(\@projects,
5761 'search_regexp' => $search_regexp,
5762 'tagfilter' => $tagfilter)
5763 if ($tagfilter || $search_regexp);
5764 # fill the rest
5765 my @all_fields = ('descr', 'descr_long', 'ctags', 'category');
5766 push @all_fields, ('age', 'age_string') unless($omit_age_column);
5767 push @all_fields, 'owner' unless($omit_owner);
5768 @projects = fill_project_list_info(\@projects, @all_fields);
5770 $order ||= $default_projects_order;
5771 $from = 0 unless defined $from;
5772 $to = $#projects if (!defined $to || $#projects < $to);
5774 # short circuit
5775 if ($from > $to) {
5776 print "<center>\n".
5777 "<b>No such projects found</b><br />\n".
5778 "Click ".$cgi->a({-href=>href(project=>undef)},"here")." to view all projects<br />\n".
5779 "</center>\n<br />\n";
5780 return;
5783 @projects = sort_projects_list(\@projects, $order);
5785 if ($show_ctags) {
5786 my $ctags = git_gather_all_ctags(\@projects);
5787 my $cloud = git_populate_project_tagcloud($ctags);
5788 print git_show_project_tagcloud($cloud, 64);
5791 print "<table class=\"project_list\">\n";
5792 unless ($no_header) {
5793 print "<tr>\n";
5794 if ($check_forks) {
5795 print "<th></th>\n";
5797 print_sort_th('project', $order, 'Project');
5798 print_sort_th('descr', $order, 'Description');
5799 print_sort_th('owner', $order, 'Owner') unless $omit_owner;
5800 print_sort_th('age', $order, 'Last Change') unless $omit_age_column;
5801 print "<th></th>\n" . # for links
5802 "</tr>\n";
5805 if ($projects_list_group_categories) {
5806 # only display categories with projects in the $from-$to window
5807 @projects = sort {$a->{'category'} cmp $b->{'category'}} @projects[$from..$to];
5808 my %categories = build_projlist_by_category(\@projects, $from, $to);
5809 foreach my $cat (sort keys %categories) {
5810 unless ($cat eq "") {
5811 print "<tr>\n";
5812 if ($check_forks) {
5813 print "<td></td>\n";
5815 print "<td class=\"category\" colspan=\"5\">".esc_html($cat)."</td>\n";
5816 print "</tr>\n";
5819 git_project_list_rows($categories{$cat}, undef, undef, $check_forks);
5821 } else {
5822 git_project_list_rows(\@projects, $from, $to, $check_forks);
5825 if (defined $extra) {
5826 print "<tr>\n";
5827 if ($check_forks) {
5828 print "<td></td>\n";
5830 print "<td colspan=\"5\">$extra</td>\n" .
5831 "</tr>\n";
5833 print "</table>\n";
5836 sub git_log_body {
5837 # uses global variable $project
5838 my ($commitlist, $from, $to, $refs, $extra) = @_;
5840 $from = 0 unless defined $from;
5841 $to = $#{$commitlist} if (!defined $to || $#{$commitlist} < $to);
5843 for (my $i = 0; $i <= $to; $i++) {
5844 my %co = %{$commitlist->[$i]};
5845 next if !%co;
5846 my $commit = $co{'id'};
5847 my $ref = format_ref_marker($refs, $commit);
5848 git_print_header_div('commit',
5849 "<span class=\"age\">$co{'age_string'}</span>" .
5850 esc_html($co{'title'}) . $ref,
5851 $commit);
5852 print "<div class=\"title_text\">\n" .
5853 "<div class=\"log_link\">\n" .
5854 $cgi->a({-href => href(action=>"commit", hash=>$commit)}, "commit") .
5855 " | " .
5856 $cgi->a({-href => href(action=>"commitdiff", hash=>$commit)}, "commitdiff") .
5857 " | " .
5858 $cgi->a({-href => href(action=>"tree", hash=>$commit, hash_base=>$commit)}, "tree") .
5859 "<br/>\n" .
5860 "</div>\n";
5861 git_print_authorship(\%co, -tag => 'span');
5862 print "<br/>\n</div>\n";
5864 print "<div class=\"log_body\">\n";
5865 git_print_log($co{'comment'}, -final_empty_line=> 1);
5866 print "</div>\n";
5868 if ($extra) {
5869 print "<div class=\"page_nav\">\n";
5870 print "$extra\n";
5871 print "</div>\n";
5875 sub git_shortlog_body {
5876 # uses global variable $project
5877 my ($commitlist, $from, $to, $refs, $extra) = @_;
5879 $from = 0 unless defined $from;
5880 $to = $#{$commitlist} if (!defined $to || $#{$commitlist} < $to);
5882 print "<table class=\"shortlog\">\n";
5883 my $alternate = 1;
5884 for (my $i = $from; $i <= $to; $i++) {
5885 my %co = %{$commitlist->[$i]};
5886 my $commit = $co{'id'};
5887 my $ref = format_ref_marker($refs, $commit);
5888 if ($alternate) {
5889 print "<tr class=\"dark\">\n";
5890 } else {
5891 print "<tr class=\"light\">\n";
5893 $alternate ^= 1;
5894 # git_summary() used print "<td><i>$co{'age_string'}</i></td>\n" .
5895 print "<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n" .
5896 format_author_html('td', \%co, 10) . "<td>";
5897 print format_subject_html($co{'title'}, $co{'title_short'},
5898 href(action=>"commit", hash=>$commit), $ref);
5899 print "</td>\n" .
5900 "<td class=\"link\">" .
5901 $cgi->a({-href => href(action=>"commit", hash=>$commit)}, "commit") . " | " .
5902 $cgi->a({-href => href(action=>"commitdiff", hash=>$commit)}, "commitdiff") . " | " .
5903 $cgi->a({-href => href(action=>"tree", hash=>$commit, hash_base=>$commit)}, "tree");
5904 my $snapshot_links = format_snapshot_links($commit);
5905 if (defined $snapshot_links) {
5906 print " | " . $snapshot_links;
5908 print "</td>\n" .
5909 "</tr>\n";
5911 if (defined $extra) {
5912 print "<tr>\n" .
5913 "<td colspan=\"4\">$extra</td>\n" .
5914 "</tr>\n";
5916 print "</table>\n";
5919 sub git_history_body {
5920 # Warning: assumes constant type (blob or tree) during history
5921 my ($commitlist, $from, $to, $refs, $extra,
5922 $file_name, $file_hash, $ftype) = @_;
5924 $from = 0 unless defined $from;
5925 $to = $#{$commitlist} unless (defined $to && $to <= $#{$commitlist});
5927 print "<table class=\"history\">\n";
5928 my $alternate = 1;
5929 for (my $i = $from; $i <= $to; $i++) {
5930 my %co = %{$commitlist->[$i]};
5931 if (!%co) {
5932 next;
5934 my $commit = $co{'id'};
5936 my $ref = format_ref_marker($refs, $commit);
5938 if ($alternate) {
5939 print "<tr class=\"dark\">\n";
5940 } else {
5941 print "<tr class=\"light\">\n";
5943 $alternate ^= 1;
5944 print "<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n" .
5945 # shortlog: format_author_html('td', \%co, 10)
5946 format_author_html('td', \%co, 15, 3) . "<td>";
5947 # originally git_history used chop_str($co{'title'}, 50)
5948 print format_subject_html($co{'title'}, $co{'title_short'},
5949 href(action=>"commit", hash=>$commit), $ref);
5950 print "</td>\n" .
5951 "<td class=\"link\">" .
5952 $cgi->a({-href => href(action=>$ftype, hash_base=>$commit, file_name=>$file_name)}, $ftype) . " | " .
5953 $cgi->a({-href => href(action=>"commitdiff", hash=>$commit)}, "commitdiff");
5955 if ($ftype eq 'blob') {
5956 my $blob_current = $file_hash;
5957 my $blob_parent = git_get_hash_by_path($commit, $file_name);
5958 if (defined $blob_current && defined $blob_parent &&
5959 $blob_current ne $blob_parent) {
5960 print " | " .
5961 $cgi->a({-href => href(action=>"blobdiff",
5962 hash=>$blob_current, hash_parent=>$blob_parent,
5963 hash_base=>$hash_base, hash_parent_base=>$commit,
5964 file_name=>$file_name)},
5965 "diff to current");
5968 print "</td>\n" .
5969 "</tr>\n";
5971 if (defined $extra) {
5972 print "<tr>\n" .
5973 "<td colspan=\"4\">$extra</td>\n" .
5974 "</tr>\n";
5976 print "</table>\n";
5979 sub git_tags_body {
5980 # uses global variable $project
5981 my ($taglist, $from, $to, $extra) = @_;
5982 $from = 0 unless defined $from;
5983 $to = $#{$taglist} if (!defined $to || $#{$taglist} < $to);
5985 print "<table class=\"tags\">\n";
5986 my $alternate = 1;
5987 for (my $i = $from; $i <= $to; $i++) {
5988 my $entry = $taglist->[$i];
5989 my %tag = %$entry;
5990 my $comment = $tag{'subject'};
5991 my $comment_short;
5992 if (defined $comment) {
5993 $comment_short = chop_str($comment, 30, 5);
5995 if ($alternate) {
5996 print "<tr class=\"dark\">\n";
5997 } else {
5998 print "<tr class=\"light\">\n";
6000 $alternate ^= 1;
6001 if (defined $tag{'age'}) {
6002 print "<td><i>$tag{'age'}</i></td>\n";
6003 } else {
6004 print "<td></td>\n";
6006 print "<td>" .
6007 $cgi->a({-href => href(action=>$tag{'reftype'}, hash=>$tag{'refid'}),
6008 -class => "list name"}, esc_html($tag{'name'})) .
6009 "</td>\n" .
6010 "<td>";
6011 if (defined $comment) {
6012 print format_subject_html($comment, $comment_short,
6013 href(action=>"tag", hash=>$tag{'id'}));
6015 print "</td>\n" .
6016 "<td class=\"selflink\">";
6017 if ($tag{'type'} eq "tag") {
6018 print $cgi->a({-href => href(action=>"tag", hash=>$tag{'id'})}, "tag");
6019 } else {
6020 print "&nbsp;";
6022 print "</td>\n" .
6023 "<td class=\"link\">" . " | " .
6024 $cgi->a({-href => href(action=>$tag{'reftype'}, hash=>$tag{'refid'})}, $tag{'reftype'});
6025 if ($tag{'reftype'} eq "commit") {
6026 print " | " . $cgi->a({-href => href(action=>"shortlog", hash=>$tag{'fullname'})}, "shortlog") .
6027 " | " . $cgi->a({-href => href(action=>"log", hash=>$tag{'fullname'})}, "log");
6028 } elsif ($tag{'reftype'} eq "blob") {
6029 print " | " . $cgi->a({-href => href(action=>"blob_plain", hash=>$tag{'refid'})}, "raw");
6031 print "</td>\n" .
6032 "</tr>";
6034 if (defined $extra) {
6035 print "<tr>\n" .
6036 "<td colspan=\"5\">$extra</td>\n" .
6037 "</tr>\n";
6039 print "</table>\n";
6042 sub git_heads_body {
6043 # uses global variable $project
6044 my ($headlist, $head_at, $from, $to, $extra) = @_;
6045 $from = 0 unless defined $from;
6046 $to = $#{$headlist} if (!defined $to || $#{$headlist} < $to);
6048 print "<table class=\"heads\">\n";
6049 my $alternate = 1;
6050 for (my $i = $from; $i <= $to; $i++) {
6051 my $entry = $headlist->[$i];
6052 my %ref = %$entry;
6053 my $curr = defined $head_at && $ref{'id'} eq $head_at;
6054 if ($alternate) {
6055 print "<tr class=\"dark\">\n";
6056 } else {
6057 print "<tr class=\"light\">\n";
6059 $alternate ^= 1;
6060 print "<td><i>$ref{'age'}</i></td>\n" .
6061 ($curr ? "<td class=\"current_head\">" : "<td>") .
6062 $cgi->a({-href => href(action=>"shortlog", hash=>$ref{'fullname'}),
6063 -class => "list name"},esc_html($ref{'name'})) .
6064 "</td>\n" .
6065 "<td class=\"link\">" .
6066 $cgi->a({-href => href(action=>"shortlog", hash=>$ref{'fullname'})}, "shortlog") . " | " .
6067 $cgi->a({-href => href(action=>"log", hash=>$ref{'fullname'})}, "log") . " | " .
6068 $cgi->a({-href => href(action=>"tree", hash=>$ref{'fullname'}, hash_base=>$ref{'fullname'})}, "tree") .
6069 "</td>\n" .
6070 "</tr>";
6072 if (defined $extra) {
6073 print "<tr>\n" .
6074 "<td colspan=\"3\">$extra</td>\n" .
6075 "</tr>\n";
6077 print "</table>\n";
6080 # Display a single remote block
6081 sub git_remote_block {
6082 my ($remote, $rdata, $limit, $head) = @_;
6084 my $heads = $rdata->{'heads'};
6085 my $fetch = $rdata->{'fetch'};
6086 my $push = $rdata->{'push'};
6088 my $urls_table = "<table class=\"projects_list\">\n" ;
6090 if (defined $fetch) {
6091 if ($fetch eq $push) {
6092 $urls_table .= format_repo_url("URL", $fetch);
6093 } else {
6094 $urls_table .= format_repo_url("Fetch URL", $fetch);
6095 $urls_table .= format_repo_url("Push URL", $push) if defined $push;
6097 } elsif (defined $push) {
6098 $urls_table .= format_repo_url("Push URL", $push);
6099 } else {
6100 $urls_table .= format_repo_url("", "No remote URL");
6103 $urls_table .= "</table>\n";
6105 my $dots;
6106 if (defined $limit && $limit < @$heads) {
6107 $dots = $cgi->a({-href => href(action=>"remotes", hash=>$remote)}, "...");
6110 print $urls_table;
6111 git_heads_body($heads, $head, 0, $limit, $dots);
6114 # Display a list of remote names with the respective fetch and push URLs
6115 sub git_remotes_list {
6116 my ($remotedata, $limit) = @_;
6117 print "<table class=\"heads\">\n";
6118 my $alternate = 1;
6119 my @remotes = sort keys %$remotedata;
6121 my $limited = $limit && $limit < @remotes;
6123 $#remotes = $limit - 1 if $limited;
6125 while (my $remote = shift @remotes) {
6126 my $rdata = $remotedata->{$remote};
6127 my $fetch = $rdata->{'fetch'};
6128 my $push = $rdata->{'push'};
6129 if ($alternate) {
6130 print "<tr class=\"dark\">\n";
6131 } else {
6132 print "<tr class=\"light\">\n";
6134 $alternate ^= 1;
6135 print "<td>" .
6136 $cgi->a({-href=> href(action=>'remotes', hash=>$remote),
6137 -class=> "list name"},esc_html($remote)) .
6138 "</td>";
6139 print "<td class=\"link\">" .
6140 (defined $fetch ? $cgi->a({-href=> $fetch}, "fetch") : "fetch") .
6141 " | " .
6142 (defined $push ? $cgi->a({-href=> $push}, "push") : "push") .
6143 "</td>";
6145 print "</tr>\n";
6148 if ($limited) {
6149 print "<tr>\n" .
6150 "<td colspan=\"3\">" .
6151 $cgi->a({-href => href(action=>"remotes")}, "...") .
6152 "</td>\n" . "</tr>\n";
6155 print "</table>";
6158 # Display remote heads grouped by remote, unless there are too many
6159 # remotes, in which case we only display the remote names
6160 sub git_remotes_body {
6161 my ($remotedata, $limit, $head) = @_;
6162 if ($limit and $limit < keys %$remotedata) {
6163 git_remotes_list($remotedata, $limit);
6164 } else {
6165 fill_remote_heads($remotedata);
6166 while (my ($remote, $rdata) = each %$remotedata) {
6167 git_print_section({-class=>"remote", -id=>$remote},
6168 ["remotes", $remote, $remote], sub {
6169 git_remote_block($remote, $rdata, $limit, $head);
6175 sub git_search_message {
6176 my %co = @_;
6178 my $greptype;
6179 if ($searchtype eq 'commit') {
6180 $greptype = "--grep=";
6181 } elsif ($searchtype eq 'author') {
6182 $greptype = "--author=";
6183 } elsif ($searchtype eq 'committer') {
6184 $greptype = "--committer=";
6186 $greptype .= $searchtext;
6187 my @commitlist = parse_commits($hash, 101, (100 * $page), undef,
6188 $greptype, '--regexp-ignore-case',
6189 $search_use_regexp ? '--extended-regexp' : '--fixed-strings');
6191 my $paging_nav = '';
6192 if ($page > 0) {
6193 $paging_nav .=
6194 $cgi->a({-href => href(-replay=>1, page=>undef)},
6195 "first") .
6196 " &sdot; " .
6197 $cgi->a({-href => href(-replay=>1, page=>$page-1),
6198 -accesskey => "p", -title => "Alt-p"}, "prev");
6199 } else {
6200 $paging_nav .= "first &sdot; prev";
6202 my $next_link = '';
6203 if ($#commitlist >= 100) {
6204 $next_link =
6205 $cgi->a({-href => href(-replay=>1, page=>$page+1),
6206 -accesskey => "n", -title => "Alt-n"}, "next");
6207 $paging_nav .= " &sdot; $next_link";
6208 } else {
6209 $paging_nav .= " &sdot; next";
6212 git_header_html();
6214 git_print_page_nav('','', $hash,$co{'tree'},$hash, $paging_nav);
6215 git_print_header_div('commit', esc_html($co{'title'}), $hash);
6216 if ($page == 0 && !@commitlist) {
6217 print "<p>No match.</p>\n";
6218 } else {
6219 git_search_grep_body(\@commitlist, 0, 99, $next_link);
6222 git_footer_html();
6225 sub git_search_changes {
6226 my %co = @_;
6228 local $/ = "\n";
6229 open my $fd, '-|', git_cmd(), '--no-pager', 'log', @diff_opts,
6230 '--pretty=format:%H', '--no-abbrev', '--raw', "-S$searchtext",
6231 ($search_use_regexp ? '--pickaxe-regex' : ())
6232 or die_error(500, "Open git-log failed");
6234 git_header_html();
6236 git_print_page_nav('','', $hash,$co{'tree'},$hash);
6237 git_print_header_div('commit', esc_html($co{'title'}), $hash);
6239 print "<table class=\"pickaxe search\">\n";
6240 my $alternate = 1;
6241 undef %co;
6242 my @files;
6243 while (my $line = <$fd>) {
6244 chomp $line;
6245 next unless $line;
6247 my %set = parse_difftree_raw_line($line);
6248 if (defined $set{'commit'}) {
6249 # finish previous commit
6250 if (%co) {
6251 print "</td>\n" .
6252 "<td class=\"link\">" .
6253 $cgi->a({-href => href(action=>"commit", hash=>$co{'id'})},
6254 "commit") .
6255 " | " .
6256 $cgi->a({-href => href(action=>"tree", hash=>$co{'tree'},
6257 hash_base=>$co{'id'})},
6258 "tree") .
6259 "</td>\n" .
6260 "</tr>\n";
6263 if ($alternate) {
6264 print "<tr class=\"dark\">\n";
6265 } else {
6266 print "<tr class=\"light\">\n";
6268 $alternate ^= 1;
6269 %co = parse_commit($set{'commit'});
6270 my $author = chop_and_escape_str($co{'author_name'}, 15, 5);
6271 print "<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n" .
6272 "<td><i>$author</i></td>\n" .
6273 "<td>" .
6274 $cgi->a({-href => href(action=>"commit", hash=>$co{'id'}),
6275 -class => "list subject"},
6276 chop_and_escape_str($co{'title'}, 50) . "<br/>");
6277 } elsif (defined $set{'to_id'}) {
6278 next if ($set{'to_id'} =~ m/^0{40}$/);
6280 print $cgi->a({-href => href(action=>"blob", hash_base=>$co{'id'},
6281 hash=>$set{'to_id'}, file_name=>$set{'to_file'}),
6282 -class => "list"},
6283 "<span class=\"match\">" . esc_path($set{'file'}) . "</span>") .
6284 "<br/>\n";
6287 close $fd;
6289 # finish last commit (warning: repetition!)
6290 if (%co) {
6291 print "</td>\n" .
6292 "<td class=\"link\">" .
6293 $cgi->a({-href => href(action=>"commit", hash=>$co{'id'})},
6294 "commit") .
6295 " | " .
6296 $cgi->a({-href => href(action=>"tree", hash=>$co{'tree'},
6297 hash_base=>$co{'id'})},
6298 "tree") .
6299 "</td>\n" .
6300 "</tr>\n";
6303 print "</table>\n";
6305 git_footer_html();
6308 sub git_search_files {
6309 my %co = @_;
6311 local $/ = "\n";
6312 open my $fd, "-|", git_cmd(), 'grep', '-n', '-z',
6313 $search_use_regexp ? ('-E', '-i') : '-F',
6314 $searchtext, $co{'tree'}
6315 or die_error(500, "Open git-grep failed");
6317 git_header_html();
6319 git_print_page_nav('','', $hash,$co{'tree'},$hash);
6320 git_print_header_div('commit', esc_html($co{'title'}), $hash);
6322 print "<table class=\"grep_search\">\n";
6323 my $alternate = 1;
6324 my $matches = 0;
6325 my $lastfile = '';
6326 my $file_href;
6327 while (my $line = <$fd>) {
6328 chomp $line;
6329 my ($file, $lno, $ltext, $binary);
6330 last if ($matches++ > 1000);
6331 if ($line =~ /^Binary file (.+) matches$/) {
6332 $file = $1;
6333 $binary = 1;
6334 } else {
6335 ($file, $lno, $ltext) = split(/\0/, $line, 3);
6336 $file =~ s/^$co{'tree'}://;
6338 if ($file ne $lastfile) {
6339 $lastfile and print "</td></tr>\n";
6340 if ($alternate++) {
6341 print "<tr class=\"dark\">\n";
6342 } else {
6343 print "<tr class=\"light\">\n";
6345 $file_href = href(action=>"blob", hash_base=>$co{'id'},
6346 file_name=>$file);
6347 print "<td class=\"list\">".
6348 $cgi->a({-href => $file_href, -class => "list"}, esc_path($file));
6349 print "</td><td>\n";
6350 $lastfile = $file;
6352 if ($binary) {
6353 print "<div class=\"binary\">Binary file</div>\n";
6354 } else {
6355 $ltext = untabify($ltext);
6356 if ($ltext =~ m/^(.*)($search_regexp)(.*)$/i) {
6357 $ltext = esc_html($1, -nbsp=>1);
6358 $ltext .= '<span class="match">';
6359 $ltext .= esc_html($2, -nbsp=>1);
6360 $ltext .= '</span>';
6361 $ltext .= esc_html($3, -nbsp=>1);
6362 } else {
6363 $ltext = esc_html($ltext, -nbsp=>1);
6365 print "<div class=\"pre\">" .
6366 $cgi->a({-href => $file_href.'#l'.$lno,
6367 -class => "linenr"}, sprintf('%4i', $lno)) .
6368 ' ' . $ltext . "</div>\n";
6371 if ($lastfile) {
6372 print "</td></tr>\n";
6373 if ($matches > 1000) {
6374 print "<div class=\"diff nodifferences\">Too many matches, listing trimmed</div>\n";
6376 } else {
6377 print "<div class=\"diff nodifferences\">No matches found</div>\n";
6379 close $fd;
6381 print "</table>\n";
6383 git_footer_html();
6386 sub git_search_grep_body {
6387 my ($commitlist, $from, $to, $extra) = @_;
6388 $from = 0 unless defined $from;
6389 $to = $#{$commitlist} if (!defined $to || $#{$commitlist} < $to);
6391 print "<table class=\"commit_search\">\n";
6392 my $alternate = 1;
6393 for (my $i = $from; $i <= $to; $i++) {
6394 my %co = %{$commitlist->[$i]};
6395 if (!%co) {
6396 next;
6398 my $commit = $co{'id'};
6399 if ($alternate) {
6400 print "<tr class=\"dark\">\n";
6401 } else {
6402 print "<tr class=\"light\">\n";
6404 $alternate ^= 1;
6405 print "<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n" .
6406 format_author_html('td', \%co, 15, 5) .
6407 "<td>" .
6408 $cgi->a({-href => href(action=>"commit", hash=>$co{'id'}),
6409 -class => "list subject"},
6410 chop_and_escape_str($co{'title'}, 50) . "<br/>");
6411 my $comment = $co{'comment'};
6412 foreach my $line (@$comment) {
6413 if ($line =~ m/^(.*?)($search_regexp)(.*)$/i) {
6414 my ($lead, $match, $trail) = ($1, $2, $3);
6415 $match = chop_str($match, 70, 5, 'center');
6416 my $contextlen = int((80 - length($match))/2);
6417 $contextlen = 30 if ($contextlen > 30);
6418 $lead = chop_str($lead, $contextlen, 10, 'left');
6419 $trail = chop_str($trail, $contextlen, 10, 'right');
6421 $lead = esc_html($lead);
6422 $match = esc_html($match);
6423 $trail = esc_html($trail);
6425 print "$lead<span class=\"match\">$match</span>$trail<br />";
6428 print "</td>\n" .
6429 "<td class=\"link\">" .
6430 $cgi->a({-href => href(action=>"commit", hash=>$co{'id'})}, "commit") .
6431 " | " .
6432 $cgi->a({-href => href(action=>"commitdiff", hash=>$co{'id'})}, "commitdiff") .
6433 " | " .
6434 $cgi->a({-href => href(action=>"tree", hash=>$co{'tree'}, hash_base=>$co{'id'})}, "tree");
6435 print "</td>\n" .
6436 "</tr>\n";
6438 if (defined $extra) {
6439 print "<tr>\n" .
6440 "<td colspan=\"3\">$extra</td>\n" .
6441 "</tr>\n";
6443 print "</table>\n";
6446 ## ======================================================================
6447 ## ======================================================================
6448 ## actions
6450 sub git_project_list {
6451 my $order = $input_params{'order'};
6452 if (defined $order && $order !~ m/none|project|descr|owner|age/) {
6453 die_error(400, "Unknown order parameter");
6456 my @list = git_get_projects_list($project_filter, $strict_export);
6457 if (!@list) {
6458 die_error(404, "No projects found");
6461 git_header_html();
6462 if (defined $home_text && -f $home_text) {
6463 print "<div class=\"index_include\">\n";
6464 insert_file($home_text);
6465 print "</div>\n";
6468 git_project_search_form($searchtext, $search_use_regexp);
6469 git_project_list_body(\@list, $order);
6470 git_footer_html();
6473 sub git_forks {
6474 my $order = $input_params{'order'};
6475 if (defined $order && $order !~ m/none|project|descr|owner|age/) {
6476 die_error(400, "Unknown order parameter");
6479 my $filter = $project;
6480 $filter =~ s/\.git$//;
6481 my @list = git_get_projects_list($filter);
6482 if (!@list) {
6483 die_error(404, "No forks found");
6486 git_header_html();
6487 git_print_page_nav('','');
6488 git_print_header_div('summary', "$project forks");
6489 git_project_list_body(\@list, $order);
6490 git_footer_html();
6493 sub git_project_index {
6494 my @projects = git_get_projects_list($project_filter, $strict_export);
6495 if (!@projects) {
6496 die_error(404, "No projects found");
6499 print $cgi->header(
6500 -type => 'text/plain',
6501 -charset => 'utf-8',
6502 -content_disposition => 'inline; filename="index.aux"');
6504 foreach my $pr (@projects) {
6505 if (!exists $pr->{'owner'}) {
6506 $pr->{'owner'} = git_get_project_owner("$pr->{'path'}");
6509 my ($path, $owner) = ($pr->{'path'}, $pr->{'owner'});
6510 # quote as in CGI::Util::encode, but keep the slash, and use '+' for ' '
6511 $path =~ s/([^a-zA-Z0-9_.\-\/ ])/sprintf("%%%02X", ord($1))/eg;
6512 $owner =~ s/([^a-zA-Z0-9_.\-\/ ])/sprintf("%%%02X", ord($1))/eg;
6513 $path =~ s/ /\+/g;
6514 $owner =~ s/ /\+/g;
6516 print "$path $owner\n";
6520 sub git_summary {
6521 my $descr = git_get_project_description($project) || "none";
6522 my %co = parse_commit("HEAD");
6523 my %cd = %co ? parse_date($co{'committer_epoch'}, $co{'committer_tz'}) : ();
6524 my $head = $co{'id'};
6525 my $remote_heads = gitweb_check_feature('remote_heads');
6527 my $owner = git_get_project_owner($project);
6529 my $refs = git_get_references();
6530 # These get_*_list functions return one more to allow us to see if
6531 # there are more ...
6532 my @taglist = git_get_tags_list(16);
6533 my @headlist = git_get_heads_list(16);
6534 my %remotedata = $remote_heads ? git_get_remotes_list() : ();
6535 my @forklist;
6536 my $check_forks = gitweb_check_feature('forks');
6538 if ($check_forks) {
6539 # find forks of a project
6540 my $filter = $project;
6541 $filter =~ s/\.git$//;
6542 @forklist = git_get_projects_list($filter);
6543 # filter out forks of forks
6544 @forklist = filter_forks_from_projects_list(\@forklist)
6545 if (@forklist);
6548 git_header_html();
6549 git_print_page_nav('summary','', $head);
6551 print "<div class=\"title\">&nbsp;</div>\n";
6552 print "<table class=\"projects_list\">\n" .
6553 "<tr id=\"metadata_desc\"><td>description</td><td>" . esc_html($descr) . "</td></tr>\n";
6554 if ($owner and not $omit_owner) {
6555 print "<tr id=\"metadata_owner\"><td>owner</td><td>" . esc_html($owner) . "</td></tr>\n";
6557 if (defined $cd{'rfc2822'}) {
6558 print "<tr id=\"metadata_lchange\"><td>last change</td>" .
6559 "<td>".format_timestamp_html(\%cd)."</td></tr>\n";
6562 # use per project git URL list in $projectroot/$project/cloneurl
6563 # or make project git URL from git base URL and project name
6564 my $url_tag = "URL";
6565 my @url_list = git_get_project_url_list($project);
6566 @url_list = map { "$_/$project" } @git_base_url_list unless @url_list;
6567 foreach my $git_url (@url_list) {
6568 next unless $git_url;
6569 print format_repo_url($url_tag, $git_url);
6570 $url_tag = "";
6572 if (defined($git_base_bundles_url) && -d "$projectroot/$project/bundles") {
6573 my $projname = $project;
6574 $projname =~ s|^.*/||;
6575 my $url = "$git_base_bundles_url/$project/bundles";
6576 print format_repo_url(
6577 "bundle&#160;info",
6578 "<a rel='nofollow' href='$url'>$projname downloadable bundles</a>");
6581 # Tag cloud
6582 my $show_ctags = gitweb_check_feature('ctags');
6583 if ($show_ctags) {
6584 my $ctags = git_get_project_ctags($project);
6585 if (%$ctags) {
6586 # without ability to add tags, don't show if there are none
6587 my $cloud = git_populate_project_tagcloud($ctags);
6588 print "<tr id=\"metadata_ctags\">" .
6589 "<td>content tags</td>" .
6590 "<td>".git_show_project_tagcloud($cloud, 48)."</td>" .
6591 "</tr>\n";
6595 print "</table>\n";
6597 # If XSS prevention is on, we don't include README.html.
6598 # TODO: Allow a readme in some safe format.
6599 if (!$prevent_xss && -s "$projectroot/$project/README.html") {
6600 print "<div class=\"title\">readme</div>\n" .
6601 "<div class=\"readme\">\n";
6602 insert_file("$projectroot/$project/README.html");
6603 print "\n</div>\n"; # class="readme"
6606 # we need to request one more than 16 (0..15) to check if
6607 # those 16 are all
6608 my @commitlist = $head ? parse_commits($head, 17) : ();
6609 if (@commitlist) {
6610 git_print_header_div('shortlog');
6611 git_shortlog_body(\@commitlist, 0, 15, $refs,
6612 $#commitlist <= 15 ? undef :
6613 $cgi->a({-href => href(action=>"shortlog")}, "..."));
6616 if (@taglist) {
6617 git_print_header_div('tags');
6618 git_tags_body(\@taglist, 0, 15,
6619 $#taglist <= 15 ? undef :
6620 $cgi->a({-href => href(action=>"tags")}, "..."));
6623 if (@headlist) {
6624 git_print_header_div('heads');
6625 git_heads_body(\@headlist, $head, 0, 15,
6626 $#headlist <= 15 ? undef :
6627 $cgi->a({-href => href(action=>"heads")}, "..."));
6630 if (%remotedata) {
6631 git_print_header_div('remotes');
6632 git_remotes_body(\%remotedata, 15, $head);
6635 if (@forklist) {
6636 git_print_header_div('forks');
6637 git_project_list_body(\@forklist, 'age', 0, 15,
6638 $#forklist <= 15 ? undef :
6639 $cgi->a({-href => href(action=>"forks")}, "..."),
6640 'no_header');
6643 git_footer_html();
6646 sub git_tag {
6647 my %tag = parse_tag($hash);
6649 if (! %tag) {
6650 die_error(404, "Unknown tag object");
6653 my $head = git_get_head_hash($project);
6654 git_header_html();
6655 git_print_page_nav('','', $head,undef,$head);
6656 git_print_header_div('commit', esc_html($tag{'name'}), $hash);
6657 print "<div class=\"title_text\">\n" .
6658 "<table class=\"object_header\">\n" .
6659 "<tr>\n" .
6660 "<td>object</td>\n" .
6661 "<td>" . $cgi->a({-class => "list", -href => href(action=>$tag{'type'}, hash=>$tag{'object'})},
6662 $tag{'object'}) . "</td>\n" .
6663 "<td class=\"link\">" . $cgi->a({-href => href(action=>$tag{'type'}, hash=>$tag{'object'})},
6664 $tag{'type'}) . "</td>\n" .
6665 "</tr>\n";
6666 if (defined($tag{'author'})) {
6667 git_print_authorship_rows(\%tag, 'author');
6669 print "</table>\n\n" .
6670 "</div>\n";
6671 print "<div class=\"page_body\">";
6672 my $comment = $tag{'comment'};
6673 foreach my $line (@$comment) {
6674 chomp $line;
6675 print esc_html($line, -nbsp=>1) . "<br/>\n";
6677 print "</div>\n";
6678 git_footer_html();
6681 sub git_blame_common {
6682 my $format = shift || 'porcelain';
6683 if ($format eq 'porcelain' && $input_params{'javascript'}) {
6684 $format = 'incremental';
6685 $action = 'blame_incremental'; # for page title etc
6688 # permissions
6689 gitweb_check_feature('blame')
6690 or die_error(403, "Blame view not allowed");
6692 # error checking
6693 die_error(400, "No file name given") unless $file_name;
6694 $hash_base ||= git_get_head_hash($project);
6695 die_error(404, "Couldn't find base commit") unless $hash_base;
6696 my %co = parse_commit($hash_base)
6697 or die_error(404, "Commit not found");
6698 my $ftype = "blob";
6699 if (!defined $hash) {
6700 $hash = git_get_hash_by_path($hash_base, $file_name, "blob")
6701 or die_error(404, "Error looking up file");
6702 } else {
6703 $ftype = git_get_type($hash);
6704 if ($ftype !~ "blob") {
6705 die_error(400, "Object is not a blob");
6709 my $fd;
6710 if ($format eq 'incremental') {
6711 # get file contents (as base)
6712 open $fd, "-|", git_cmd(), 'cat-file', 'blob', $hash
6713 or die_error(500, "Open git-cat-file failed");
6714 } elsif ($format eq 'data') {
6715 # run git-blame --incremental
6716 open $fd, "-|", git_cmd(), "blame", "--incremental",
6717 $hash_base, "--", $file_name
6718 or die_error(500, "Open git-blame --incremental failed");
6719 } else {
6720 # run git-blame --porcelain
6721 open $fd, "-|", git_cmd(), "blame", '-p',
6722 $hash_base, '--', $file_name
6723 or die_error(500, "Open git-blame --porcelain failed");
6725 binmode $fd, ':utf8';
6727 # incremental blame data returns early
6728 if ($format eq 'data') {
6729 print $cgi->header(
6730 -type=>"text/plain", -charset => "utf-8",
6731 -status=> "200 OK");
6732 local $| = 1; # output autoflush
6733 while (my $line = <$fd>) {
6734 print to_utf8($line);
6736 close $fd
6737 or print "ERROR $!\n";
6739 print 'END';
6740 if (defined $t0 && gitweb_check_feature('timed')) {
6741 print ' '.
6742 tv_interval($t0, [ gettimeofday() ]).
6743 ' '.$number_of_git_cmds;
6745 print "\n";
6747 return;
6750 # page header
6751 git_header_html();
6752 my $formats_nav =
6753 $cgi->a({-href => href(action=>"blob", -replay=>1)},
6754 "blob") .
6755 " | ";
6756 if ($format eq 'incremental') {
6757 $formats_nav .=
6758 $cgi->a({-href => href(action=>"blame", javascript=>0, -replay=>1)},
6759 "blame") . " (non-incremental)";
6760 } else {
6761 $formats_nav .=
6762 $cgi->a({-href => href(action=>"blame_incremental", -replay=>1)},
6763 "blame") . " (incremental)";
6765 $formats_nav .=
6766 " | " .
6767 $cgi->a({-href => href(action=>"history", -replay=>1)},
6768 "history") .
6769 " | " .
6770 $cgi->a({-href => href(action=>$action, file_name=>$file_name)},
6771 "HEAD");
6772 git_print_page_nav('','', $hash_base,$co{'tree'},$hash_base, $formats_nav);
6773 git_print_header_div('commit', esc_html($co{'title'}), $hash_base);
6774 git_print_page_path($file_name, $ftype, $hash_base);
6776 # page body
6777 if ($format eq 'incremental') {
6778 print "<noscript>\n<div class=\"error\"><center><b>\n".
6779 "This page requires JavaScript to run.\n Use ".
6780 $cgi->a({-href => href(action=>'blame',javascript=>0,-replay=>1)},
6781 'this page').
6782 " instead.\n".
6783 "</b></center></div>\n</noscript>\n";
6785 print qq!<div id="progress_bar" style="width: 100%; background-color: yellow"></div>\n!;
6788 print qq!<div class="page_body">\n!;
6789 print qq!<div id="progress_info">... / ...</div>\n!
6790 if ($format eq 'incremental');
6791 print qq!<table id="blame_table" class="blame" width="100%">\n!.
6792 #qq!<col width="5.5em" /><col width="2.5em" /><col width="*" />\n!.
6793 qq!<thead>\n!.
6794 qq!<tr><th>Commit</th><th>Line</th><th>Data</th></tr>\n!.
6795 qq!</thead>\n!.
6796 qq!<tbody>\n!;
6798 my @rev_color = qw(light dark);
6799 my $num_colors = scalar(@rev_color);
6800 my $current_color = 0;
6802 if ($format eq 'incremental') {
6803 my $color_class = $rev_color[$current_color];
6805 #contents of a file
6806 my $linenr = 0;
6807 LINE:
6808 while (my $line = <$fd>) {
6809 chomp $line;
6810 $linenr++;
6812 print qq!<tr id="l$linenr" class="$color_class">!.
6813 qq!<td class="sha1"><a href=""> </a></td>!.
6814 qq!<td class="linenr">!.
6815 qq!<a class="linenr" href="">$linenr</a></td>!;
6816 print qq!<td class="pre">! . esc_html($line) . "</td>\n";
6817 print qq!</tr>\n!;
6820 } else { # porcelain, i.e. ordinary blame
6821 my %metainfo = (); # saves information about commits
6823 # blame data
6824 LINE:
6825 while (my $line = <$fd>) {
6826 chomp $line;
6827 # the header: <SHA-1> <src lineno> <dst lineno> [<lines in group>]
6828 # no <lines in group> for subsequent lines in group of lines
6829 my ($full_rev, $orig_lineno, $lineno, $group_size) =
6830 ($line =~ /^([0-9a-f]{40}) (\d+) (\d+)(?: (\d+))?$/);
6831 if (!exists $metainfo{$full_rev}) {
6832 $metainfo{$full_rev} = { 'nprevious' => 0 };
6834 my $meta = $metainfo{$full_rev};
6835 my $data;
6836 while ($data = <$fd>) {
6837 chomp $data;
6838 last if ($data =~ s/^\t//); # contents of line
6839 if ($data =~ /^(\S+)(?: (.*))?$/) {
6840 $meta->{$1} = $2 unless exists $meta->{$1};
6842 if ($data =~ /^previous /) {
6843 $meta->{'nprevious'}++;
6846 my $short_rev = substr($full_rev, 0, 8);
6847 my $author = $meta->{'author'};
6848 my %date =
6849 parse_date($meta->{'author-time'}, $meta->{'author-tz'});
6850 my $date = $date{'iso-tz'};
6851 if ($group_size) {
6852 $current_color = ($current_color + 1) % $num_colors;
6854 my $tr_class = $rev_color[$current_color];
6855 $tr_class .= ' boundary' if (exists $meta->{'boundary'});
6856 $tr_class .= ' no-previous' if ($meta->{'nprevious'} == 0);
6857 $tr_class .= ' multiple-previous' if ($meta->{'nprevious'} > 1);
6858 print "<tr id=\"l$lineno\" class=\"$tr_class\">\n";
6859 if ($group_size) {
6860 print "<td class=\"sha1\"";
6861 print " title=\"". esc_html($author) . ", $date\"";
6862 print " rowspan=\"$group_size\"" if ($group_size > 1);
6863 print ">";
6864 print $cgi->a({-href => href(action=>"commit",
6865 hash=>$full_rev,
6866 file_name=>$file_name)},
6867 esc_html($short_rev));
6868 if ($group_size >= 2) {
6869 my @author_initials = ($author =~ /\b([[:upper:]])\B/g);
6870 if (@author_initials) {
6871 print "<br />" .
6872 esc_html(join('', @author_initials));
6873 # or join('.', ...)
6876 print "</td>\n";
6878 # 'previous' <sha1 of parent commit> <filename at commit>
6879 if (exists $meta->{'previous'} &&
6880 $meta->{'previous'} =~ /^([a-fA-F0-9]{40}) (.*)$/) {
6881 $meta->{'parent'} = $1;
6882 $meta->{'file_parent'} = unquote($2);
6884 my $linenr_commit =
6885 exists($meta->{'parent'}) ?
6886 $meta->{'parent'} : $full_rev;
6887 my $linenr_filename =
6888 exists($meta->{'file_parent'}) ?
6889 $meta->{'file_parent'} : unquote($meta->{'filename'});
6890 my $blamed = href(action => 'blame',
6891 file_name => $linenr_filename,
6892 hash_base => $linenr_commit);
6893 print "<td class=\"linenr\">";
6894 print $cgi->a({ -href => "$blamed#l$orig_lineno",
6895 -class => "linenr" },
6896 esc_html($lineno));
6897 print "</td>";
6898 print "<td class=\"pre\">" . esc_html($data) . "</td>\n";
6899 print "</tr>\n";
6900 } # end while
6904 # footer
6905 print "</tbody>\n".
6906 "</table>\n"; # class="blame"
6907 print "</div>\n"; # class="blame_body"
6908 close $fd
6909 or print "Reading blob failed\n";
6911 git_footer_html();
6914 sub git_blame {
6915 git_blame_common();
6918 sub git_blame_incremental {
6919 git_blame_common('incremental');
6922 sub git_blame_data {
6923 git_blame_common('data');
6926 sub git_tags {
6927 my $head = git_get_head_hash($project);
6928 git_header_html();
6929 git_print_page_nav('','', $head,undef,$head,format_ref_views('tags'));
6930 git_print_header_div('summary', $project);
6932 my @tagslist = git_get_tags_list();
6933 if (@tagslist) {
6934 git_tags_body(\@tagslist);
6936 git_footer_html();
6939 sub git_heads {
6940 my $head = git_get_head_hash($project);
6941 git_header_html();
6942 git_print_page_nav('','', $head,undef,$head,format_ref_views('heads'));
6943 git_print_header_div('summary', $project);
6945 my @headslist = git_get_heads_list();
6946 if (@headslist) {
6947 git_heads_body(\@headslist, $head);
6949 git_footer_html();
6952 # used both for single remote view and for list of all the remotes
6953 sub git_remotes {
6954 gitweb_check_feature('remote_heads')
6955 or die_error(403, "Remote heads view is disabled");
6957 my $head = git_get_head_hash($project);
6958 my $remote = $input_params{'hash'};
6960 my $remotedata = git_get_remotes_list($remote);
6961 die_error(500, "Unable to get remote information") unless defined $remotedata;
6963 unless (%$remotedata) {
6964 die_error(404, defined $remote ?
6965 "Remote $remote not found" :
6966 "No remotes found");
6969 git_header_html(undef, undef, -action_extra => $remote);
6970 git_print_page_nav('', '', $head, undef, $head,
6971 format_ref_views($remote ? '' : 'remotes'));
6973 fill_remote_heads($remotedata);
6974 if (defined $remote) {
6975 git_print_header_div('remotes', "$remote remote for $project");
6976 git_remote_block($remote, $remotedata->{$remote}, undef, $head);
6977 } else {
6978 git_print_header_div('summary', "$project remotes");
6979 git_remotes_body($remotedata, undef, $head);
6982 git_footer_html();
6985 sub git_blob_plain {
6986 my $type = shift;
6987 my $expires;
6989 if (!defined $hash) {
6990 if (defined $file_name) {
6991 my $base = $hash_base || git_get_head_hash($project);
6992 $hash = git_get_hash_by_path($base, $file_name, "blob")
6993 or die_error(404, "Cannot find file");
6994 } else {
6995 die_error(400, "No file name defined");
6997 } elsif ($hash =~ m/^[0-9a-fA-F]{40}$/) {
6998 # blobs defined by non-textual hash id's can be cached
6999 $expires = "+1d";
7002 open my $fd, "-|", git_cmd(), "cat-file", "blob", $hash
7003 or die_error(500, "Open git-cat-file blob '$hash' failed");
7005 # content-type (can include charset)
7006 $type = blob_contenttype($fd, $file_name, $type);
7008 # "save as" filename, even when no $file_name is given
7009 my $save_as = "$hash";
7010 if (defined $file_name) {
7011 $save_as = $file_name;
7012 } elsif ($type =~ m/^text\//) {
7013 $save_as .= '.txt';
7016 # With XSS prevention on, blobs of all types except a few known safe
7017 # ones are served with "Content-Disposition: attachment" to make sure
7018 # they don't run in our security domain. For certain image types,
7019 # blob view writes an <img> tag referring to blob_plain view, and we
7020 # want to be sure not to break that by serving the image as an
7021 # attachment (though Firefox 3 doesn't seem to care).
7022 my $sandbox = $prevent_xss &&
7023 $type !~ m!^(?:text/[a-z]+|image/(?:gif|png|jpeg))(?:[ ;]|$)!;
7025 # serve text/* as text/plain
7026 if ($prevent_xss &&
7027 ($type =~ m!^text/[a-z]+\b(.*)$! ||
7028 ($type =~ m!^[a-z]+/[a-z]\+xml\b(.*)$! && -T $fd))) {
7029 my $rest = $1;
7030 $rest = defined $rest ? $rest : '';
7031 $type = "text/plain$rest";
7034 print $cgi->header(
7035 -type => $type,
7036 -expires => $expires,
7037 -content_disposition =>
7038 ($sandbox ? 'attachment' : 'inline')
7039 . '; filename="' . $save_as . '"');
7040 local $/ = undef;
7041 binmode STDOUT, ':raw';
7042 print <$fd>;
7043 binmode STDOUT, ':utf8'; # as set at the beginning of gitweb.cgi
7044 close $fd;
7047 sub git_blob {
7048 my $expires;
7050 if (!defined $hash) {
7051 if (defined $file_name) {
7052 my $base = $hash_base || git_get_head_hash($project);
7053 $hash = git_get_hash_by_path($base, $file_name, "blob")
7054 or die_error(404, "Cannot find file");
7055 } else {
7056 die_error(400, "No file name defined");
7058 } elsif ($hash =~ m/^[0-9a-fA-F]{40}$/) {
7059 # blobs defined by non-textual hash id's can be cached
7060 $expires = "+1d";
7063 my $have_blame = gitweb_check_feature('blame');
7064 open my $fd, "-|", git_cmd(), "cat-file", "blob", $hash
7065 or die_error(500, "Couldn't cat $file_name, $hash");
7066 my $mimetype = blob_mimetype($fd, $file_name);
7067 # use 'blob_plain' (aka 'raw') view for files that cannot be displayed
7068 if ($mimetype !~ m!^(?:text/|image/(?:gif|png|jpeg)$)! && -B $fd) {
7069 close $fd;
7070 return git_blob_plain($mimetype);
7072 # we can have blame only for text/* mimetype
7073 $have_blame &&= ($mimetype =~ m!^text/!);
7075 my $highlight = gitweb_check_feature('highlight');
7076 my $syntax = guess_file_syntax($highlight, $mimetype, $file_name);
7077 $fd = run_highlighter($fd, $highlight, $syntax)
7078 if $syntax;
7080 git_header_html(undef, $expires);
7081 my $formats_nav = '';
7082 if (defined $hash_base && (my %co = parse_commit($hash_base))) {
7083 if (defined $file_name) {
7084 if ($have_blame) {
7085 $formats_nav .=
7086 $cgi->a({-href => href(action=>"blame", -replay=>1)},
7087 "blame") .
7088 " | ";
7090 $formats_nav .=
7091 $cgi->a({-href => href(action=>"history", -replay=>1)},
7092 "history") .
7093 " | " .
7094 $cgi->a({-href => href(action=>"blob_plain", -replay=>1)},
7095 "raw") .
7096 " | " .
7097 $cgi->a({-href => href(action=>"blob",
7098 hash_base=>"HEAD", file_name=>$file_name)},
7099 "HEAD");
7100 } else {
7101 $formats_nav .=
7102 $cgi->a({-href => href(action=>"blob_plain", -replay=>1)},
7103 "raw");
7105 git_print_page_nav('','', $hash_base,$co{'tree'},$hash_base, $formats_nav);
7106 git_print_header_div('commit', esc_html($co{'title'}), $hash_base);
7107 } else {
7108 print "<div class=\"page_nav\">\n" .
7109 "<br/><br/></div>\n" .
7110 "<div class=\"title\">".esc_html($hash)."</div>\n";
7112 git_print_page_path($file_name, "blob", $hash_base);
7113 print "<div class=\"page_body\">\n";
7114 if ($mimetype =~ m!^image/!) {
7115 print qq!<img class="blob" type="!.esc_attr($mimetype).qq!"!;
7116 if ($file_name) {
7117 print qq! alt="!.esc_attr($file_name).qq!" title="!.esc_attr($file_name).qq!"!;
7119 print qq! src="! .
7120 href(action=>"blob_plain", hash=>$hash,
7121 hash_base=>$hash_base, file_name=>$file_name) .
7122 qq!" />\n!;
7123 } else {
7124 my $nr;
7125 while (my $line = <$fd>) {
7126 chomp $line;
7127 $nr++;
7128 $line = untabify($line);
7129 printf qq!<div class="pre"><a id="l%i" href="%s#l%i" class="linenr">%4i</a> %s</div>\n!,
7130 $nr, esc_attr(href(-replay => 1)), $nr, $nr,
7131 $syntax ? sanitize($line) : esc_html($line, -nbsp=>1);
7134 close $fd
7135 or print "Reading blob failed.\n";
7136 print "</div>";
7137 git_footer_html();
7140 sub git_tree {
7141 if (!defined $hash_base) {
7142 $hash_base = "HEAD";
7144 if (!defined $hash) {
7145 if (defined $file_name) {
7146 $hash = git_get_hash_by_path($hash_base, $file_name, "tree");
7147 } else {
7148 $hash = $hash_base;
7151 die_error(404, "No such tree") unless defined($hash);
7153 my $show_sizes = gitweb_check_feature('show-sizes');
7154 my $have_blame = gitweb_check_feature('blame');
7156 my @entries = ();
7158 local $/ = "\0";
7159 open my $fd, "-|", git_cmd(), "ls-tree", '-z',
7160 ($show_sizes ? '-l' : ()), @extra_options, $hash
7161 or die_error(500, "Open git-ls-tree failed");
7162 @entries = map { chomp; $_ } <$fd>;
7163 close $fd
7164 or die_error(404, "Reading tree failed");
7167 my $refs = git_get_references();
7168 my $ref = format_ref_marker($refs, $hash_base);
7169 git_header_html();
7170 my $basedir = '';
7171 if (defined $hash_base && (my %co = parse_commit($hash_base))) {
7172 my @views_nav = ();
7173 if (defined $file_name) {
7174 push @views_nav,
7175 $cgi->a({-href => href(action=>"history", -replay=>1)},
7176 "history"),
7177 $cgi->a({-href => href(action=>"tree",
7178 hash_base=>"HEAD", file_name=>$file_name)},
7179 "HEAD"),
7181 my $snapshot_links = format_snapshot_links($hash);
7182 if (defined $snapshot_links) {
7183 # FIXME: Should be available when we have no hash base as well.
7184 push @views_nav, $snapshot_links;
7186 git_print_page_nav('tree','', $hash_base, undef, undef,
7187 join(' | ', @views_nav));
7188 git_print_header_div('commit', esc_html($co{'title'}) . $ref, $hash_base);
7189 } else {
7190 undef $hash_base;
7191 print "<div class=\"page_nav\">\n";
7192 print "<br/><br/></div>\n";
7193 print "<div class=\"title\">".esc_html($hash)."</div>\n";
7195 if (defined $file_name) {
7196 $basedir = $file_name;
7197 if ($basedir ne '' && substr($basedir, -1) ne '/') {
7198 $basedir .= '/';
7200 git_print_page_path($file_name, 'tree', $hash_base);
7202 print "<div class=\"page_body\">\n";
7203 print "<table class=\"tree\">\n";
7204 my $alternate = 1;
7205 # '..' (top directory) link if possible
7206 if (defined $hash_base &&
7207 defined $file_name && $file_name =~ m![^/]+$!) {
7208 if ($alternate) {
7209 print "<tr class=\"dark\">\n";
7210 } else {
7211 print "<tr class=\"light\">\n";
7213 $alternate ^= 1;
7215 my $up = $file_name;
7216 $up =~ s!/?[^/]+$!!;
7217 undef $up unless $up;
7218 # based on git_print_tree_entry
7219 print '<td class="mode">' . mode_str('040000') . "</td>\n";
7220 print '<td class="size">&nbsp;</td>'."\n" if $show_sizes;
7221 print '<td class="list">';
7222 print $cgi->a({-href => href(action=>"tree",
7223 hash_base=>$hash_base,
7224 file_name=>$up)},
7225 "..");
7226 print "</td>\n";
7227 print "<td class=\"link\"></td>\n";
7229 print "</tr>\n";
7231 foreach my $line (@entries) {
7232 my %t = parse_ls_tree_line($line, -z => 1, -l => $show_sizes);
7234 if ($alternate) {
7235 print "<tr class=\"dark\">\n";
7236 } else {
7237 print "<tr class=\"light\">\n";
7239 $alternate ^= 1;
7241 git_print_tree_entry(\%t, $basedir, $hash_base, $have_blame);
7243 print "</tr>\n";
7245 print "</table>\n" .
7246 "</div>";
7247 git_footer_html();
7250 sub sanitize_for_filename {
7251 my $name = shift;
7253 $name =~ s!/!-!g;
7254 $name =~ s/[^[:alnum:]_.-]//g;
7256 return $name;
7259 sub snapshot_name {
7260 my ($project, $hash) = @_;
7262 # path/to/project.git -> project
7263 # path/to/project/.git -> project
7264 my $name = to_utf8($project);
7265 $name =~ s,([^/])/*\.git$,$1,;
7266 $name = sanitize_for_filename(basename($name));
7268 my $ver = $hash;
7269 if ($hash =~ /^[0-9a-fA-F]+$/) {
7270 # shorten SHA-1 hash
7271 my $full_hash = git_get_full_hash($project, $hash);
7272 if ($full_hash =~ /^$hash/ && length($hash) > 7) {
7273 $ver = git_get_short_hash($project, $hash);
7275 } elsif ($hash =~ m!^refs/tags/(.*)$!) {
7276 # tags don't need shortened SHA-1 hash
7277 $ver = $1;
7278 } else {
7279 # branches and other need shortened SHA-1 hash
7280 my $strip_refs = join '|', map { quotemeta } get_branch_refs();
7281 if ($hash =~ m!^refs/($strip_refs|remotes)/(.*)$!) {
7282 my $ref_dir = (defined $1) ? $1 : '';
7283 $ver = $2;
7285 $ref_dir = sanitize_for_filename($ref_dir);
7286 # for refs neither in heads nor remotes we want to
7287 # add a ref dir to archive name
7288 if ($ref_dir ne '' and $ref_dir ne 'heads' and $ref_dir ne 'remotes') {
7289 $ver = $ref_dir . '-' . $ver;
7292 $ver .= '-' . git_get_short_hash($project, $hash);
7294 # special case of sanitization for filename - we change
7295 # slashes to dots instead of dashes
7296 # in case of hierarchical branch names
7297 $ver =~ s!/!.!g;
7298 $ver =~ s/[^[:alnum:]_.-]//g;
7300 # name = project-version_string
7301 $name = "$name-$ver";
7303 return wantarray ? ($name, $name) : $name;
7306 sub exit_if_unmodified_since {
7307 my ($latest_epoch) = @_;
7308 our $cgi;
7310 my $if_modified = $cgi->http('IF_MODIFIED_SINCE');
7311 if (defined $if_modified) {
7312 my $since;
7313 if (eval { require HTTP::Date; 1; }) {
7314 $since = HTTP::Date::str2time($if_modified);
7315 } elsif (eval { require Time::ParseDate; 1; }) {
7316 $since = Time::ParseDate::parsedate($if_modified, GMT => 1);
7318 if (defined $since && $latest_epoch <= $since) {
7319 my %latest_date = parse_date($latest_epoch);
7320 print $cgi->header(
7321 -last_modified => $latest_date{'rfc2822'},
7322 -status => '304 Not Modified');
7323 goto DONE_GITWEB;
7328 sub git_snapshot {
7329 my $format = $input_params{'snapshot_format'};
7330 if (!@snapshot_fmts) {
7331 die_error(403, "Snapshots not allowed");
7333 # default to first supported snapshot format
7334 $format ||= $snapshot_fmts[0];
7335 if ($format !~ m/^[a-z0-9]+$/) {
7336 die_error(400, "Invalid snapshot format parameter");
7337 } elsif (!exists($known_snapshot_formats{$format})) {
7338 die_error(400, "Unknown snapshot format");
7339 } elsif ($known_snapshot_formats{$format}{'disabled'}) {
7340 die_error(403, "Snapshot format not allowed");
7341 } elsif (!grep($_ eq $format, @snapshot_fmts)) {
7342 die_error(403, "Unsupported snapshot format");
7345 my $type = git_get_type("$hash^{}");
7346 if (!$type) {
7347 die_error(404, 'Object does not exist');
7348 } elsif ($type eq 'blob') {
7349 die_error(400, 'Object is not a tree-ish');
7352 my ($name, $prefix) = snapshot_name($project, $hash);
7353 my $filename = "$name$known_snapshot_formats{$format}{'suffix'}";
7355 my %co = parse_commit($hash);
7356 exit_if_unmodified_since($co{'committer_epoch'}) if %co;
7358 my $cmd = quote_command(
7359 git_cmd(), 'archive',
7360 "--format=$known_snapshot_formats{$format}{'format'}",
7361 "--prefix=$prefix/", $hash);
7362 if (exists $known_snapshot_formats{$format}{'compressor'}) {
7363 $cmd .= ' | ' . quote_command(@{$known_snapshot_formats{$format}{'compressor'}});
7366 $filename =~ s/(["\\])/\\$1/g;
7367 my %latest_date;
7368 if (%co) {
7369 %latest_date = parse_date($co{'committer_epoch'}, $co{'committer_tz'});
7372 print $cgi->header(
7373 -type => $known_snapshot_formats{$format}{'type'},
7374 -content_disposition => 'inline; filename="' . $filename . '"',
7375 %co ? (-last_modified => $latest_date{'rfc2822'}) : (),
7376 -status => '200 OK');
7378 open my $fd, "-|", $cmd
7379 or die_error(500, "Execute git-archive failed");
7380 binmode STDOUT, ':raw';
7381 print <$fd>;
7382 binmode STDOUT, ':utf8'; # as set at the beginning of gitweb.cgi
7383 close $fd;
7386 sub git_log_generic {
7387 my ($fmt_name, $body_subr, $base, $parent, $file_name, $file_hash) = @_;
7389 my $head = git_get_head_hash($project);
7390 if (!defined $base) {
7391 $base = $head;
7393 if (!defined $page) {
7394 $page = 0;
7396 my $refs = git_get_references();
7398 my $commit_hash = $base;
7399 if (defined $parent) {
7400 $commit_hash = "$parent..$base";
7402 my @commitlist =
7403 parse_commits($commit_hash, 101, (100 * $page),
7404 defined $file_name ? ($file_name, "--full-history") : ());
7406 my $ftype;
7407 if (!defined $file_hash && defined $file_name) {
7408 # some commits could have deleted file in question,
7409 # and not have it in tree, but one of them has to have it
7410 for (my $i = 0; $i < @commitlist; $i++) {
7411 $file_hash = git_get_hash_by_path($commitlist[$i]{'id'}, $file_name);
7412 last if defined $file_hash;
7415 if (defined $file_hash) {
7416 $ftype = git_get_type($file_hash);
7418 if (defined $file_name && !defined $ftype) {
7419 die_error(500, "Unknown type of object");
7421 my %co;
7422 if (defined $file_name) {
7423 %co = parse_commit($base)
7424 or die_error(404, "Unknown commit object");
7428 my $paging_nav = format_paging_nav($fmt_name, $page, $#commitlist >= 100);
7429 my $next_link = '';
7430 if ($#commitlist >= 100) {
7431 $next_link =
7432 $cgi->a({-href => href(-replay=>1, page=>$page+1),
7433 -accesskey => "n", -title => "Alt-n"}, "next");
7435 my $patch_max = gitweb_get_feature('patches');
7436 if ($patch_max && !defined $file_name) {
7437 if ($patch_max < 0 || @commitlist <= $patch_max) {
7438 $paging_nav .= " &sdot; " .
7439 $cgi->a({-href => href(action=>"patches", -replay=>1)},
7440 "patches");
7444 git_header_html();
7445 git_print_page_nav($fmt_name,'', $hash,$hash,$hash, $paging_nav);
7446 if (defined $file_name) {
7447 git_print_header_div('commit', esc_html($co{'title'}), $base);
7448 } else {
7449 git_print_header_div('summary', $project)
7451 git_print_page_path($file_name, $ftype, $hash_base)
7452 if (defined $file_name);
7454 $body_subr->(\@commitlist, 0, 99, $refs, $next_link,
7455 $file_name, $file_hash, $ftype);
7457 git_footer_html();
7460 sub git_log {
7461 git_log_generic('log', \&git_log_body,
7462 $hash, $hash_parent);
7465 sub git_commit {
7466 $hash ||= $hash_base || "HEAD";
7467 my %co = parse_commit($hash)
7468 or die_error(404, "Unknown commit object");
7470 my $parent = $co{'parent'};
7471 my $parents = $co{'parents'}; # listref
7473 # we need to prepare $formats_nav before any parameter munging
7474 my $formats_nav;
7475 if (!defined $parent) {
7476 # --root commitdiff
7477 $formats_nav .= '(initial)';
7478 } elsif (@$parents == 1) {
7479 # single parent commit
7480 $formats_nav .=
7481 '(parent: ' .
7482 $cgi->a({-href => href(action=>"commit",
7483 hash=>$parent)},
7484 esc_html(substr($parent, 0, 7))) .
7485 ')';
7486 } else {
7487 # merge commit
7488 $formats_nav .=
7489 '(merge: ' .
7490 join(' ', map {
7491 $cgi->a({-href => href(action=>"commit",
7492 hash=>$_)},
7493 esc_html(substr($_, 0, 7)));
7494 } @$parents ) .
7495 ')';
7497 if (gitweb_check_feature('patches') && @$parents <= 1) {
7498 $formats_nav .= " | " .
7499 $cgi->a({-href => href(action=>"patch", -replay=>1)},
7500 "patch");
7503 if (!defined $parent) {
7504 $parent = "--root";
7506 my @difftree;
7507 open my $fd, "-|", git_cmd(), "diff-tree", '-r', "--no-commit-id",
7508 @diff_opts,
7509 (@$parents <= 1 ? $parent : '-c'),
7510 $hash, "--"
7511 or die_error(500, "Open git-diff-tree failed");
7512 @difftree = map { chomp; $_ } <$fd>;
7513 close $fd or die_error(404, "Reading git-diff-tree failed");
7515 # non-textual hash id's can be cached
7516 my $expires;
7517 if ($hash =~ m/^[0-9a-fA-F]{40}$/) {
7518 $expires = "+1d";
7520 my $refs = git_get_references();
7521 my $ref = format_ref_marker($refs, $co{'id'});
7523 git_header_html(undef, $expires);
7524 git_print_page_nav('commit', '',
7525 $hash, $co{'tree'}, $hash,
7526 $formats_nav);
7528 if (defined $co{'parent'}) {
7529 git_print_header_div('commitdiff', esc_html($co{'title'}) . $ref, $hash);
7530 } else {
7531 git_print_header_div('tree', esc_html($co{'title'}) . $ref, $co{'tree'}, $hash);
7533 print "<div class=\"title_text\">\n" .
7534 "<table class=\"object_header\">\n";
7535 git_print_authorship_rows(\%co);
7536 print "<tr><td>commit</td><td class=\"sha1\">$co{'id'}</td></tr>\n";
7537 print "<tr>" .
7538 "<td>tree</td>" .
7539 "<td class=\"sha1\">" .
7540 $cgi->a({-href => href(action=>"tree", hash=>$co{'tree'}, hash_base=>$hash),
7541 class => "list"}, $co{'tree'}) .
7542 "</td>" .
7543 "<td class=\"link\">" .
7544 $cgi->a({-href => href(action=>"tree", hash=>$co{'tree'}, hash_base=>$hash)},
7545 "tree");
7546 my $snapshot_links = format_snapshot_links($hash);
7547 if (defined $snapshot_links) {
7548 print " | " . $snapshot_links;
7550 print "</td>" .
7551 "</tr>\n";
7553 foreach my $par (@$parents) {
7554 print "<tr>" .
7555 "<td>parent</td>" .
7556 "<td class=\"sha1\">" .
7557 $cgi->a({-href => href(action=>"commit", hash=>$par),
7558 class => "list"}, $par) .
7559 "</td>" .
7560 "<td class=\"link\">" .
7561 $cgi->a({-href => href(action=>"commit", hash=>$par)}, "commit") .
7562 " | " .
7563 $cgi->a({-href => href(action=>"commitdiff", hash=>$hash, hash_parent=>$par)}, "diff") .
7564 "</td>" .
7565 "</tr>\n";
7567 print "</table>".
7568 "</div>\n";
7570 print "<div class=\"page_body\">\n";
7571 git_print_log($co{'comment'});
7572 print "</div>\n";
7574 git_difftree_body(\@difftree, $hash, @$parents);
7576 git_footer_html();
7579 sub git_object {
7580 # object is defined by:
7581 # - hash or hash_base alone
7582 # - hash_base and file_name
7583 my $type;
7585 # - hash or hash_base alone
7586 if ($hash || ($hash_base && !defined $file_name)) {
7587 my $object_id = $hash || $hash_base;
7589 open my $fd, "-|", quote_command(
7590 git_cmd(), 'cat-file', '-t', $object_id) . ' 2> /dev/null'
7591 or die_error(404, "Object does not exist");
7592 $type = <$fd>;
7593 chomp $type;
7594 close $fd
7595 or die_error(404, "Object does not exist");
7597 # - hash_base and file_name
7598 } elsif ($hash_base && defined $file_name) {
7599 $file_name =~ s,/+$,,;
7601 system(git_cmd(), "cat-file", '-e', $hash_base) == 0
7602 or die_error(404, "Base object does not exist");
7604 # here errors should not happen
7605 open my $fd, "-|", git_cmd(), "ls-tree", $hash_base, "--", $file_name
7606 or die_error(500, "Open git-ls-tree failed");
7607 my $line = <$fd>;
7608 close $fd;
7610 #'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'
7611 unless ($line && $line =~ m/^([0-9]+) (.+) ([0-9a-fA-F]{40})\t/) {
7612 die_error(404, "File or directory for given base does not exist");
7614 $type = $2;
7615 $hash = $3;
7616 } else {
7617 die_error(400, "Not enough information to find object");
7620 print $cgi->redirect(-uri => href(action=>$type, -full=>1,
7621 hash=>$hash, hash_base=>$hash_base,
7622 file_name=>$file_name),
7623 -status => '302 Found');
7626 sub git_blobdiff {
7627 my $format = shift || 'html';
7628 my $diff_style = $input_params{'diff_style'} || 'inline';
7630 my $fd;
7631 my @difftree;
7632 my %diffinfo;
7633 my $expires;
7635 # preparing $fd and %diffinfo for git_patchset_body
7636 # new style URI
7637 if (defined $hash_base && defined $hash_parent_base) {
7638 if (defined $file_name) {
7639 # read raw output
7640 open $fd, "-|", git_cmd(), "diff-tree", '-r', @diff_opts,
7641 $hash_parent_base, $hash_base,
7642 "--", (defined $file_parent ? $file_parent : ()), $file_name
7643 or die_error(500, "Open git-diff-tree failed");
7644 @difftree = map { chomp; $_ } <$fd>;
7645 close $fd
7646 or die_error(404, "Reading git-diff-tree failed");
7647 @difftree
7648 or die_error(404, "Blob diff not found");
7650 } elsif (defined $hash &&
7651 $hash =~ /[0-9a-fA-F]{40}/) {
7652 # try to find filename from $hash
7654 # read filtered raw output
7655 open $fd, "-|", git_cmd(), "diff-tree", '-r', @diff_opts,
7656 $hash_parent_base, $hash_base, "--"
7657 or die_error(500, "Open git-diff-tree failed");
7658 @difftree =
7659 # ':100644 100644 03b21826... 3b93d5e7... M ls-files.c'
7660 # $hash == to_id
7661 grep { /^:[0-7]{6} [0-7]{6} [0-9a-fA-F]{40} $hash/ }
7662 map { chomp; $_ } <$fd>;
7663 close $fd
7664 or die_error(404, "Reading git-diff-tree failed");
7665 @difftree
7666 or die_error(404, "Blob diff not found");
7668 } else {
7669 die_error(400, "Missing one of the blob diff parameters");
7672 if (@difftree > 1) {
7673 die_error(400, "Ambiguous blob diff specification");
7676 %diffinfo = parse_difftree_raw_line($difftree[0]);
7677 $file_parent ||= $diffinfo{'from_file'} || $file_name;
7678 $file_name ||= $diffinfo{'to_file'};
7680 $hash_parent ||= $diffinfo{'from_id'};
7681 $hash ||= $diffinfo{'to_id'};
7683 # non-textual hash id's can be cached
7684 if ($hash_base =~ m/^[0-9a-fA-F]{40}$/ &&
7685 $hash_parent_base =~ m/^[0-9a-fA-F]{40}$/) {
7686 $expires = '+1d';
7689 # open patch output
7690 open $fd, "-|", git_cmd(), "diff-tree", '-r', @diff_opts,
7691 '-p', ($format eq 'html' ? "--full-index" : ()),
7692 $hash_parent_base, $hash_base,
7693 "--", (defined $file_parent ? $file_parent : ()), $file_name
7694 or die_error(500, "Open git-diff-tree failed");
7697 # old/legacy style URI -- not generated anymore since 1.4.3.
7698 if (!%diffinfo) {
7699 die_error('404 Not Found', "Missing one of the blob diff parameters")
7702 # header
7703 if ($format eq 'html') {
7704 my $formats_nav =
7705 $cgi->a({-href => href(action=>"blobdiff_plain", -replay=>1)},
7706 "raw");
7707 $formats_nav .= diff_style_nav($diff_style);
7708 git_header_html(undef, $expires);
7709 if (defined $hash_base && (my %co = parse_commit($hash_base))) {
7710 git_print_page_nav('','', $hash_base,$co{'tree'},$hash_base, $formats_nav);
7711 git_print_header_div('commit', esc_html($co{'title'}), $hash_base);
7712 } else {
7713 print "<div class=\"page_nav\"><br/>$formats_nav<br/></div>\n";
7714 print "<div class=\"title\">".esc_html("$hash vs $hash_parent")."</div>\n";
7716 if (defined $file_name) {
7717 git_print_page_path($file_name, "blob", $hash_base);
7718 } else {
7719 print "<div class=\"page_path\"></div>\n";
7722 } elsif ($format eq 'plain') {
7723 print $cgi->header(
7724 -type => 'text/plain',
7725 -charset => 'utf-8',
7726 -expires => $expires,
7727 -content_disposition => 'inline; filename="' . "$file_name" . '.patch"');
7729 print "X-Git-Url: " . $cgi->self_url() . "\n\n";
7731 } else {
7732 die_error(400, "Unknown blobdiff format");
7735 # patch
7736 if ($format eq 'html') {
7737 print "<div class=\"page_body\">\n";
7739 git_patchset_body($fd, $diff_style,
7740 [ \%diffinfo ], $hash_base, $hash_parent_base);
7741 close $fd;
7743 print "</div>\n"; # class="page_body"
7744 git_footer_html();
7746 } else {
7747 while (my $line = <$fd>) {
7748 $line =~ s!a/($hash|$hash_parent)!'a/'.esc_path($diffinfo{'from_file'})!eg;
7749 $line =~ s!b/($hash|$hash_parent)!'b/'.esc_path($diffinfo{'to_file'})!eg;
7751 print $line;
7753 last if $line =~ m!^\+\+\+!;
7755 local $/ = undef;
7756 print <$fd>;
7757 close $fd;
7761 sub git_blobdiff_plain {
7762 git_blobdiff('plain');
7765 # assumes that it is added as later part of already existing navigation,
7766 # so it returns "| foo | bar" rather than just "foo | bar"
7767 sub diff_style_nav {
7768 my ($diff_style, $is_combined) = @_;
7769 $diff_style ||= 'inline';
7771 return "" if ($is_combined);
7773 my @styles = (inline => 'inline', 'sidebyside' => 'side by side');
7774 my %styles = @styles;
7775 @styles =
7776 @styles[ map { $_ * 2 } 0..$#styles/2 ];
7778 return join '',
7779 map { " | ".$_ }
7780 map {
7781 $_ eq $diff_style ? $styles{$_} :
7782 $cgi->a({-href => href(-replay=>1, diff_style => $_)}, $styles{$_})
7783 } @styles;
7786 sub git_commitdiff {
7787 my %params = @_;
7788 my $format = $params{-format} || 'html';
7789 my $diff_style = $input_params{'diff_style'} || 'inline';
7791 my ($patch_max) = gitweb_get_feature('patches');
7792 if ($format eq 'patch') {
7793 die_error(403, "Patch view not allowed") unless $patch_max;
7796 $hash ||= $hash_base || "HEAD";
7797 my %co = parse_commit($hash)
7798 or die_error(404, "Unknown commit object");
7800 # choose format for commitdiff for merge
7801 if (! defined $hash_parent && @{$co{'parents'}} > 1) {
7802 $hash_parent = '--cc';
7804 # we need to prepare $formats_nav before almost any parameter munging
7805 my $formats_nav;
7806 if ($format eq 'html') {
7807 $formats_nav =
7808 $cgi->a({-href => href(action=>"commitdiff_plain", -replay=>1)},
7809 "raw");
7810 if ($patch_max && @{$co{'parents'}} <= 1) {
7811 $formats_nav .= " | " .
7812 $cgi->a({-href => href(action=>"patch", -replay=>1)},
7813 "patch");
7815 $formats_nav .= diff_style_nav($diff_style, @{$co{'parents'}} > 1);
7817 if (defined $hash_parent &&
7818 $hash_parent ne '-c' && $hash_parent ne '--cc') {
7819 # commitdiff with two commits given
7820 my $hash_parent_short = $hash_parent;
7821 if ($hash_parent =~ m/^[0-9a-fA-F]{40}$/) {
7822 $hash_parent_short = substr($hash_parent, 0, 7);
7824 $formats_nav .=
7825 ' (from';
7826 for (my $i = 0; $i < @{$co{'parents'}}; $i++) {
7827 if ($co{'parents'}[$i] eq $hash_parent) {
7828 $formats_nav .= ' parent ' . ($i+1);
7829 last;
7832 $formats_nav .= ': ' .
7833 $cgi->a({-href => href(-replay=>1,
7834 hash=>$hash_parent, hash_base=>undef)},
7835 esc_html($hash_parent_short)) .
7836 ')';
7837 } elsif (!$co{'parent'}) {
7838 # --root commitdiff
7839 $formats_nav .= ' (initial)';
7840 } elsif (scalar @{$co{'parents'}} == 1) {
7841 # single parent commit
7842 $formats_nav .=
7843 ' (parent: ' .
7844 $cgi->a({-href => href(-replay=>1,
7845 hash=>$co{'parent'}, hash_base=>undef)},
7846 esc_html(substr($co{'parent'}, 0, 7))) .
7847 ')';
7848 } else {
7849 # merge commit
7850 if ($hash_parent eq '--cc') {
7851 $formats_nav .= ' | ' .
7852 $cgi->a({-href => href(-replay=>1,
7853 hash=>$hash, hash_parent=>'-c')},
7854 'combined');
7855 } else { # $hash_parent eq '-c'
7856 $formats_nav .= ' | ' .
7857 $cgi->a({-href => href(-replay=>1,
7858 hash=>$hash, hash_parent=>'--cc')},
7859 'compact');
7861 $formats_nav .=
7862 ' (merge: ' .
7863 join(' ', map {
7864 $cgi->a({-href => href(-replay=>1,
7865 hash=>$_, hash_base=>undef)},
7866 esc_html(substr($_, 0, 7)));
7867 } @{$co{'parents'}} ) .
7868 ')';
7872 my $hash_parent_param = $hash_parent;
7873 if (!defined $hash_parent_param) {
7874 # --cc for multiple parents, --root for parentless
7875 $hash_parent_param =
7876 @{$co{'parents'}} > 1 ? '--cc' : $co{'parent'} || '--root';
7879 # read commitdiff
7880 my $fd;
7881 my @difftree;
7882 if ($format eq 'html') {
7883 open $fd, "-|", git_cmd(), "diff-tree", '-r', @diff_opts,
7884 "--no-commit-id", "--patch-with-raw", "--full-index",
7885 $hash_parent_param, $hash, "--"
7886 or die_error(500, "Open git-diff-tree failed");
7888 while (my $line = <$fd>) {
7889 chomp $line;
7890 # empty line ends raw part of diff-tree output
7891 last unless $line;
7892 push @difftree, scalar parse_difftree_raw_line($line);
7895 } elsif ($format eq 'plain') {
7896 open $fd, "-|", git_cmd(), "diff-tree", '-r', @diff_opts,
7897 '-p', $hash_parent_param, $hash, "--"
7898 or die_error(500, "Open git-diff-tree failed");
7899 } elsif ($format eq 'patch') {
7900 # For commit ranges, we limit the output to the number of
7901 # patches specified in the 'patches' feature.
7902 # For single commits, we limit the output to a single patch,
7903 # diverging from the git-format-patch default.
7904 my @commit_spec = ();
7905 if ($hash_parent) {
7906 if ($patch_max > 0) {
7907 push @commit_spec, "-$patch_max";
7909 push @commit_spec, '-n', "$hash_parent..$hash";
7910 } else {
7911 if ($params{-single}) {
7912 push @commit_spec, '-1';
7913 } else {
7914 if ($patch_max > 0) {
7915 push @commit_spec, "-$patch_max";
7917 push @commit_spec, "-n";
7919 push @commit_spec, '--root', $hash;
7921 open $fd, "-|", git_cmd(), "format-patch", @diff_opts,
7922 '--encoding=utf8', '--stdout', @commit_spec
7923 or die_error(500, "Open git-format-patch failed");
7924 } else {
7925 die_error(400, "Unknown commitdiff format");
7928 # non-textual hash id's can be cached
7929 my $expires;
7930 if ($hash =~ m/^[0-9a-fA-F]{40}$/) {
7931 $expires = "+1d";
7934 # write commit message
7935 if ($format eq 'html') {
7936 my $refs = git_get_references();
7937 my $ref = format_ref_marker($refs, $co{'id'});
7939 git_header_html(undef, $expires);
7940 git_print_page_nav('commitdiff','', $hash,$co{'tree'},$hash, $formats_nav);
7941 git_print_header_div('commit', esc_html($co{'title'}) . $ref, $hash);
7942 print "<div class=\"title_text\">\n" .
7943 "<table class=\"object_header\">\n";
7944 git_print_authorship_rows(\%co);
7945 print "</table>".
7946 "</div>\n";
7947 print "<div class=\"page_body\">\n";
7948 if (@{$co{'comment'}} > 1) {
7949 print "<div class=\"log\">\n";
7950 git_print_log($co{'comment'}, -final_empty_line=> 1, -remove_title => 1);
7951 print "</div>\n"; # class="log"
7954 } elsif ($format eq 'plain') {
7955 my $refs = git_get_references("tags");
7956 my $tagname = git_get_rev_name_tags($hash);
7957 my $filename = basename($project) . "-$hash.patch";
7959 print $cgi->header(
7960 -type => 'text/plain',
7961 -charset => 'utf-8',
7962 -expires => $expires,
7963 -content_disposition => 'inline; filename="' . "$filename" . '"');
7964 my %ad = parse_date($co{'author_epoch'}, $co{'author_tz'});
7965 print "From: " . to_utf8($co{'author'}) . "\n";
7966 print "Date: $ad{'rfc2822'} ($ad{'tz_local'})\n";
7967 print "Subject: " . to_utf8($co{'title'}) . "\n";
7969 print "X-Git-Tag: $tagname\n" if $tagname;
7970 print "X-Git-Url: " . $cgi->self_url() . "\n\n";
7972 foreach my $line (@{$co{'comment'}}) {
7973 print to_utf8($line) . "\n";
7975 print "---\n\n";
7976 } elsif ($format eq 'patch') {
7977 my $filename = basename($project) . "-$hash.patch";
7979 print $cgi->header(
7980 -type => 'text/plain',
7981 -charset => 'utf-8',
7982 -expires => $expires,
7983 -content_disposition => 'inline; filename="' . "$filename" . '"');
7986 # write patch
7987 if ($format eq 'html') {
7988 my $use_parents = !defined $hash_parent ||
7989 $hash_parent eq '-c' || $hash_parent eq '--cc';
7990 git_difftree_body(\@difftree, $hash,
7991 $use_parents ? @{$co{'parents'}} : $hash_parent);
7992 print "<br/>\n";
7994 git_patchset_body($fd, $diff_style,
7995 \@difftree, $hash,
7996 $use_parents ? @{$co{'parents'}} : $hash_parent);
7997 close $fd;
7998 print "</div>\n"; # class="page_body"
7999 git_footer_html();
8001 } elsif ($format eq 'plain') {
8002 local $/ = undef;
8003 print <$fd>;
8004 close $fd
8005 or print "Reading git-diff-tree failed\n";
8006 } elsif ($format eq 'patch') {
8007 local $/ = undef;
8008 print <$fd>;
8009 close $fd
8010 or print "Reading git-format-patch failed\n";
8014 sub git_commitdiff_plain {
8015 git_commitdiff(-format => 'plain');
8018 # format-patch-style patches
8019 sub git_patch {
8020 git_commitdiff(-format => 'patch', -single => 1);
8023 sub git_patches {
8024 git_commitdiff(-format => 'patch');
8027 sub git_history {
8028 git_log_generic('history', \&git_history_body,
8029 $hash_base, $hash_parent_base,
8030 $file_name, $hash);
8033 sub git_search {
8034 $searchtype ||= 'commit';
8036 # check if appropriate features are enabled
8037 gitweb_check_feature('search')
8038 or die_error(403, "Search is disabled");
8039 if ($searchtype eq 'pickaxe') {
8040 # pickaxe may take all resources of your box and run for several minutes
8041 # with every query - so decide by yourself how public you make this feature
8042 gitweb_check_feature('pickaxe')
8043 or die_error(403, "Pickaxe search is disabled");
8045 if ($searchtype eq 'grep') {
8046 # grep search might be potentially CPU-intensive, too
8047 gitweb_check_feature('grep')
8048 or die_error(403, "Grep search is disabled");
8051 if (!defined $searchtext) {
8052 die_error(400, "Text field is empty");
8054 if (!defined $hash) {
8055 $hash = git_get_head_hash($project);
8057 my %co = parse_commit($hash);
8058 if (!%co) {
8059 die_error(404, "Unknown commit object");
8061 if (!defined $page) {
8062 $page = 0;
8065 if ($searchtype eq 'commit' ||
8066 $searchtype eq 'author' ||
8067 $searchtype eq 'committer') {
8068 git_search_message(%co);
8069 } elsif ($searchtype eq 'pickaxe') {
8070 git_search_changes(%co);
8071 } elsif ($searchtype eq 'grep') {
8072 git_search_files(%co);
8073 } else {
8074 die_error(400, "Unknown search type");
8078 sub git_search_help {
8079 git_header_html();
8080 git_print_page_nav('','', $hash,$hash,$hash);
8081 print <<EOT;
8082 <p><strong>Pattern</strong> is by default a normal string that is matched precisely (but without
8083 regard to case, except in the case of pickaxe). However, when you check the <em>re</em> checkbox,
8084 the pattern entered is recognized as the POSIX extended
8085 <a href="http://en.wikipedia.org/wiki/Regular_expression">regular expression</a> (also case
8086 insensitive).</p>
8087 <dl>
8088 <dt><b>commit</b></dt>
8089 <dd>The commit messages and authorship information will be scanned for the given pattern.</dd>
8091 my $have_grep = gitweb_check_feature('grep');
8092 if ($have_grep) {
8093 print <<EOT;
8094 <dt><b>grep</b></dt>
8095 <dd>All files in the currently selected tree (HEAD unless you are explicitly browsing
8096 a different one) are searched for the given pattern. On large trees, this search can take
8097 a while and put some strain on the server, so please use it with some consideration. Note that
8098 due to git-grep peculiarity, currently if regexp mode is turned off, the matches are
8099 case-sensitive.</dd>
8102 print <<EOT;
8103 <dt><b>author</b></dt>
8104 <dd>Name and e-mail of the change author and date of birth of the patch will be scanned for the given pattern.</dd>
8105 <dt><b>committer</b></dt>
8106 <dd>Name and e-mail of the committer and date of commit will be scanned for the given pattern.</dd>
8108 my $have_pickaxe = gitweb_check_feature('pickaxe');
8109 if ($have_pickaxe) {
8110 print <<EOT;
8111 <dt><b>pickaxe</b></dt>
8112 <dd>All commits that caused the string to appear or disappear from any file (changes that
8113 added, removed or "modified" the string) will be listed. This search can take a while and
8114 takes a lot of strain on the server, so please use it wisely. Note that since you may be
8115 interested even in changes just changing the case as well, this search is case sensitive.</dd>
8118 print "</dl>\n";
8119 git_footer_html();
8122 sub git_shortlog {
8123 git_log_generic('shortlog', \&git_shortlog_body,
8124 $hash, $hash_parent);
8127 ## ......................................................................
8128 ## feeds (RSS, Atom; OPML)
8130 sub git_feed {
8131 my $format = shift || 'atom';
8132 my $have_blame = gitweb_check_feature('blame');
8134 # Atom: http://www.atomenabled.org/developers/syndication/
8135 # RSS: http://www.notestips.com/80256B3A007F2692/1/NAMO5P9UPQ
8136 if ($format ne 'rss' && $format ne 'atom') {
8137 die_error(400, "Unknown web feed format");
8140 # log/feed of current (HEAD) branch, log of given branch, history of file/directory
8141 my $head = $hash || 'HEAD';
8142 my @commitlist = parse_commits($head, 150, 0, $file_name);
8144 my %latest_commit;
8145 my %latest_date;
8146 my $content_type = "application/$format+xml";
8147 if (defined $cgi->http('HTTP_ACCEPT') &&
8148 $cgi->Accept('text/xml') > $cgi->Accept($content_type)) {
8149 # browser (feed reader) prefers text/xml
8150 $content_type = 'text/xml';
8152 if (defined($commitlist[0])) {
8153 %latest_commit = %{$commitlist[0]};
8154 my $latest_epoch = $latest_commit{'committer_epoch'};
8155 exit_if_unmodified_since($latest_epoch);
8156 %latest_date = parse_date($latest_epoch, $latest_commit{'committer_tz'});
8158 print $cgi->header(
8159 -type => $content_type,
8160 -charset => 'utf-8',
8161 %latest_date ? (-last_modified => $latest_date{'rfc2822'}) : (),
8162 -status => '200 OK');
8164 # Optimization: skip generating the body if client asks only
8165 # for Last-Modified date.
8166 return if ($cgi->request_method() eq 'HEAD');
8168 # header variables
8169 my $title = "$site_name - $project/$action";
8170 my $feed_type = 'log';
8171 if (defined $hash) {
8172 $title .= " - '$hash'";
8173 $feed_type = 'branch log';
8174 if (defined $file_name) {
8175 $title .= " :: $file_name";
8176 $feed_type = 'history';
8178 } elsif (defined $file_name) {
8179 $title .= " - $file_name";
8180 $feed_type = 'history';
8182 $title .= " $feed_type";
8183 $title = esc_html($title);
8184 my $descr = git_get_project_description($project);
8185 if (defined $descr) {
8186 $descr = esc_html($descr);
8187 } else {
8188 $descr = "$project " .
8189 ($format eq 'rss' ? 'RSS' : 'Atom') .
8190 " feed";
8192 my $owner = git_get_project_owner($project);
8193 $owner = esc_html($owner);
8195 #header
8196 my $alt_url;
8197 if (defined $file_name) {
8198 $alt_url = href(-full=>1, action=>"history", hash=>$hash, file_name=>$file_name);
8199 } elsif (defined $hash) {
8200 $alt_url = href(-full=>1, action=>"log", hash=>$hash);
8201 } else {
8202 $alt_url = href(-full=>1, action=>"summary");
8204 print qq!<?xml version="1.0" encoding="utf-8"?>\n!;
8205 if ($format eq 'rss') {
8206 print <<XML;
8207 <rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/">
8208 <channel>
8210 print "<title>$title</title>\n" .
8211 "<link>$alt_url</link>\n" .
8212 "<description>$descr</description>\n" .
8213 "<language>en</language>\n" .
8214 # project owner is responsible for 'editorial' content
8215 "<managingEditor>$owner</managingEditor>\n";
8216 if (defined $logo || defined $favicon) {
8217 # prefer the logo to the favicon, since RSS
8218 # doesn't allow both
8219 my $img = esc_url($logo || $favicon);
8220 print "<image>\n" .
8221 "<url>$img</url>\n" .
8222 "<title>$title</title>\n" .
8223 "<link>$alt_url</link>\n" .
8224 "</image>\n";
8226 if (%latest_date) {
8227 print "<pubDate>$latest_date{'rfc2822'}</pubDate>\n";
8228 print "<lastBuildDate>$latest_date{'rfc2822'}</lastBuildDate>\n";
8230 print "<generator>gitweb v.$version/$git_version</generator>\n";
8231 } elsif ($format eq 'atom') {
8232 print <<XML;
8233 <feed xmlns="http://www.w3.org/2005/Atom">
8235 print "<title>$title</title>\n" .
8236 "<subtitle>$descr</subtitle>\n" .
8237 '<link rel="alternate" type="text/html" href="' .
8238 $alt_url . '" />' . "\n" .
8239 '<link rel="self" type="' . $content_type . '" href="' .
8240 $cgi->self_url() . '" />' . "\n" .
8241 "<id>" . href(-full=>1) . "</id>\n" .
8242 # use project owner for feed author
8243 "<author><name>$owner</name></author>\n";
8244 if (defined $favicon) {
8245 print "<icon>" . esc_url($favicon) . "</icon>\n";
8247 if (defined $logo) {
8248 # not twice as wide as tall: 72 x 27 pixels
8249 print "<logo>" . esc_url($logo) . "</logo>\n";
8251 if (! %latest_date) {
8252 # dummy date to keep the feed valid until commits trickle in:
8253 print "<updated>1970-01-01T00:00:00Z</updated>\n";
8254 } else {
8255 print "<updated>$latest_date{'iso-8601'}</updated>\n";
8257 print "<generator version='$version/$git_version'>gitweb</generator>\n";
8260 # contents
8261 for (my $i = 0; $i <= $#commitlist; $i++) {
8262 my %co = %{$commitlist[$i]};
8263 my $commit = $co{'id'};
8264 # we read 150, we always show 30 and the ones more recent than 48 hours
8265 if (($i >= 20) && ((time - $co{'author_epoch'}) > 48*60*60)) {
8266 last;
8268 my %cd = parse_date($co{'author_epoch'}, $co{'author_tz'});
8270 # get list of changed files
8271 open my $fd, "-|", git_cmd(), "diff-tree", '-r', @diff_opts,
8272 $co{'parent'} || "--root",
8273 $co{'id'}, "--", (defined $file_name ? $file_name : ())
8274 or next;
8275 my @difftree = map { chomp; $_ } <$fd>;
8276 close $fd
8277 or next;
8279 # print element (entry, item)
8280 my $co_url = href(-full=>1, action=>"commitdiff", hash=>$commit);
8281 if ($format eq 'rss') {
8282 print "<item>\n" .
8283 "<title>" . esc_html($co{'title'}) . "</title>\n" .
8284 "<author>" . esc_html($co{'author'}) . "</author>\n" .
8285 "<pubDate>$cd{'rfc2822'}</pubDate>\n" .
8286 "<guid isPermaLink=\"true\">$co_url</guid>\n" .
8287 "<link>$co_url</link>\n" .
8288 "<description>" . esc_html($co{'title'}) . "</description>\n" .
8289 "<content:encoded>" .
8290 "<![CDATA[\n";
8291 } elsif ($format eq 'atom') {
8292 print "<entry>\n" .
8293 "<title type=\"html\">" . esc_html($co{'title'}) . "</title>\n" .
8294 "<updated>$cd{'iso-8601'}</updated>\n" .
8295 "<author>\n" .
8296 " <name>" . esc_html($co{'author_name'}) . "</name>\n";
8297 if ($co{'author_email'}) {
8298 print " <email>" . esc_html($co{'author_email'}) . "</email>\n";
8300 print "</author>\n" .
8301 # use committer for contributor
8302 "<contributor>\n" .
8303 " <name>" . esc_html($co{'committer_name'}) . "</name>\n";
8304 if ($co{'committer_email'}) {
8305 print " <email>" . esc_html($co{'committer_email'}) . "</email>\n";
8307 print "</contributor>\n" .
8308 "<published>$cd{'iso-8601'}</published>\n" .
8309 "<link rel=\"alternate\" type=\"text/html\" href=\"$co_url\" />\n" .
8310 "<id>$co_url</id>\n" .
8311 "<content type=\"xhtml\" xml:base=\"" . esc_url($my_url) . "\">\n" .
8312 "<div xmlns=\"http://www.w3.org/1999/xhtml\">\n";
8314 my $comment = $co{'comment'};
8315 print "<pre>\n";
8316 foreach my $line (@$comment) {
8317 $line = esc_html($line);
8318 print "$line\n";
8320 print "</pre><ul>\n";
8321 foreach my $difftree_line (@difftree) {
8322 my %difftree = parse_difftree_raw_line($difftree_line);
8323 next if !$difftree{'from_id'};
8325 my $file = $difftree{'file'} || $difftree{'to_file'};
8327 print "<li>" .
8328 "[" .
8329 $cgi->a({-href => href(-full=>1, action=>"blobdiff",
8330 hash=>$difftree{'to_id'}, hash_parent=>$difftree{'from_id'},
8331 hash_base=>$co{'id'}, hash_parent_base=>$co{'parent'},
8332 file_name=>$file, file_parent=>$difftree{'from_file'}),
8333 -title => "diff"}, 'D');
8334 if ($have_blame) {
8335 print $cgi->a({-href => href(-full=>1, action=>"blame",
8336 file_name=>$file, hash_base=>$commit),
8337 -title => "blame"}, 'B');
8339 # if this is not a feed of a file history
8340 if (!defined $file_name || $file_name ne $file) {
8341 print $cgi->a({-href => href(-full=>1, action=>"history",
8342 file_name=>$file, hash=>$commit),
8343 -title => "history"}, 'H');
8345 $file = esc_path($file);
8346 print "] ".
8347 "$file</li>\n";
8349 if ($format eq 'rss') {
8350 print "</ul>]]>\n" .
8351 "</content:encoded>\n" .
8352 "</item>\n";
8353 } elsif ($format eq 'atom') {
8354 print "</ul>\n</div>\n" .
8355 "</content>\n" .
8356 "</entry>\n";
8360 # end of feed
8361 if ($format eq 'rss') {
8362 print "</channel>\n</rss>\n";
8363 } elsif ($format eq 'atom') {
8364 print "</feed>\n";
8368 sub git_rss {
8369 git_feed('rss');
8372 sub git_atom {
8373 git_feed('atom');
8376 sub git_opml {
8377 my @list = git_get_projects_list($project_filter, $strict_export);
8378 if (!@list) {
8379 die_error(404, "No projects found");
8382 print $cgi->header(
8383 -type => 'text/xml',
8384 -charset => 'utf-8',
8385 -content_disposition => 'inline; filename="opml.xml"');
8387 my $title = esc_html($site_name);
8388 my $filter = " within subdirectory ";
8389 if (defined $project_filter) {
8390 $filter .= esc_html($project_filter);
8391 } else {
8392 $filter = "";
8394 print <<XML;
8395 <?xml version="1.0" encoding="utf-8"?>
8396 <opml version="1.0">
8397 <head>
8398 <title>$title OPML Export$filter</title>
8399 </head>
8400 <body>
8401 <outline text="git RSS feeds">
8404 foreach my $pr (@list) {
8405 my %proj = %$pr;
8406 my $head = git_get_head_hash($proj{'path'});
8407 if (!defined $head) {
8408 next;
8410 $git_dir = "$projectroot/$proj{'path'}";
8411 my %co = parse_commit($head);
8412 if (!%co) {
8413 next;
8416 my $path = esc_html(chop_str($proj{'path'}, 25, 5));
8417 my $rss = href('project' => $proj{'path'}, 'action' => 'rss', -full => 1);
8418 my $html = href('project' => $proj{'path'}, 'action' => 'summary', -full => 1);
8419 print "<outline type=\"rss\" text=\"$path\" title=\"$path\" xmlUrl=\"$rss\" htmlUrl=\"$html\"/>\n";
8421 print <<XML;
8422 </outline>
8423 </body>
8424 </opml>