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
12 use CGI
qw(:standard :escapeHTML -nosticky);
13 use CGI
::Util
qw(unescape);
14 use CGI
::Carp
qw(fatalsToBrowser);
18 use File
::Basename
qw(basename);
19 binmode STDOUT
, ':utf8';
22 if (eval { require Time
::HiRes
; 1; }) {
23 $t0 = [Time
::HiRes
::gettimeofday
()];
25 our $number_of_git_cmds = 0;
28 CGI
->compile() if $ENV{'MOD_PERL'};
32 our $version = "++GIT_VERSION++";
33 our $my_url = $cgi->url();
34 our $my_uri = $cgi->url(-absolute
=> 1);
36 # Base URL for relative URLs in gitweb ($logo, $favicon, ...),
37 # needed and used only for URLs with nonempty PATH_INFO
38 our $base_url = $my_url;
40 # When the script is used as DirectoryIndex, the URL does not contain the name
41 # of the script file itself, and $cgi->url() fails to strip PATH_INFO, so we
42 # have to do it ourselves. We make $path_info global because it's also used
45 # Another issue with the script being the DirectoryIndex is that the resulting
46 # $my_url data is not the full script URL: this is good, because we want
47 # generated links to keep implying the script name if it wasn't explicitly
48 # indicated in the URL we're handling, but it means that $my_url cannot be used
50 # Therefore, if we needed to strip PATH_INFO, then we know that we have
51 # to build the base URL ourselves:
52 our $path_info = $ENV{"PATH_INFO"};
54 if ($my_url =~ s
,\Q
$path_info\E
$,, &&
55 $my_uri =~ s
,\Q
$path_info\E
$,, &&
56 defined $ENV{'SCRIPT_NAME'}) {
57 $base_url = $cgi->url(-base
=> 1) . $ENV{'SCRIPT_NAME'};
61 # core git executable to use
62 # this can just be "git" if your webserver has a sensible PATH
63 our $GIT = "++GIT_BINDIR++/git";
65 # absolute fs-path which will be prepended to the project path
66 #our $projectroot = "/pub/scm";
67 our $projectroot = "++GITWEB_PROJECTROOT++";
69 # fs traversing limit for getting project list
70 # the number is relative to the projectroot
71 our $project_maxdepth = "++GITWEB_PROJECT_MAXDEPTH++";
73 # target of the home link on top of all pages
74 our $home_link = $my_uri || "/";
76 # string of the home link on top of all pages
77 our $home_link_str = "++GITWEB_HOME_LINK_STR++";
79 # name of your site or organization to appear in page titles
80 # replace this with something more descriptive for clearer bookmarks
81 our $site_name = "++GITWEB_SITENAME++"
82 || ($ENV{'SERVER_NAME'} || "Untitled") . " Git";
84 # filename of html text to include at top of each page
85 our $site_header = "++GITWEB_SITE_HEADER++";
86 # html text to include at home page
87 our $home_text = "++GITWEB_HOMETEXT++";
88 # filename of html text to include at bottom of each page
89 our $site_footer = "++GITWEB_SITE_FOOTER++";
92 our @stylesheets = ("++GITWEB_CSS++");
93 # URI of a single stylesheet, which can be overridden in GITWEB_CONFIG.
94 our $stylesheet = undef;
95 # URI of GIT logo (72x27 size)
96 our $logo = "++GITWEB_LOGO++";
97 # URI of GIT favicon, assumed to be image/png type
98 our $favicon = "++GITWEB_FAVICON++";
99 # URI of gitweb.js (JavaScript code for gitweb)
100 our $javascript = "++GITWEB_JS++";
102 # URI and label (title) of GIT logo link
103 #our $logo_url = "http://www.kernel.org/pub/software/scm/git/docs/";
104 #our $logo_label = "git documentation";
105 our $logo_url = "http://git-scm.com/";
106 our $logo_label = "git homepage";
108 # source of projects list
109 our $projects_list = "++GITWEB_LIST++";
111 # the width (in characters) of the projects list "Description" column
112 our $projects_list_description_width = 25;
114 # default order of projects list
115 # valid values are none, project, descr, owner, and age
116 our $default_projects_order = "project";
118 # show repository only if this file exists
119 # (only effective if this variable evaluates to true)
120 our $export_ok = "++GITWEB_EXPORT_OK++";
122 # show repository only if this subroutine returns true
123 # when given the path to the project, for example:
124 # sub { return -e "$_[0]/git-daemon-export-ok"; }
125 our $export_auth_hook = undef;
127 # only allow viewing of repositories also shown on the overview page
128 our $strict_export = "++GITWEB_STRICT_EXPORT++";
130 # list of git base URLs used for URL to where fetch project from,
131 # i.e. full URL is "$git_base_url/$project"
132 our @git_base_url_list = grep { $_ ne '' } ("++GITWEB_BASE_URL++");
134 # default blob_plain mimetype and default charset for text/plain blob
135 our $default_blob_plain_mimetype = 'text/plain';
136 our $default_text_plain_charset = undef;
138 # file to use for guessing MIME types before trying /etc/mime.types
139 # (relative to the current git repository)
140 our $mimetypes_file = undef;
142 # assume this charset if line contains non-UTF-8 characters;
143 # it should be valid encoding (see Encoding::Supported(3pm) for list),
144 # for which encoding all byte sequences are valid, for example
145 # 'iso-8859-1' aka 'latin1' (it is decoded without checking, so it
146 # could be even 'utf-8' for the old behavior)
147 our $fallback_encoding = 'latin1';
149 # rename detection options for git-diff and git-diff-tree
150 # - default is '-M', with the cost proportional to
151 # (number of removed files) * (number of new files).
152 # - more costly is '-C' (which implies '-M'), with the cost proportional to
153 # (number of changed files + number of removed files) * (number of new files)
154 # - even more costly is '-C', '--find-copies-harder' with cost
155 # (number of files in the original tree) * (number of new files)
156 # - one might want to include '-B' option, e.g. '-B', '-M'
157 our @diff_opts = ('-M'); # taken from git_commit
159 # Disables features that would allow repository owners to inject script into
161 our $prevent_xss = 0;
163 # information about snapshot formats that gitweb is capable of serving
164 our %known_snapshot_formats = (
166 # 'display' => display name,
167 # 'type' => mime type,
168 # 'suffix' => filename suffix,
169 # 'format' => --format for git-archive,
170 # 'compressor' => [compressor command and arguments]
171 # (array reference, optional)
172 # 'disabled' => boolean (optional)}
175 'display' => 'tar.gz',
176 'type' => 'application/x-gzip',
177 'suffix' => '.tar.gz',
179 'compressor' => ['gzip']},
182 'display' => 'tar.bz2',
183 'type' => 'application/x-bzip2',
184 'suffix' => '.tar.bz2',
186 'compressor' => ['bzip2']},
189 'display' => 'tar.xz',
190 'type' => 'application/x-xz',
191 'suffix' => '.tar.xz',
193 'compressor' => ['xz'],
198 'type' => 'application/x-zip',
203 # Aliases so we understand old gitweb.snapshot values in repository
205 our %known_snapshot_format_aliases = (
210 # backward compatibility: legacy gitweb config support
211 'x-gzip' => undef, 'gz' => undef,
212 'x-bzip2' => undef, 'bz2' => undef,
213 'x-zip' => undef, '' => undef,
216 # Pixel sizes for icons and avatars. If the default font sizes or lineheights
217 # are changed, it may be appropriate to change these values too via
224 # Used to set the maximum load that we will still respond to gitweb queries.
225 # If server load exceed this value then return "503 server busy" error.
226 # If gitweb cannot determined server load, it is taken to be 0.
227 # Leave it undefined (or set to 'undef') to turn off load checking.
230 # You define site-wide feature defaults here; override them with
231 # $GITWEB_CONFIG as necessary.
234 # 'sub' => feature-sub (subroutine),
235 # 'override' => allow-override (boolean),
236 # 'default' => [ default options...] (array reference)}
238 # if feature is overridable (it means that allow-override has true value),
239 # then feature-sub will be called with default options as parameters;
240 # return value of feature-sub indicates if to enable specified feature
242 # if there is no 'sub' key (no feature-sub), then feature cannot be
245 # use gitweb_get_feature(<feature>) to retrieve the <feature> value
246 # (an array) or gitweb_check_feature(<feature>) to check if <feature>
249 # Enable the 'blame' blob view, showing the last commit that modified
250 # each line in the file. This can be very CPU-intensive.
252 # To enable system wide have in $GITWEB_CONFIG
253 # $feature{'blame'}{'default'} = [1];
254 # To have project specific config enable override in $GITWEB_CONFIG
255 # $feature{'blame'}{'override'} = 1;
256 # and in project config gitweb.blame = 0|1;
258 'sub' => sub { feature_bool
('blame', @_) },
262 # Enable the 'snapshot' link, providing a compressed archive of any
263 # tree. This can potentially generate high traffic if you have large
266 # Value is a list of formats defined in %known_snapshot_formats that
268 # To disable system wide have in $GITWEB_CONFIG
269 # $feature{'snapshot'}{'default'} = [];
270 # To have project specific config enable override in $GITWEB_CONFIG
271 # $feature{'snapshot'}{'override'} = 1;
272 # and in project config, a comma-separated list of formats or "none"
273 # to disable. Example: gitweb.snapshot = tbz2,zip;
275 'sub' => \
&feature_snapshot
,
277 'default' => ['tgz']},
279 # Enable text search, which will list the commits which match author,
280 # committer or commit text to a given string. Enabled by default.
281 # Project specific override is not supported.
286 # Enable grep search, which will list the files in currently selected
287 # tree containing the given string. Enabled by default. This can be
288 # potentially CPU-intensive, of course.
290 # To enable system wide have in $GITWEB_CONFIG
291 # $feature{'grep'}{'default'} = [1];
292 # To have project specific config enable override in $GITWEB_CONFIG
293 # $feature{'grep'}{'override'} = 1;
294 # and in project config gitweb.grep = 0|1;
296 'sub' => sub { feature_bool
('grep', @_) },
300 # Enable the pickaxe search, which will list the commits that modified
301 # a given string in a file. This can be practical and quite faster
302 # alternative to 'blame', but still potentially CPU-intensive.
304 # To enable system wide have in $GITWEB_CONFIG
305 # $feature{'pickaxe'}{'default'} = [1];
306 # To have project specific config enable override in $GITWEB_CONFIG
307 # $feature{'pickaxe'}{'override'} = 1;
308 # and in project config gitweb.pickaxe = 0|1;
310 'sub' => sub { feature_bool
('pickaxe', @_) },
314 # Enable showing size of blobs in a 'tree' view, in a separate
315 # column, similar to what 'ls -l' does. This cost a bit of IO.
317 # To disable system wide have in $GITWEB_CONFIG
318 # $feature{'show-sizes'}{'default'} = [0];
319 # To have project specific config enable override in $GITWEB_CONFIG
320 # $feature{'show-sizes'}{'override'} = 1;
321 # and in project config gitweb.showsizes = 0|1;
323 'sub' => sub { feature_bool
('showsizes', @_) },
327 # Make gitweb use an alternative format of the URLs which can be
328 # more readable and natural-looking: project name is embedded
329 # directly in the path and the query string contains other
330 # auxiliary information. All gitweb installations recognize
331 # URL in either format; this configures in which formats gitweb
334 # To enable system wide have in $GITWEB_CONFIG
335 # $feature{'pathinfo'}{'default'} = [1];
336 # Project specific override is not supported.
338 # Note that you will need to change the default location of CSS,
339 # favicon, logo and possibly other files to an absolute URL. Also,
340 # if gitweb.cgi serves as your indexfile, you will need to force
341 # $my_uri to contain the script name in your $GITWEB_CONFIG.
346 # Make gitweb consider projects in project root subdirectories
347 # to be forks of existing projects. Given project $projname.git,
348 # projects matching $projname/*.git will not be shown in the main
349 # projects list, instead a '+' mark will be added to $projname
350 # there and a 'forks' view will be enabled for the project, listing
351 # all the forks. If project list is taken from a file, forks have
352 # to be listed after the main project.
354 # To enable system wide have in $GITWEB_CONFIG
355 # $feature{'forks'}{'default'} = [1];
356 # Project specific override is not supported.
361 # Insert custom links to the action bar of all project pages.
362 # This enables you mainly to link to third-party scripts integrating
363 # into gitweb; e.g. git-browser for graphical history representation
364 # or custom web-based repository administration interface.
366 # The 'default' value consists of a list of triplets in the form
367 # (label, link, position) where position is the label after which
368 # to insert the link and link is a format string where %n expands
369 # to the project name, %f to the project path within the filesystem,
370 # %h to the current hash (h gitweb parameter) and %b to the current
371 # hash base (hb gitweb parameter); %% expands to %.
373 # To enable system wide have in $GITWEB_CONFIG e.g.
374 # $feature{'actions'}{'default'} = [('graphiclog',
375 # '/git-browser/by-commit.html?r=%n', 'summary')];
376 # Project specific override is not supported.
381 # Allow gitweb scan project content tags described in ctags/
382 # of project repository, and display the popular Web 2.0-ish
383 # "tag cloud" near the project list. Note that this is something
384 # COMPLETELY different from the normal Git tags.
386 # gitweb by itself can show existing tags, but it does not handle
387 # tagging itself; you need an external application for that.
388 # For an example script, check Girocco's cgi/tagproj.cgi.
389 # You may want to install the HTML::TagCloud Perl module to get
390 # a pretty tag cloud instead of just a list of tags.
392 # To enable system wide have in $GITWEB_CONFIG
393 # $feature{'ctags'}{'default'} = ['path_to_tag_script'];
394 # Project specific override is not supported.
399 # The maximum number of patches in a patchset generated in patch
400 # view. Set this to 0 or undef to disable patch view, or to a
401 # negative number to remove any limit.
403 # To disable system wide have in $GITWEB_CONFIG
404 # $feature{'patches'}{'default'} = [0];
405 # To have project specific config enable override in $GITWEB_CONFIG
406 # $feature{'patches'}{'override'} = 1;
407 # and in project config gitweb.patches = 0|n;
408 # where n is the maximum number of patches allowed in a patchset.
410 'sub' => \
&feature_patches
,
414 # Avatar support. When this feature is enabled, views such as
415 # shortlog or commit will display an avatar associated with
416 # the email of the committer(s) and/or author(s).
418 # Currently available providers are gravatar and picon.
419 # If an unknown provider is specified, the feature is disabled.
421 # Gravatar depends on Digest::MD5.
422 # Picon currently relies on the indiana.edu database.
424 # To enable system wide have in $GITWEB_CONFIG
425 # $feature{'avatar'}{'default'} = ['<provider>'];
426 # where <provider> is either gravatar or picon.
427 # To have project specific config enable override in $GITWEB_CONFIG
428 # $feature{'avatar'}{'override'} = 1;
429 # and in project config gitweb.avatar = <provider>;
431 'sub' => \
&feature_avatar
,
435 # Enable displaying how much time and how many git commands
436 # it took to generate and display page. Disabled by default.
437 # Project specific override is not supported.
442 # Enable turning some links into links to actions which require
443 # JavaScript to run (like 'blame_incremental'). Not enabled by
444 # default. Project specific override is currently not supported.
445 'javascript-actions' => {
450 sub gitweb_get_feature
{
452 return unless exists $feature{$name};
453 my ($sub, $override, @defaults) = (
454 $feature{$name}{'sub'},
455 $feature{$name}{'override'},
456 @
{$feature{$name}{'default'}});
457 # project specific override is possible only if we have project
458 our $git_dir; # global variable, declared later
459 if (!$override || !defined $git_dir) {
463 warn "feature $name is not overridable";
466 return $sub->(@defaults);
469 # A wrapper to check if a given feature is enabled.
470 # With this, you can say
472 # my $bool_feat = gitweb_check_feature('bool_feat');
473 # gitweb_check_feature('bool_feat') or somecode;
477 # my ($bool_feat) = gitweb_get_feature('bool_feat');
478 # (gitweb_get_feature('bool_feat'))[0] or somecode;
480 sub gitweb_check_feature
{
481 return (gitweb_get_feature
(@_))[0];
487 my ($val) = git_get_project_config
($key, '--bool');
491 } elsif ($val eq 'true') {
493 } elsif ($val eq 'false') {
498 sub feature_snapshot
{
501 my ($val) = git_get_project_config
('snapshot');
504 @fmts = ($val eq 'none' ?
() : split /\s*[,\s]\s*/, $val);
510 sub feature_patches
{
511 my @val = (git_get_project_config
('patches', '--int'));
521 my @val = (git_get_project_config
('avatar'));
523 return @val ?
@val : @_;
526 # checking HEAD file with -e is fragile if the repository was
527 # initialized long time ago (i.e. symlink HEAD) and was pack-ref'ed
529 sub check_head_link
{
531 my $headfile = "$dir/HEAD";
532 return ((-e
$headfile) ||
533 (-l
$headfile && readlink($headfile) =~ /^refs\/heads\
//));
536 sub check_export_ok
{
538 return (check_head_link
($dir) &&
539 (!$export_ok || -e
"$dir/$export_ok") &&
540 (!$export_auth_hook || $export_auth_hook->($dir)));
543 # process alternate names for backward compatibility
544 # filter out unsupported (unknown) snapshot formats
545 sub filter_snapshot_fmts
{
549 exists $known_snapshot_format_aliases{$_} ?
550 $known_snapshot_format_aliases{$_} : $_} @fmts;
552 exists $known_snapshot_formats{$_} &&
553 !$known_snapshot_formats{$_}{'disabled'}} @fmts;
556 our $GITWEB_CONFIG = $ENV{'GITWEB_CONFIG'} || "++GITWEB_CONFIG++";
557 our $GITWEB_CONFIG_SYSTEM = $ENV{'GITWEB_CONFIG_SYSTEM'} || "++GITWEB_CONFIG_SYSTEM++";
558 # die if there are errors parsing config file
559 if (-e
$GITWEB_CONFIG) {
562 } elsif (-e
$GITWEB_CONFIG_SYSTEM) {
563 do $GITWEB_CONFIG_SYSTEM;
567 # Get loadavg of system, to compare against $maxload.
568 # Currently it requires '/proc/loadavg' present to get loadavg;
569 # if it is not present it returns 0, which means no load checking.
571 if( -e
'/proc/loadavg' ){
572 open my $fd, '<', '/proc/loadavg'
574 my @load = split(/\s+/, scalar <$fd>);
577 # The first three columns measure CPU and IO utilization of the last one,
578 # five, and 10 minute periods. The fourth column shows the number of
579 # currently running processes and the total number of processes in the m/n
580 # format. The last column displays the last process ID used.
581 return $load[0] || 0;
583 # additional checks for load average should go here for things that don't export
589 # version of the core git binary
590 our $git_version = qx("$GIT" --version
) =~ m/git version (.*)$/ ?
$1 : "unknown";
591 $number_of_git_cmds++;
593 $projects_list ||= $projectroot;
595 if (defined $maxload && get_loadavg
() > $maxload) {
596 die_error
(503, "The load average on the server is too high");
599 # ======================================================================
600 # input validation and dispatch
602 # input parameters can be collected from a variety of sources (presently, CGI
603 # and PATH_INFO), so we define an %input_params hash that collects them all
604 # together during validation: this allows subsequent uses (e.g. href()) to be
605 # agnostic of the parameter origin
607 our %input_params = ();
609 # input parameters are stored with the long parameter name as key. This will
610 # also be used in the href subroutine to convert parameters to their CGI
611 # equivalent, and since the href() usage is the most frequent one, we store
612 # the name -> CGI key mapping here, instead of the reverse.
614 # XXX: Warning: If you touch this, check the search form for updating,
617 our @cgi_param_mapping = (
625 hash_parent_base
=> "hpb",
630 snapshot_format
=> "sf",
631 extra_options
=> "opt",
632 search_use_regexp
=> "sr",
633 # this must be last entry (for manipulation from JavaScript)
636 our %cgi_param_mapping = @cgi_param_mapping;
638 # we will also need to know the possible actions, for validation
640 "blame" => \
&git_blame
,
641 "blame_incremental" => \
&git_blame_incremental
,
642 "blame_data" => \
&git_blame_data
,
643 "blobdiff" => \
&git_blobdiff
,
644 "blobdiff_plain" => \
&git_blobdiff_plain
,
645 "blob" => \
&git_blob
,
646 "blob_plain" => \
&git_blob_plain
,
647 "commitdiff" => \
&git_commitdiff
,
648 "commitdiff_plain" => \
&git_commitdiff_plain
,
649 "commit" => \
&git_commit
,
650 "forks" => \
&git_forks
,
651 "heads" => \
&git_heads
,
652 "history" => \
&git_history
,
654 "patch" => \
&git_patch
,
655 "patches" => \
&git_patches
,
657 "atom" => \
&git_atom
,
658 "search" => \
&git_search
,
659 "search_help" => \
&git_search_help
,
660 "shortlog" => \
&git_shortlog
,
661 "summary" => \
&git_summary
,
663 "tags" => \
&git_tags
,
664 "tree" => \
&git_tree
,
665 "snapshot" => \
&git_snapshot
,
666 "object" => \
&git_object
,
667 # those below don't need $project
668 "opml" => \
&git_opml
,
669 "project_list" => \
&git_project_list
,
670 "project_index" => \
&git_project_index
,
673 # finally, we have the hash of allowed extra_options for the commands that
675 our %allowed_options = (
676 "--no-merges" => [ qw(rss atom log shortlog history) ],
679 # fill %input_params with the CGI parameters. All values except for 'opt'
680 # should be single values, but opt can be an array. We should probably
681 # build an array of parameters that can be multi-valued, but since for the time
682 # being it's only this one, we just single it out
683 while (my ($name, $symbol) = each %cgi_param_mapping) {
684 if ($symbol eq 'opt') {
685 $input_params{$name} = [ $cgi->param($symbol) ];
687 $input_params{$name} = $cgi->param($symbol);
691 # now read PATH_INFO and update the parameter list for missing parameters
692 sub evaluate_path_info
{
693 return if defined $input_params{'project'};
694 return if !$path_info;
695 $path_info =~ s
,^/+,,;
696 return if !$path_info;
698 # find which part of PATH_INFO is project
699 my $project = $path_info;
701 while ($project && !check_head_link
("$projectroot/$project")) {
702 $project =~ s
,/*[^/]*$,,;
704 return unless $project;
705 $input_params{'project'} = $project;
707 # do not change any parameters if an action is given using the query string
708 return if $input_params{'action'};
709 $path_info =~ s
,^\Q
$project\E
/*,,;
711 # next, check if we have an action
712 my $action = $path_info;
714 if (exists $actions{$action}) {
715 $path_info =~ s
,^$action/*,,;
716 $input_params{'action'} = $action;
719 # list of actions that want hash_base instead of hash, but can have no
720 # pathname (f) parameter
727 # [$hash_parent_base[:$file_parent]..]$hash_parent[:$file_name]
728 my ($parentrefname, $parentpathname, $refname, $pathname) =
729 ($path_info =~ /^(?:(.+?)(?::(.+))?\.\.)?(.+?)(?::(.+))?$/);
731 # first, analyze the 'current' part
732 if (defined $pathname) {
733 # we got "branch:filename" or "branch:dir/"
734 # we could use git_get_type(branch:pathname), but:
735 # - it needs $git_dir
736 # - it does a git() call
737 # - the convention of terminating directories with a slash
738 # makes it superfluous
739 # - embedding the action in the PATH_INFO would make it even
741 $pathname =~ s
,^/+,,;
742 if (!$pathname || substr($pathname, -1) eq "/") {
743 $input_params{'action'} ||= "tree";
746 # the default action depends on whether we had parent info
748 if ($parentrefname) {
749 $input_params{'action'} ||= "blobdiff_plain";
751 $input_params{'action'} ||= "blob_plain";
754 $input_params{'hash_base'} ||= $refname;
755 $input_params{'file_name'} ||= $pathname;
756 } elsif (defined $refname) {
757 # we got "branch". In this case we have to choose if we have to
758 # set hash or hash_base.
760 # Most of the actions without a pathname only want hash to be
761 # set, except for the ones specified in @wants_base that want
762 # hash_base instead. It should also be noted that hand-crafted
763 # links having 'history' as an action and no pathname or hash
764 # set will fail, but that happens regardless of PATH_INFO.
765 $input_params{'action'} ||= "shortlog";
766 if (grep { $_ eq $input_params{'action'} } @wants_base) {
767 $input_params{'hash_base'} ||= $refname;
769 $input_params{'hash'} ||= $refname;
773 # next, handle the 'parent' part, if present
774 if (defined $parentrefname) {
775 # a missing pathspec defaults to the 'current' filename, allowing e.g.
776 # someproject/blobdiff/oldrev..newrev:/filename
777 if ($parentpathname) {
778 $parentpathname =~ s
,^/+,,;
779 $parentpathname =~ s
,/$,,;
780 $input_params{'file_parent'} ||= $parentpathname;
782 $input_params{'file_parent'} ||= $input_params{'file_name'};
784 # we assume that hash_parent_base is wanted if a path was specified,
785 # or if the action wants hash_base instead of hash
786 if (defined $input_params{'file_parent'} ||
787 grep { $_ eq $input_params{'action'} } @wants_base) {
788 $input_params{'hash_parent_base'} ||= $parentrefname;
790 $input_params{'hash_parent'} ||= $parentrefname;
794 # for the snapshot action, we allow URLs in the form
795 # $project/snapshot/$hash.ext
796 # where .ext determines the snapshot and gets removed from the
797 # passed $refname to provide the $hash.
799 # To be able to tell that $refname includes the format extension, we
800 # require the following two conditions to be satisfied:
801 # - the hash input parameter MUST have been set from the $refname part
802 # of the URL (i.e. they must be equal)
803 # - the snapshot format MUST NOT have been defined already (e.g. from
805 # It's also useless to try any matching unless $refname has a dot,
806 # so we check for that too
807 if (defined $input_params{'action'} &&
808 $input_params{'action'} eq 'snapshot' &&
809 defined $refname && index($refname, '.') != -1 &&
810 $refname eq $input_params{'hash'} &&
811 !defined $input_params{'snapshot_format'}) {
812 # We loop over the known snapshot formats, checking for
813 # extensions. Allowed extensions are both the defined suffix
814 # (which includes the initial dot already) and the snapshot
815 # format key itself, with a prepended dot
816 while (my ($fmt, $opt) = each %known_snapshot_formats) {
818 unless ($hash =~ s/(\Q$opt->{'suffix'}\E|\Q.$fmt\E)$//) {
822 # a valid suffix was found, so set the snapshot format
823 # and reset the hash parameter
824 $input_params{'snapshot_format'} = $fmt;
825 $input_params{'hash'} = $hash;
826 # we also set the format suffix to the one requested
827 # in the URL: this way a request for e.g. .tgz returns
828 # a .tgz instead of a .tar.gz
829 $known_snapshot_formats{$fmt}{'suffix'} = $sfx;
834 evaluate_path_info
();
836 our $action = $input_params{'action'};
837 if (defined $action) {
838 if (!validate_action
($action)) {
839 die_error
(400, "Invalid action parameter");
843 # parameters which are pathnames
844 our $project = $input_params{'project'};
845 if (defined $project) {
846 if (!validate_project
($project)) {
848 die_error
(404, "No such project");
852 our $file_name = $input_params{'file_name'};
853 if (defined $file_name) {
854 if (!validate_pathname
($file_name)) {
855 die_error
(400, "Invalid file parameter");
859 our $file_parent = $input_params{'file_parent'};
860 if (defined $file_parent) {
861 if (!validate_pathname
($file_parent)) {
862 die_error
(400, "Invalid file parent parameter");
866 # parameters which are refnames
867 our $hash = $input_params{'hash'};
869 if (!validate_refname
($hash)) {
870 die_error
(400, "Invalid hash parameter");
874 our $hash_parent = $input_params{'hash_parent'};
875 if (defined $hash_parent) {
876 if (!validate_refname
($hash_parent)) {
877 die_error
(400, "Invalid hash parent parameter");
881 our $hash_base = $input_params{'hash_base'};
882 if (defined $hash_base) {
883 if (!validate_refname
($hash_base)) {
884 die_error
(400, "Invalid hash base parameter");
888 our @extra_options = @
{$input_params{'extra_options'}};
889 # @extra_options is always defined, since it can only be (currently) set from
890 # CGI, and $cgi->param() returns the empty array in array context if the param
892 foreach my $opt (@extra_options) {
893 if (not exists $allowed_options{$opt}) {
894 die_error
(400, "Invalid option parameter");
896 if (not grep(/^$action$/, @
{$allowed_options{$opt}})) {
897 die_error
(400, "Invalid option parameter for this action");
901 our $hash_parent_base = $input_params{'hash_parent_base'};
902 if (defined $hash_parent_base) {
903 if (!validate_refname
($hash_parent_base)) {
904 die_error
(400, "Invalid hash parent base parameter");
909 our $page = $input_params{'page'};
911 if ($page =~ m/[^0-9]/) {
912 die_error
(400, "Invalid page parameter");
916 our $searchtype = $input_params{'searchtype'};
917 if (defined $searchtype) {
918 if ($searchtype =~ m/[^a-z]/) {
919 die_error
(400, "Invalid searchtype parameter");
923 our $search_use_regexp = $input_params{'search_use_regexp'};
925 our $searchtext = $input_params{'searchtext'};
927 if (defined $searchtext) {
928 if (length($searchtext) < 2) {
929 die_error
(403, "At least two characters are required for search parameter");
931 $search_regexp = $search_use_regexp ?
$searchtext : quotemeta $searchtext;
934 # path to the current git repository
936 $git_dir = "$projectroot/$project" if $project;
938 # list of supported snapshot formats
939 our @snapshot_fmts = gitweb_get_feature
('snapshot');
940 @snapshot_fmts = filter_snapshot_fmts
(@snapshot_fmts);
942 # check that the avatar feature is set to a known provider name,
943 # and for each provider check if the dependencies are satisfied.
944 # if the provider name is invalid or the dependencies are not met,
945 # reset $git_avatar to the empty string.
946 our ($git_avatar) = gitweb_get_feature
('avatar');
947 if ($git_avatar eq 'gravatar') {
948 $git_avatar = '' unless (eval { require Digest
::MD5
; 1; });
949 } elsif ($git_avatar eq 'picon') {
956 if (!defined $action) {
958 $action = git_get_type
($hash);
959 } elsif (defined $hash_base && defined $file_name) {
960 $action = git_get_type
("$hash_base:$file_name");
961 } elsif (defined $project) {
964 $action = 'project_list';
967 if (!defined($actions{$action})) {
968 die_error
(400, "Unknown action");
970 if ($action !~ m/^(?:opml|project_list|project_index)$/ &&
972 die_error
(400, "Project needed");
974 $actions{$action}->();
977 ## ======================================================================
982 # default is to use -absolute url() i.e. $my_uri
983 my $href = $params{-full
} ?
$my_url : $my_uri;
985 $params{'project'} = $project unless exists $params{'project'};
987 if ($params{-replay
}) {
988 while (my ($name, $symbol) = each %cgi_param_mapping) {
989 if (!exists $params{$name}) {
990 $params{$name} = $input_params{$name};
995 my $use_pathinfo = gitweb_check_feature
('pathinfo');
996 if ($use_pathinfo and defined $params{'project'}) {
997 # try to put as many parameters as possible in PATH_INFO:
1000 # - hash_parent or hash_parent_base:/file_parent
1001 # - hash or hash_base:/filename
1002 # - the snapshot_format as an appropriate suffix
1004 # When the script is the root DirectoryIndex for the domain,
1005 # $href here would be something like http://gitweb.example.com/
1006 # Thus, we strip any trailing / from $href, to spare us double
1007 # slashes in the final URL
1010 # Then add the project name, if present
1011 $href .= "/".esc_url
($params{'project'});
1012 delete $params{'project'};
1014 # since we destructively absorb parameters, we keep this
1015 # boolean that remembers if we're handling a snapshot
1016 my $is_snapshot = $params{'action'} eq 'snapshot';
1018 # Summary just uses the project path URL, any other action is
1020 if (defined $params{'action'}) {
1021 $href .= "/".esc_url
($params{'action'}) unless $params{'action'} eq 'summary';
1022 delete $params{'action'};
1025 # Next, we put hash_parent_base:/file_parent..hash_base:/file_name,
1026 # stripping nonexistent or useless pieces
1027 $href .= "/" if ($params{'hash_base'} || $params{'hash_parent_base'}
1028 || $params{'hash_parent'} || $params{'hash'});
1029 if (defined $params{'hash_base'}) {
1030 if (defined $params{'hash_parent_base'}) {
1031 $href .= esc_url
($params{'hash_parent_base'});
1032 # skip the file_parent if it's the same as the file_name
1033 if (defined $params{'file_parent'}) {
1034 if (defined $params{'file_name'} && $params{'file_parent'} eq $params{'file_name'}) {
1035 delete $params{'file_parent'};
1036 } elsif ($params{'file_parent'} !~ /\.\./) {
1037 $href .= ":/".esc_url
($params{'file_parent'});
1038 delete $params{'file_parent'};
1042 delete $params{'hash_parent'};
1043 delete $params{'hash_parent_base'};
1044 } elsif (defined $params{'hash_parent'}) {
1045 $href .= esc_url
($params{'hash_parent'}). "..";
1046 delete $params{'hash_parent'};
1049 $href .= esc_url
($params{'hash_base'});
1050 if (defined $params{'file_name'} && $params{'file_name'} !~ /\.\./) {
1051 $href .= ":/".esc_url
($params{'file_name'});
1052 delete $params{'file_name'};
1054 delete $params{'hash'};
1055 delete $params{'hash_base'};
1056 } elsif (defined $params{'hash'}) {
1057 $href .= esc_url
($params{'hash'});
1058 delete $params{'hash'};
1061 # If the action was a snapshot, we can absorb the
1062 # snapshot_format parameter too
1064 my $fmt = $params{'snapshot_format'};
1065 # snapshot_format should always be defined when href()
1066 # is called, but just in case some code forgets, we
1067 # fall back to the default
1068 $fmt ||= $snapshot_fmts[0];
1069 $href .= $known_snapshot_formats{$fmt}{'suffix'};
1070 delete $params{'snapshot_format'};
1074 # now encode the parameters explicitly
1076 for (my $i = 0; $i < @cgi_param_mapping; $i += 2) {
1077 my ($name, $symbol) = ($cgi_param_mapping[$i], $cgi_param_mapping[$i+1]);
1078 if (defined $params{$name}) {
1079 if (ref($params{$name}) eq "ARRAY") {
1080 foreach my $par (@
{$params{$name}}) {
1081 push @result, $symbol . "=" . esc_param
($par);
1084 push @result, $symbol . "=" . esc_param
($params{$name});
1088 $href .= "?" . join(';', @result) if scalar @result;
1094 ## ======================================================================
1095 ## validation, quoting/unquoting and escaping
1097 sub validate_action
{
1098 my $input = shift || return undef;
1099 return undef unless exists $actions{$input};
1103 sub validate_project
{
1104 my $input = shift || return undef;
1105 if (!validate_pathname
($input) ||
1106 !(-d
"$projectroot/$input") ||
1107 !check_export_ok
("$projectroot/$input") ||
1108 ($strict_export && !project_in_list
($input))) {
1115 sub validate_pathname
{
1116 my $input = shift || return undef;
1118 # no '.' or '..' as elements of path, i.e. no '.' nor '..'
1119 # at the beginning, at the end, and between slashes.
1120 # also this catches doubled slashes
1121 if ($input =~ m!(^|/)(|\.|\.\.)(/|$)!) {
1124 # no null characters
1125 if ($input =~ m!\0!) {
1131 sub validate_refname
{
1132 my $input = shift || return undef;
1134 # textual hashes are O.K.
1135 if ($input =~ m/^[0-9a-fA-F]{40}$/) {
1138 # it must be correct pathname
1139 $input = validate_pathname
($input)
1141 # restrictions on ref name according to git-check-ref-format
1142 if ($input =~ m!(/\.|\.\.|[\000-\040\177 ~^:?*\[]|/$)!) {
1148 # decode sequences of octets in utf8 into Perl's internal form,
1149 # which is utf-8 with utf8 flag set if needed. gitweb writes out
1150 # in utf-8 thanks to "binmode STDOUT, ':utf8'" at beginning
1153 if (utf8
::valid
($str)) {
1157 return decode
($fallback_encoding, $str, Encode
::FB_DEFAULT
);
1161 # quote unsafe chars, but keep the slash, even when it's not
1162 # correct, but quoted slashes look too horrible in bookmarks
1165 $str =~ s/([^A-Za-z0-9\-_.~()\/:@ ]+)/CGI
::escape
($1)/eg
;
1170 # quote unsafe chars in whole URL, so some charactrs cannot be quoted
1173 $str =~ s/([^A-Za-z0-9\-_.~();\/;?:@&=])/sprintf
("%%%02X", ord($1))/eg
;
1179 # replace invalid utf8 character with SUBSTITUTION sequence
1184 $str = to_utf8
($str);
1185 $str = $cgi->escapeHTML($str);
1186 if ($opts{'-nbsp'}) {
1187 $str =~ s/ / /g;
1189 $str =~ s
|([[:cntrl
:]])|(($1 ne "\t") ? quot_cec
($1) : $1)|eg
;
1193 # quote control characters and escape filename to HTML
1198 $str = to_utf8
($str);
1199 $str = $cgi->escapeHTML($str);
1200 if ($opts{'-nbsp'}) {
1201 $str =~ s/ / /g;
1203 $str =~ s
|([[:cntrl
:]])|quot_cec
($1)|eg
;
1207 # Make control characters "printable", using character escape codes (CEC)
1211 my %es = ( # character escape codes, aka escape sequences
1212 "\t" => '\t', # tab (HT)
1213 "\n" => '\n', # line feed (LF)
1214 "\r" => '\r', # carrige return (CR)
1215 "\f" => '\f', # form feed (FF)
1216 "\b" => '\b', # backspace (BS)
1217 "\a" => '\a', # alarm (bell) (BEL)
1218 "\e" => '\e', # escape (ESC)
1219 "\013" => '\v', # vertical tab (VT)
1220 "\000" => '\0', # nul character (NUL)
1222 my $chr = ( (exists $es{$cntrl})
1224 : sprintf('\%2x', ord($cntrl)) );
1225 if ($opts{-nohtml
}) {
1228 return "<span class=\"cntrl\">$chr</span>";
1232 # Alternatively use unicode control pictures codepoints,
1233 # Unicode "printable representation" (PR)
1238 my $chr = sprintf('&#%04d;', 0x2400+ord($cntrl));
1239 if ($opts{-nohtml
}) {
1242 return "<span class=\"cntrl\">$chr</span>";
1246 # git may return quoted and escaped filenames
1252 my %es = ( # character escape codes, aka escape sequences
1253 't' => "\t", # tab (HT, TAB)
1254 'n' => "\n", # newline (NL)
1255 'r' => "\r", # return (CR)
1256 'f' => "\f", # form feed (FF)
1257 'b' => "\b", # backspace (BS)
1258 'a' => "\a", # alarm (bell) (BEL)
1259 'e' => "\e", # escape (ESC)
1260 'v' => "\013", # vertical tab (VT)
1263 if ($seq =~ m/^[0-7]{1,3}$/) {
1264 # octal char sequence
1265 return chr(oct($seq));
1266 } elsif (exists $es{$seq}) {
1267 # C escape sequence, aka character escape code
1270 # quoted ordinary character
1274 if ($str =~ m/^"(.*)"$/) {
1277 $str =~ s/\\([^0-7]|[0-7]{1,3})/unq($1)/eg;
1282 # escape tabs (convert tabs to spaces)
1286 while ((my $pos = index($line, "\t")) != -1) {
1287 if (my $count = (8 - ($pos % 8))) {
1288 my $spaces = ' ' x
$count;
1289 $line =~ s/\t/$spaces/;
1296 sub project_in_list
{
1297 my $project = shift;
1298 my @list = git_get_projects_list
();
1299 return @list && scalar(grep { $_->{'path'} eq $project } @list);
1302 ## ----------------------------------------------------------------------
1303 ## HTML aware string manipulation
1305 # Try to chop given string on a word boundary between position
1306 # $len and $len+$add_len. If there is no word boundary there,
1307 # chop at $len+$add_len. Do not chop if chopped part plus ellipsis
1308 # (marking chopped part) would be longer than given string.
1312 my $add_len = shift || 10;
1313 my $where = shift || 'right'; # 'left' | 'center' | 'right'
1315 # Make sure perl knows it is utf8 encoded so we don't
1316 # cut in the middle of a utf8 multibyte char.
1317 $str = to_utf8
($str);
1319 # allow only $len chars, but don't cut a word if it would fit in $add_len
1320 # if it doesn't fit, cut it if it's still longer than the dots we would add
1321 # remove chopped character entities entirely
1323 # when chopping in the middle, distribute $len into left and right part
1324 # return early if chopping wouldn't make string shorter
1325 if ($where eq 'center') {
1326 return $str if ($len + 5 >= length($str)); # filler is length 5
1329 return $str if ($len + 4 >= length($str)); # filler is length 4
1332 # regexps: ending and beginning with word part up to $add_len
1333 my $endre = qr/.{$len}\w{0,$add_len}/;
1334 my $begre = qr/\w{0,$add_len}.{$len}/;
1336 if ($where eq 'left') {
1337 $str =~ m/^(.*?)($begre)$/;
1338 my ($lead, $body) = ($1, $2);
1339 if (length($lead) > 4) {
1342 return "$lead$body";
1344 } elsif ($where eq 'center') {
1345 $str =~ m/^($endre)(.*)$/;
1346 my ($left, $str) = ($1, $2);
1347 $str =~ m/^(.*?)($begre)$/;
1348 my ($mid, $right) = ($1, $2);
1349 if (length($mid) > 5) {
1352 return "$left$mid$right";
1355 $str =~ m/^($endre)(.*)$/;
1358 if (length($tail) > 4) {
1361 return "$body$tail";
1365 # takes the same arguments as chop_str, but also wraps a <span> around the
1366 # result with a title attribute if it does get chopped. Additionally, the
1367 # string is HTML-escaped.
1368 sub chop_and_escape_str
{
1371 my $chopped = chop_str
(@_);
1372 if ($chopped eq $str) {
1373 return esc_html
($chopped);
1375 $str =~ s/[[:cntrl:]]/?/g;
1376 return $cgi->span({-title
=>$str}, esc_html
($chopped));
1380 ## ----------------------------------------------------------------------
1381 ## functions returning short strings
1383 # CSS class for given age value (in seconds)
1387 if (!defined $age) {
1389 } elsif ($age < 60*60*2) {
1391 } elsif ($age < 60*60*24*2) {
1398 # convert age in seconds to "nn units ago" string
1403 if ($age > 60*60*24*365*2) {
1404 $age_str = (int $age/60/60/24/365);
1405 $age_str .= " years ago";
1406 } elsif ($age > 60*60*24*(365/12)*2) {
1407 $age_str = int $age/60/60/24/(365/12);
1408 $age_str .= " months ago";
1409 } elsif ($age > 60*60*24*7*2) {
1410 $age_str = int $age/60/60/24/7;
1411 $age_str .= " weeks ago";
1412 } elsif ($age > 60*60*24*2) {
1413 $age_str = int $age/60/60/24;
1414 $age_str .= " days ago";
1415 } elsif ($age > 60*60*2) {
1416 $age_str = int $age/60/60;
1417 $age_str .= " hours ago";
1418 } elsif ($age > 60*2) {
1419 $age_str = int $age/60;
1420 $age_str .= " min ago";
1421 } elsif ($age > 2) {
1422 $age_str = int $age;
1423 $age_str .= " sec ago";
1425 $age_str .= " right now";
1431 S_IFINVALID
=> 0030000,
1432 S_IFGITLINK
=> 0160000,
1435 # submodule/subproject, a commit object reference
1439 return (($mode & S_IFMT
) == S_IFGITLINK
)
1442 # convert file mode in octal to symbolic file mode string
1444 my $mode = oct shift;
1446 if (S_ISGITLINK
($mode)) {
1447 return 'm---------';
1448 } elsif (S_ISDIR
($mode & S_IFMT
)) {
1449 return 'drwxr-xr-x';
1450 } elsif (S_ISLNK
($mode)) {
1451 return 'lrwxrwxrwx';
1452 } elsif (S_ISREG
($mode)) {
1453 # git cares only about the executable bit
1454 if ($mode & S_IXUSR
) {
1455 return '-rwxr-xr-x';
1457 return '-rw-r--r--';
1460 return '----------';
1464 # convert file mode in octal to file type string
1468 if ($mode !~ m/^[0-7]+$/) {
1474 if (S_ISGITLINK
($mode)) {
1476 } elsif (S_ISDIR
($mode & S_IFMT
)) {
1478 } elsif (S_ISLNK
($mode)) {
1480 } elsif (S_ISREG
($mode)) {
1487 # convert file mode in octal to file type description string
1488 sub file_type_long
{
1491 if ($mode !~ m/^[0-7]+$/) {
1497 if (S_ISGITLINK
($mode)) {
1499 } elsif (S_ISDIR
($mode & S_IFMT
)) {
1501 } elsif (S_ISLNK
($mode)) {
1503 } elsif (S_ISREG
($mode)) {
1504 if ($mode & S_IXUSR
) {
1505 return "executable";
1515 ## ----------------------------------------------------------------------
1516 ## functions returning short HTML fragments, or transforming HTML fragments
1517 ## which don't belong to other sections
1519 # format line of commit message.
1520 sub format_log_line_html
{
1523 $line = esc_html
($line, -nbsp
=>1);
1524 $line =~ s
{\b([0-9a
-fA
-F
]{8,40})\b}{
1525 $cgi->a({-href
=> href
(action
=>"object", hash
=>$1),
1526 -class => "text"}, $1);
1532 # format marker of refs pointing to given object
1534 # the destination action is chosen based on object type and current context:
1535 # - for annotated tags, we choose the tag view unless it's the current view
1536 # already, in which case we go to shortlog view
1537 # - for other refs, we keep the current view if we're in history, shortlog or
1538 # log view, and select shortlog otherwise
1539 sub format_ref_marker
{
1540 my ($refs, $id) = @_;
1543 if (defined $refs->{$id}) {
1544 foreach my $ref (@
{$refs->{$id}}) {
1545 # this code exploits the fact that non-lightweight tags are the
1546 # only indirect objects, and that they are the only objects for which
1547 # we want to use tag instead of shortlog as action
1548 my ($type, $name) = qw();
1549 my $indirect = ($ref =~ s/\^\{\}$//);
1550 # e.g. tags/v2.6.11 or heads/next
1551 if ($ref =~ m!^(.*?)s?/(.*)$!) {
1560 $class .= " indirect" if $indirect;
1562 my $dest_action = "shortlog";
1565 $dest_action = "tag" unless $action eq "tag";
1566 } elsif ($action =~ /^(history|(short)?log)$/) {
1567 $dest_action = $action;
1571 $dest .= "refs/" unless $ref =~ m
!^refs
/!;
1574 my $link = $cgi->a({
1576 action
=>$dest_action,
1580 $markers .= " <span class=\"$class\" title=\"$ref\">" .
1586 return ' <span class="refs">'. $markers . '</span>';
1592 # format, perhaps shortened and with markers, title line
1593 sub format_subject_html
{
1594 my ($long, $short, $href, $extra) = @_;
1595 $extra = '' unless defined($extra);
1597 if (length($short) < length($long)) {
1598 $long =~ s/[[:cntrl:]]/?/g;
1599 return $cgi->a({-href
=> $href, -class => "list subject",
1600 -title
=> to_utf8
($long)},
1601 esc_html
($short)) . $extra;
1603 return $cgi->a({-href
=> $href, -class => "list subject"},
1604 esc_html
($long)) . $extra;
1608 # Rather than recomputing the url for an email multiple times, we cache it
1609 # after the first hit. This gives a visible benefit in views where the avatar
1610 # for the same email is used repeatedly (e.g. shortlog).
1611 # The cache is shared by all avatar engines (currently gravatar only), which
1612 # are free to use it as preferred. Since only one avatar engine is used for any
1613 # given page, there's no risk for cache conflicts.
1614 our %avatar_cache = ();
1616 # Compute the picon url for a given email, by using the picon search service over at
1617 # http://www.cs.indiana.edu/picons/search.html
1619 my $email = lc shift;
1620 if (!$avatar_cache{$email}) {
1621 my ($user, $domain) = split('@', $email);
1622 $avatar_cache{$email} =
1623 "http://www.cs.indiana.edu/cgi-pub/kinzler/piconsearch.cgi/" .
1625 "users+domains+unknown/up/single";
1627 return $avatar_cache{$email};
1630 # Compute the gravatar url for a given email, if it's not in the cache already.
1631 # Gravatar stores only the part of the URL before the size, since that's the
1632 # one computationally more expensive. This also allows reuse of the cache for
1633 # different sizes (for this particular engine).
1635 my $email = lc shift;
1637 $avatar_cache{$email} ||=
1638 "http://www.gravatar.com/avatar/" .
1639 Digest
::MD5
::md5_hex
($email) . "?s=";
1640 return $avatar_cache{$email} . $size;
1643 # Insert an avatar for the given $email at the given $size if the feature
1645 sub git_get_avatar
{
1646 my ($email, %opts) = @_;
1647 my $pre_white = ($opts{-pad_before
} ?
" " : "");
1648 my $post_white = ($opts{-pad_after
} ?
" " : "");
1649 $opts{-size
} ||= 'default';
1650 my $size = $avatar_size{$opts{-size
}} || $avatar_size{'default'};
1652 if ($git_avatar eq 'gravatar') {
1653 $url = gravatar_url
($email, $size);
1654 } elsif ($git_avatar eq 'picon') {
1655 $url = picon_url
($email);
1657 # Other providers can be added by extending the if chain, defining $url
1658 # as needed. If no variant puts something in $url, we assume avatars
1659 # are completely disabled/unavailable.
1662 "<img width=\"$size\" " .
1663 "class=\"avatar\" " .
1672 sub format_search_author
{
1673 my ($author, $searchtype, $displaytext) = @_;
1674 my $have_search = gitweb_check_feature
('search');
1678 if ($searchtype eq 'author') {
1679 $performed = "authored";
1680 } elsif ($searchtype eq 'committer') {
1681 $performed = "committed";
1684 return $cgi->a({-href
=> href
(action
=>"search", hash
=>$hash,
1685 searchtext
=>$author,
1686 searchtype
=>$searchtype), class=>"list",
1687 title
=>"Search for commits $performed by $author"},
1691 return $displaytext;
1695 # format the author name of the given commit with the given tag
1696 # the author name is chopped and escaped according to the other
1697 # optional parameters (see chop_str).
1698 sub format_author_html
{
1701 my $author = chop_and_escape_str
($co->{'author_name'}, @_);
1702 return "<$tag class=\"author\">" .
1703 format_search_author
($co->{'author_name'}, "author",
1704 git_get_avatar
($co->{'author_email'}, -pad_after
=> 1) .
1709 # format git diff header line, i.e. "diff --(git|combined|cc) ..."
1710 sub format_git_diff_header_line
{
1712 my $diffinfo = shift;
1713 my ($from, $to) = @_;
1715 if ($diffinfo->{'nparents'}) {
1717 $line =~ s!^(diff (.*?) )"?.*$!$1!;
1718 if ($to->{'href'}) {
1719 $line .= $cgi->a({-href
=> $to->{'href'}, -class => "path"},
1720 esc_path
($to->{'file'}));
1721 } else { # file was deleted (no href)
1722 $line .= esc_path
($to->{'file'});
1726 $line =~ s!^(diff (.*?) )"?a/.*$!$1!;
1727 if ($from->{'href'}) {
1728 $line .= $cgi->a({-href
=> $from->{'href'}, -class => "path"},
1729 'a/' . esc_path
($from->{'file'}));
1730 } else { # file was added (no href)
1731 $line .= 'a/' . esc_path
($from->{'file'});
1734 if ($to->{'href'}) {
1735 $line .= $cgi->a({-href
=> $to->{'href'}, -class => "path"},
1736 'b/' . esc_path
($to->{'file'}));
1737 } else { # file was deleted
1738 $line .= 'b/' . esc_path
($to->{'file'});
1742 return "<div class=\"diff header\">$line</div>\n";
1745 # format extended diff header line, before patch itself
1746 sub format_extended_diff_header_line
{
1748 my $diffinfo = shift;
1749 my ($from, $to) = @_;
1752 if ($line =~ s!^((copy|rename) from ).*$!$1! && $from->{'href'}) {
1753 $line .= $cgi->a({-href
=>$from->{'href'}, -class=>"path"},
1754 esc_path
($from->{'file'}));
1756 if ($line =~ s!^((copy|rename) to ).*$!$1! && $to->{'href'}) {
1757 $line .= $cgi->a({-href
=>$to->{'href'}, -class=>"path"},
1758 esc_path
($to->{'file'}));
1760 # match single <mode>
1761 if ($line =~ m/\s(\d{6})$/) {
1762 $line .= '<span class="info"> (' .
1763 file_type_long
($1) .
1767 if ($line =~ m/^index [0-9a-fA-F]{40},[0-9a-fA-F]{40}/) {
1768 # can match only for combined diff
1770 for (my $i = 0; $i < $diffinfo->{'nparents'}; $i++) {
1771 if ($from->{'href'}[$i]) {
1772 $line .= $cgi->a({-href
=>$from->{'href'}[$i],
1774 substr($diffinfo->{'from_id'}[$i],0,7));
1779 $line .= ',' if ($i < $diffinfo->{'nparents'} - 1);
1782 if ($to->{'href'}) {
1783 $line .= $cgi->a({-href
=>$to->{'href'}, -class=>"hash"},
1784 substr($diffinfo->{'to_id'},0,7));
1789 } elsif ($line =~ m/^index [0-9a-fA-F]{40}..[0-9a-fA-F]{40}/) {
1790 # can match only for ordinary diff
1791 my ($from_link, $to_link);
1792 if ($from->{'href'}) {
1793 $from_link = $cgi->a({-href
=>$from->{'href'}, -class=>"hash"},
1794 substr($diffinfo->{'from_id'},0,7));
1796 $from_link = '0' x
7;
1798 if ($to->{'href'}) {
1799 $to_link = $cgi->a({-href
=>$to->{'href'}, -class=>"hash"},
1800 substr($diffinfo->{'to_id'},0,7));
1804 my ($from_id, $to_id) = ($diffinfo->{'from_id'}, $diffinfo->{'to_id'});
1805 $line =~ s!$from_id\.\.$to_id!$from_link..$to_link!;
1808 return $line . "<br/>\n";
1811 # format from-file/to-file diff header
1812 sub format_diff_from_to_header
{
1813 my ($from_line, $to_line, $diffinfo, $from, $to, @parents) = @_;
1818 #assert($line =~ m/^---/) if DEBUG;
1819 # no extra formatting for "^--- /dev/null"
1820 if (! $diffinfo->{'nparents'}) {
1821 # ordinary (single parent) diff
1822 if ($line =~ m!^--- "?a/!) {
1823 if ($from->{'href'}) {
1825 $cgi->a({-href
=>$from->{'href'}, -class=>"path"},
1826 esc_path
($from->{'file'}));
1829 esc_path
($from->{'file'});
1832 $result .= qq!<div
class="diff from_file">$line</div
>\n!;
1835 # combined diff (merge commit)
1836 for (my $i = 0; $i < $diffinfo->{'nparents'}; $i++) {
1837 if ($from->{'href'}[$i]) {
1839 $cgi->a({-href
=>href
(action
=>"blobdiff",
1840 hash_parent
=>$diffinfo->{'from_id'}[$i],
1841 hash_parent_base
=>$parents[$i],
1842 file_parent
=>$from->{'file'}[$i],
1843 hash
=>$diffinfo->{'to_id'},
1845 file_name
=>$to->{'file'}),
1847 -title
=>"diff" . ($i+1)},
1850 $cgi->a({-href
=>$from->{'href'}[$i], -class=>"path"},
1851 esc_path
($from->{'file'}[$i]));
1853 $line = '--- /dev/null';
1855 $result .= qq!<div
class="diff from_file">$line</div
>\n!;
1860 #assert($line =~ m/^\+\+\+/) if DEBUG;
1861 # no extra formatting for "^+++ /dev/null"
1862 if ($line =~ m!^\+\+\+ "?b/!) {
1863 if ($to->{'href'}) {
1865 $cgi->a({-href
=>$to->{'href'}, -class=>"path"},
1866 esc_path
($to->{'file'}));
1869 esc_path
($to->{'file'});
1872 $result .= qq!<div
class="diff to_file">$line</div
>\n!;
1877 # create note for patch simplified by combined diff
1878 sub format_diff_cc_simplified
{
1879 my ($diffinfo, @parents) = @_;
1882 $result .= "<div class=\"diff header\">" .
1884 if (!is_deleted
($diffinfo)) {
1885 $result .= $cgi->a({-href
=> href
(action
=>"blob",
1887 hash
=>$diffinfo->{'to_id'},
1888 file_name
=>$diffinfo->{'to_file'}),
1890 esc_path
($diffinfo->{'to_file'}));
1892 $result .= esc_path
($diffinfo->{'to_file'});
1894 $result .= "</div>\n" . # class="diff header"
1895 "<div class=\"diff nodifferences\">" .
1897 "</div>\n"; # class="diff nodifferences"
1902 # format patch (diff) line (not to be used for diff headers)
1903 sub format_diff_line
{
1905 my ($from, $to) = @_;
1906 my $diff_class = "";
1910 if ($from && $to && ref($from->{'href'}) eq "ARRAY") {
1912 my $prefix = substr($line, 0, scalar @
{$from->{'href'}});
1913 if ($line =~ m/^\@{3}/) {
1914 $diff_class = " chunk_header";
1915 } elsif ($line =~ m/^\\/) {
1916 $diff_class = " incomplete";
1917 } elsif ($prefix =~ tr/+/+/) {
1918 $diff_class = " add";
1919 } elsif ($prefix =~ tr/-/-/) {
1920 $diff_class = " rem";
1923 # assume ordinary diff
1924 my $char = substr($line, 0, 1);
1926 $diff_class = " add";
1927 } elsif ($char eq '-') {
1928 $diff_class = " rem";
1929 } elsif ($char eq '@') {
1930 $diff_class = " chunk_header";
1931 } elsif ($char eq "\\") {
1932 $diff_class = " incomplete";
1935 $line = untabify
($line);
1936 if ($from && $to && $line =~ m/^\@{2} /) {
1937 my ($from_text, $from_start, $from_lines, $to_text, $to_start, $to_lines, $section) =
1938 $line =~ m/^\@{2} (-(\d+)(?:,(\d+))?) (\+(\d+)(?:,(\d+))?) \@{2}(.*)$/;
1940 $from_lines = 0 unless defined $from_lines;
1941 $to_lines = 0 unless defined $to_lines;
1943 if ($from->{'href'}) {
1944 $from_text = $cgi->a({-href
=>"$from->{'href'}#l$from_start",
1945 -class=>"list"}, $from_text);
1947 if ($to->{'href'}) {
1948 $to_text = $cgi->a({-href
=>"$to->{'href'}#l$to_start",
1949 -class=>"list"}, $to_text);
1951 $line = "<span class=\"chunk_info\">@@ $from_text $to_text @@</span>" .
1952 "<span class=\"section\">" . esc_html
($section, -nbsp
=>1) . "</span>";
1953 return "<div class=\"diff$diff_class\">$line</div>\n";
1954 } elsif ($from && $to && $line =~ m/^\@{3}/) {
1955 my ($prefix, $ranges, $section) = $line =~ m/^(\@+) (.*?) \@+(.*)$/;
1956 my (@from_text, @from_start, @from_nlines, $to_text, $to_start, $to_nlines);
1958 @from_text = split(' ', $ranges);
1959 for (my $i = 0; $i < @from_text; ++$i) {
1960 ($from_start[$i], $from_nlines[$i]) =
1961 (split(',', substr($from_text[$i], 1)), 0);
1964 $to_text = pop @from_text;
1965 $to_start = pop @from_start;
1966 $to_nlines = pop @from_nlines;
1968 $line = "<span class=\"chunk_info\">$prefix ";
1969 for (my $i = 0; $i < @from_text; ++$i) {
1970 if ($from->{'href'}[$i]) {
1971 $line .= $cgi->a({-href
=>"$from->{'href'}[$i]#l$from_start[$i]",
1972 -class=>"list"}, $from_text[$i]);
1974 $line .= $from_text[$i];
1978 if ($to->{'href'}) {
1979 $line .= $cgi->a({-href
=>"$to->{'href'}#l$to_start",
1980 -class=>"list"}, $to_text);
1984 $line .= " $prefix</span>" .
1985 "<span class=\"section\">" . esc_html
($section, -nbsp
=>1) . "</span>";
1986 return "<div class=\"diff$diff_class\">$line</div>\n";
1988 return "<div class=\"diff$diff_class\">" . esc_html
($line, -nbsp
=>1) . "</div>\n";
1991 # Generates undef or something like "_snapshot_" or "snapshot (_tbz2_ _zip_)",
1992 # linked. Pass the hash of the tree/commit to snapshot.
1993 sub format_snapshot_links
{
1995 my $num_fmts = @snapshot_fmts;
1996 if ($num_fmts > 1) {
1997 # A parenthesized list of links bearing format names.
1998 # e.g. "snapshot (_tar.gz_ _zip_)"
1999 return "snapshot (" . join(' ', map
2006 }, $known_snapshot_formats{$_}{'display'})
2007 , @snapshot_fmts) . ")";
2008 } elsif ($num_fmts == 1) {
2009 # A single "snapshot" link whose tooltip bears the format name.
2011 my ($fmt) = @snapshot_fmts;
2017 snapshot_format
=>$fmt
2019 -title
=> "in format: $known_snapshot_formats{$fmt}{'display'}"
2021 } else { # $num_fmts == 0
2026 ## ......................................................................
2027 ## functions returning values to be passed, perhaps after some
2028 ## transformation, to other functions; e.g. returning arguments to href()
2030 # returns hash to be passed to href to generate gitweb URL
2031 # in -title key it returns description of link
2033 my $format = shift || 'Atom';
2034 my %res = (action
=> lc($format));
2036 # feed links are possible only for project views
2037 return unless (defined $project);
2038 # some views should link to OPML, or to generic project feed,
2039 # or don't have specific feed yet (so they should use generic)
2040 return if ($action =~ /^(?:tags|heads|forks|tag|search)$/x);
2043 # branches refs uses 'refs/heads/' prefix (fullname) to differentiate
2044 # from tag links; this also makes possible to detect branch links
2045 if ((defined $hash_base && $hash_base =~ m!^refs/heads/(.*)$!) ||
2046 (defined $hash && $hash =~ m!^refs/heads/(.*)$!)) {
2049 # find log type for feed description (title)
2051 if (defined $file_name) {
2052 $type = "history of $file_name";
2053 $type .= "/" if ($action eq 'tree');
2054 $type .= " on '$branch'" if (defined $branch);
2056 $type = "log of $branch" if (defined $branch);
2059 $res{-title
} = $type;
2060 $res{'hash'} = (defined $branch ?
"refs/heads/$branch" : undef);
2061 $res{'file_name'} = $file_name;
2066 ## ----------------------------------------------------------------------
2067 ## git utility subroutines, invoking git commands
2069 # returns path to the core git executable and the --git-dir parameter as list
2071 $number_of_git_cmds++;
2072 return $GIT, '--git-dir='.$git_dir;
2075 # quote the given arguments for passing them to the shell
2076 # quote_command("command", "arg 1", "arg with ' and ! characters")
2077 # => "'command' 'arg 1' 'arg with '\'' and '\!' characters'"
2078 # Try to avoid using this function wherever possible.
2081 map { my $a = $_; $a =~ s/(['!])/'\\$1'/g; "'$a'" } @_ );
2084 # get HEAD ref of given project as hash
2085 sub git_get_head_hash
{
2086 return git_get_full_hash
(shift, 'HEAD');
2089 sub git_get_full_hash
{
2090 return git_get_hash
(@_);
2093 sub git_get_short_hash
{
2094 return git_get_hash
(@_, '--short=7');
2098 my ($project, $hash, @options) = @_;
2099 my $o_git_dir = $git_dir;
2101 $git_dir = "$projectroot/$project";
2102 if (open my $fd, '-|', git_cmd
(), 'rev-parse',
2103 '--verify', '-q', @options, $hash) {
2105 chomp $retval if defined $retval;
2108 if (defined $o_git_dir) {
2109 $git_dir = $o_git_dir;
2114 # get type of given object
2118 open my $fd, "-|", git_cmd
(), "cat-file", '-t', $hash or return;
2120 close $fd or return;
2125 # repository configuration
2126 our $config_file = '';
2129 # store multiple values for single key as anonymous array reference
2130 # single values stored directly in the hash, not as [ <value> ]
2131 sub hash_set_multi
{
2132 my ($hash, $key, $value) = @_;
2134 if (!exists $hash->{$key}) {
2135 $hash->{$key} = $value;
2136 } elsif (!ref $hash->{$key}) {
2137 $hash->{$key} = [ $hash->{$key}, $value ];
2139 push @
{$hash->{$key}}, $value;
2143 # return hash of git project configuration
2144 # optionally limited to some section, e.g. 'gitweb'
2145 sub git_parse_project_config
{
2146 my $section_regexp = shift;
2151 open my $fh, "-|", git_cmd
(), "config", '-z', '-l',
2154 while (my $keyval = <$fh>) {
2156 my ($key, $value) = split(/\n/, $keyval, 2);
2158 hash_set_multi
(\
%config, $key, $value)
2159 if (!defined $section_regexp || $key =~ /^(?:$section_regexp)\./o);
2166 # convert config value to boolean: 'true' or 'false'
2167 # no value, number > 0, 'true' and 'yes' values are true
2168 # rest of values are treated as false (never as error)
2169 sub config_to_bool
{
2172 return 1 if !defined $val; # section.key
2174 # strip leading and trailing whitespace
2178 return (($val =~ /^\d+$/ && $val) || # section.key = 1
2179 ($val =~ /^(?:true|yes)$/i)); # section.key = true
2182 # convert config value to simple decimal number
2183 # an optional value suffix of 'k', 'm', or 'g' will cause the value
2184 # to be multiplied by 1024, 1048576, or 1073741824
2188 # strip leading and trailing whitespace
2192 if (my ($num, $unit) = ($val =~ /^([0-9]*)([kmg])$/i)) {
2194 # unknown unit is treated as 1
2195 return $num * ($unit eq 'g' ?
1073741824 :
2196 $unit eq 'm' ?
1048576 :
2197 $unit eq 'k' ?
1024 : 1);
2202 # convert config value to array reference, if needed
2203 sub config_to_multi
{
2206 return ref($val) ?
$val : (defined($val) ?
[ $val ] : []);
2209 sub git_get_project_config
{
2210 my ($key, $type) = @_;
2212 # do we have project
2213 return unless (defined $project && defined $git_dir);
2216 return unless ($key);
2217 $key =~ s/^gitweb\.//;
2218 return if ($key =~ m/\W/);
2221 if (defined $type) {
2224 unless ($type eq 'bool' || $type eq 'int');
2228 if (!defined $config_file ||
2229 $config_file ne "$git_dir/config") {
2230 %config = git_parse_project_config
('gitweb');
2231 $config_file = "$git_dir/config";
2234 # check if config variable (key) exists
2235 return unless exists $config{"gitweb.$key"};
2238 if (!defined $type) {
2239 return $config{"gitweb.$key"};
2240 } elsif ($type eq 'bool') {
2241 # backward compatibility: 'git config --bool' returns true/false
2242 return config_to_bool
($config{"gitweb.$key"}) ?
'true' : 'false';
2243 } elsif ($type eq 'int') {
2244 return config_to_int
($config{"gitweb.$key"});
2246 return $config{"gitweb.$key"};
2249 # get hash of given path at given ref
2250 sub git_get_hash_by_path
{
2252 my $path = shift || return undef;
2257 open my $fd, "-|", git_cmd
(), "ls-tree", $base, "--", $path
2258 or die_error
(500, "Open git-ls-tree failed");
2260 close $fd or return undef;
2262 if (!defined $line) {
2263 # there is no tree or hash given by $path at $base
2267 #'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'
2268 $line =~ m/^([0-9]+) (.+) ([0-9a-fA-F]{40})\t/;
2269 if (defined $type && $type ne $2) {
2270 # type doesn't match
2276 # get path of entry with given hash at given tree-ish (ref)
2277 # used to get 'from' filename for combined diff (merge commit) for renames
2278 sub git_get_path_by_hash
{
2279 my $base = shift || return;
2280 my $hash = shift || return;
2284 open my $fd, "-|", git_cmd
(), "ls-tree", '-r', '-t', '-z', $base
2286 while (my $line = <$fd>) {
2289 #'040000 tree 595596a6a9117ddba9fe379b6b012b558bac8423 gitweb'
2290 #'100644 blob e02e90f0429be0d2a69b76571101f20b8f75530f gitweb/README'
2291 if ($line =~ m/(?:[0-9]+) (?:.+) $hash\t(.+)$/) {
2300 ## ......................................................................
2301 ## git utility functions, directly accessing git repository
2303 sub git_get_project_description
{
2306 $git_dir = "$projectroot/$path";
2307 open my $fd, '<', "$git_dir/description"
2308 or return git_get_project_config
('description');
2311 if (defined $descr) {
2317 sub git_get_project_ctags
{
2321 $git_dir = "$projectroot/$path";
2322 opendir my $dh, "$git_dir/ctags"
2324 foreach (grep { -f
$_ } map { "$git_dir/ctags/$_" } readdir($dh)) {
2325 open my $ct, '<', $_ or next;
2329 my $ctag = $_; $ctag =~ s
#.*/##;
2330 $ctags->{$ctag} = $val;
2336 sub git_populate_project_tagcloud
{
2339 # First, merge different-cased tags; tags vote on casing
2341 foreach (keys %$ctags) {
2342 $ctags_lc{lc $_}->{count
} += $ctags->{$_};
2343 if (not $ctags_lc{lc $_}->{topcount
}
2344 or $ctags_lc{lc $_}->{topcount
} < $ctags->{$_}) {
2345 $ctags_lc{lc $_}->{topcount
} = $ctags->{$_};
2346 $ctags_lc{lc $_}->{topname
} = $_;
2351 if (eval { require HTML
::TagCloud
; 1; }) {
2352 $cloud = HTML
::TagCloud
->new;
2353 foreach (sort keys %ctags_lc) {
2354 # Pad the title with spaces so that the cloud looks
2356 my $title = $ctags_lc{$_}->{topname
};
2357 $title =~ s/ / /g;
2358 $title =~ s/^/ /g;
2359 $title =~ s/$/ /g;
2360 $cloud->add($title, $home_link."?by_tag=".$_, $ctags_lc{$_}->{count
});
2363 $cloud = \
%ctags_lc;
2368 sub git_show_project_tagcloud
{
2369 my ($cloud, $count) = @_;
2370 print STDERR
ref($cloud)."..\n";
2371 if (ref $cloud eq 'HTML::TagCloud') {
2372 return $cloud->html_and_css($count);
2374 my @tags = sort { $cloud->{$a}->{count
} <=> $cloud->{$b}->{count
} } keys %$cloud;
2375 return '<p align="center">' . join (', ', map {
2376 "<a href=\"$home_link?by_tag=$_\">$cloud->{$_}->{topname}</a>"
2377 } splice(@tags, 0, $count)) . '</p>';
2381 sub git_get_project_url_list
{
2384 $git_dir = "$projectroot/$path";
2385 open my $fd, '<', "$git_dir/cloneurl"
2386 or return wantarray ?
2387 @
{ config_to_multi
(git_get_project_config
('url')) } :
2388 config_to_multi
(git_get_project_config
('url'));
2389 my @git_project_url_list = map { chomp; $_ } <$fd>;
2392 return wantarray ?
@git_project_url_list : \
@git_project_url_list;
2395 sub git_get_projects_list
{
2400 $filter =~ s/\.git$//;
2402 my $check_forks = gitweb_check_feature
('forks');
2404 if (-d
$projects_list) {
2405 # search in directory
2406 my $dir = $projects_list . ($filter ?
"/$filter" : '');
2407 # remove the trailing "/"
2409 my $pfxlen = length("$dir");
2410 my $pfxdepth = ($dir =~ tr!/!!);
2413 follow_fast
=> 1, # follow symbolic links
2414 follow_skip
=> 2, # ignore duplicates
2415 dangling_symlinks
=> 0, # ignore dangling symlinks, silently
2417 # skip project-list toplevel, if we get it.
2418 return if (m!^[/.]$!);
2419 # only directories can be git repositories
2420 return unless (-d
$_);
2421 # don't traverse too deep (Find is super slow on os x)
2422 if (($File::Find
::name
=~ tr!/!!) - $pfxdepth > $project_maxdepth) {
2423 $File::Find
::prune
= 1;
2427 my $subdir = substr($File::Find
::name
, $pfxlen + 1);
2428 # we check related file in $projectroot
2429 my $path = ($filter ?
"$filter/" : '') . $subdir;
2430 if (check_export_ok
("$projectroot/$path")) {
2431 push @list, { path
=> $path };
2432 $File::Find
::prune
= 1;
2437 } elsif (-f
$projects_list) {
2438 # read from file(url-encoded):
2439 # 'git%2Fgit.git Linus+Torvalds'
2440 # 'libs%2Fklibc%2Fklibc.git H.+Peter+Anvin'
2441 # 'linux%2Fhotplug%2Fudev.git Greg+Kroah-Hartman'
2443 open my $fd, '<', $projects_list or return;
2445 while (my $line = <$fd>) {
2447 my ($path, $owner) = split ' ', $line;
2448 $path = unescape
($path);
2449 $owner = unescape
($owner);
2450 if (!defined $path) {
2453 if ($filter ne '') {
2454 # looking for forks;
2455 my $pfx = substr($path, 0, length($filter));
2456 if ($pfx ne $filter) {
2459 my $sfx = substr($path, length($filter));
2460 if ($sfx !~ /^\/.*\
.git
$/) {
2463 } elsif ($check_forks) {
2465 foreach my $filter (keys %paths) {
2466 # looking for forks;
2467 my $pfx = substr($path, 0, length($filter));
2468 if ($pfx ne $filter) {
2471 my $sfx = substr($path, length($filter));
2472 if ($sfx !~ /^\/.*\
.git
$/) {
2475 # is a fork, don't include it in
2480 if (check_export_ok
("$projectroot/$path")) {
2483 owner
=> to_utf8
($owner),
2486 (my $forks_path = $path) =~ s/\.git$//;
2487 $paths{$forks_path}++;
2495 our $gitweb_project_owner = undef;
2496 sub git_get_project_list_from_file
{
2498 return if (defined $gitweb_project_owner);
2500 $gitweb_project_owner = {};
2501 # read from file (url-encoded):
2502 # 'git%2Fgit.git Linus+Torvalds'
2503 # 'libs%2Fklibc%2Fklibc.git H.+Peter+Anvin'
2504 # 'linux%2Fhotplug%2Fudev.git Greg+Kroah-Hartman'
2505 if (-f
$projects_list) {
2506 open(my $fd, '<', $projects_list);
2507 while (my $line = <$fd>) {
2509 my ($pr, $ow) = split ' ', $line;
2510 $pr = unescape
($pr);
2511 $ow = unescape
($ow);
2512 $gitweb_project_owner->{$pr} = to_utf8
($ow);
2518 sub git_get_project_owner
{
2519 my $project = shift;
2522 return undef unless $project;
2523 $git_dir = "$projectroot/$project";
2525 if (!defined $gitweb_project_owner) {
2526 git_get_project_list_from_file
();
2529 if (exists $gitweb_project_owner->{$project}) {
2530 $owner = $gitweb_project_owner->{$project};
2532 if (!defined $owner){
2533 $owner = git_get_project_config
('owner');
2535 if (!defined $owner) {
2536 $owner = get_file_owner
("$git_dir");
2542 sub git_get_last_activity
{
2546 $git_dir = "$projectroot/$path";
2547 open($fd, "-|", git_cmd
(), 'for-each-ref',
2548 '--format=%(committer)',
2549 '--sort=-committerdate',
2551 'refs/heads') or return;
2552 my $most_recent = <$fd>;
2553 close $fd or return;
2554 if (defined $most_recent &&
2555 $most_recent =~ / (\d+) [-+][01]\d\d\d$/) {
2557 my $age = time - $timestamp;
2558 return ($age, age_string
($age));
2560 return (undef, undef);
2563 sub git_get_references
{
2564 my $type = shift || "";
2566 # 5dc01c595e6c6ec9ccda4f6f69c131c0dd945f8c refs/tags/v2.6.11
2567 # c39ae07f393806ccf406ef966e9a15afc43cc36a refs/tags/v2.6.11^{}
2568 open my $fd, "-|", git_cmd
(), "show-ref", "--dereference",
2569 ($type ?
("--", "refs/$type") : ()) # use -- <pattern> if $type
2572 while (my $line = <$fd>) {
2574 if ($line =~ m!^([0-9a-fA-F]{40})\srefs/($type.*)$!) {
2575 if (defined $refs{$1}) {
2576 push @
{$refs{$1}}, $2;
2582 close $fd or return;
2586 sub git_get_rev_name_tags
{
2587 my $hash = shift || return undef;
2589 open my $fd, "-|", git_cmd
(), "name-rev", "--tags", $hash
2591 my $name_rev = <$fd>;
2594 if ($name_rev =~ m
|^$hash tags
/(.*)$|) {
2597 # catches also '$hash undefined' output
2602 ## ----------------------------------------------------------------------
2603 ## parse to hash functions
2607 my $tz = shift || "-0000";
2610 my @months = ("Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec");
2611 my @days = ("Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat");
2612 my ($sec, $min, $hour, $mday, $mon, $year, $wday, $yday) = gmtime($epoch);
2613 $date{'hour'} = $hour;
2614 $date{'minute'} = $min;
2615 $date{'mday'} = $mday;
2616 $date{'day'} = $days[$wday];
2617 $date{'month'} = $months[$mon];
2618 $date{'rfc2822'} = sprintf "%s, %d %s %4d %02d:%02d:%02d +0000",
2619 $days[$wday], $mday, $months[$mon], 1900+$year, $hour ,$min, $sec;
2620 $date{'mday-time'} = sprintf "%d %s %02d:%02d",
2621 $mday, $months[$mon], $hour ,$min;
2622 $date{'iso-8601'} = sprintf "%04d-%02d-%02dT%02d:%02d:%02dZ",
2623 1900+$year, 1+$mon, $mday, $hour ,$min, $sec;
2625 $tz =~ m/^([+\-][0-9][0-9])([0-9][0-9])$/;
2626 my $local = $epoch + ((int $1 + ($2/60)) * 3600);
2627 ($sec, $min, $hour, $mday, $mon, $year, $wday, $yday) = gmtime($local);
2628 $date{'hour_local'} = $hour;
2629 $date{'minute_local'} = $min;
2630 $date{'tz_local'} = $tz;
2631 $date{'iso-tz'} = sprintf("%04d-%02d-%02d %02d:%02d:%02d %s",
2632 1900+$year, $mon+1, $mday,
2633 $hour, $min, $sec, $tz);
2642 open my $fd, "-|", git_cmd
(), "cat-file", "tag", $tag_id or return;
2643 $tag{'id'} = $tag_id;
2644 while (my $line = <$fd>) {
2646 if ($line =~ m/^object ([0-9a-fA-F]{40})$/) {
2647 $tag{'object'} = $1;
2648 } elsif ($line =~ m/^type (.+)$/) {
2650 } elsif ($line =~ m/^tag (.+)$/) {
2652 } elsif ($line =~ m/^tagger (.*) ([0-9]+) (.*)$/) {
2653 $tag{'author'} = $1;
2654 $tag{'author_epoch'} = $2;
2655 $tag{'author_tz'} = $3;
2656 if ($tag{'author'} =~ m/^([^<]+) <([^>]*)>/) {
2657 $tag{'author_name'} = $1;
2658 $tag{'author_email'} = $2;
2660 $tag{'author_name'} = $tag{'author'};
2662 } elsif ($line =~ m/--BEGIN/) {
2663 push @comment, $line;
2665 } elsif ($line eq "") {
2669 push @comment, <$fd>;
2670 $tag{'comment'} = \
@comment;
2671 close $fd or return;
2672 if (!defined $tag{'name'}) {
2678 sub parse_commit_text
{
2679 my ($commit_text, $withparents) = @_;
2680 my @commit_lines = split '\n', $commit_text;
2683 pop @commit_lines; # Remove '\0'
2685 if (! @commit_lines) {
2689 my $header = shift @commit_lines;
2690 if ($header !~ m/^[0-9a-fA-F]{40}/) {
2693 ($co{'id'}, my @parents) = split ' ', $header;
2694 while (my $line = shift @commit_lines) {
2695 last if $line eq "\n";
2696 if ($line =~ m/^tree ([0-9a-fA-F]{40})$/) {
2698 } elsif ((!defined $withparents) && ($line =~ m/^parent ([0-9a-fA-F]{40})$/)) {
2700 } elsif ($line =~ m/^author (.*) ([0-9]+) (.*)$/) {
2701 $co{'author'} = to_utf8
($1);
2702 $co{'author_epoch'} = $2;
2703 $co{'author_tz'} = $3;
2704 if ($co{'author'} =~ m/^([^<]+) <([^>]*)>/) {
2705 $co{'author_name'} = $1;
2706 $co{'author_email'} = $2;
2708 $co{'author_name'} = $co{'author'};
2710 } elsif ($line =~ m/^committer (.*) ([0-9]+) (.*)$/) {
2711 $co{'committer'} = to_utf8
($1);
2712 $co{'committer_epoch'} = $2;
2713 $co{'committer_tz'} = $3;
2714 if ($co{'committer'} =~ m/^([^<]+) <([^>]*)>/) {
2715 $co{'committer_name'} = $1;
2716 $co{'committer_email'} = $2;
2718 $co{'committer_name'} = $co{'committer'};
2722 if (!defined $co{'tree'}) {
2725 $co{'parents'} = \
@parents;
2726 $co{'parent'} = $parents[0];
2728 foreach my $title (@commit_lines) {
2731 $co{'title'} = chop_str
($title, 80, 5);
2732 # remove leading stuff of merges to make the interesting part visible
2733 if (length($title) > 50) {
2734 $title =~ s/^Automatic //;
2735 $title =~ s/^merge (of|with) /Merge ... /i;
2736 if (length($title) > 50) {
2737 $title =~ s/(http|rsync):\/\///;
2739 if (length($title) > 50) {
2740 $title =~ s/(master|www|rsync)\.//;
2742 if (length($title) > 50) {
2743 $title =~ s/kernel.org:?//;
2745 if (length($title) > 50) {
2746 $title =~ s/\/pub\/scm//;
2749 $co{'title_short'} = chop_str
($title, 50, 5);
2753 if (! defined $co{'title'} || $co{'title'} eq "") {
2754 $co{'title'} = $co{'title_short'} = '(no commit message)';
2756 # remove added spaces
2757 foreach my $line (@commit_lines) {
2760 $co{'comment'} = \
@commit_lines;
2762 my $age = time - $co{'committer_epoch'};
2764 $co{'age_string'} = age_string
($age);
2765 my ($sec, $min, $hour, $mday, $mon, $year, $wday, $yday) = gmtime($co{'committer_epoch'});
2766 if ($age > 60*60*24*7*2) {
2767 $co{'age_string_date'} = sprintf "%4i-%02u-%02i", 1900 + $year, $mon+1, $mday;
2768 $co{'age_string_age'} = $co{'age_string'};
2770 $co{'age_string_date'} = $co{'age_string'};
2771 $co{'age_string_age'} = sprintf "%4i-%02u-%02i", 1900 + $year, $mon+1, $mday;
2777 my ($commit_id) = @_;
2782 open my $fd, "-|", git_cmd
(), "rev-list",
2788 or die_error
(500, "Open git-rev-list failed");
2789 %co = parse_commit_text
(<$fd>, 1);
2796 my ($commit_id, $maxcount, $skip, $filename, @args) = @_;
2804 open my $fd, "-|", git_cmd
(), "rev-list",
2807 ("--max-count=" . $maxcount),
2808 ("--skip=" . $skip),
2812 ($filename ?
($filename) : ())
2813 or die_error
(500, "Open git-rev-list failed");
2814 while (my $line = <$fd>) {
2815 my %co = parse_commit_text
($line);
2820 return wantarray ?
@cos : \
@cos;
2823 # parse line of git-diff-tree "raw" output
2824 sub parse_difftree_raw_line
{
2828 # ':100644 100644 03b218260e99b78c6df0ed378e59ed9205ccc96d 3b93d5e7cc7f7dd4ebed13a5cc1a4ad976fc94d8 M ls-files.c'
2829 # ':100644 100644 7f9281985086971d3877aca27704f2aaf9c448ce bc190ebc71bbd923f2b728e505408f5e54bd073a M rev-tree.c'
2830 if ($line =~ m/^:([0-7]{6}) ([0-7]{6}) ([0-9a-fA-F]{40}) ([0-9a-fA-F]{40}) (.)([0-9]{0,3})\t(.*)$/) {
2831 $res{'from_mode'} = $1;
2832 $res{'to_mode'} = $2;
2833 $res{'from_id'} = $3;
2835 $res{'status'} = $5;
2836 $res{'similarity'} = $6;
2837 if ($res{'status'} eq 'R' || $res{'status'} eq 'C') { # renamed or copied
2838 ($res{'from_file'}, $res{'to_file'}) = map { unquote
($_) } split("\t", $7);
2840 $res{'from_file'} = $res{'to_file'} = $res{'file'} = unquote
($7);
2843 # '::100755 100755 100755 60e79ca1b01bc8b057abe17ddab484699a7f5fdb 94067cc5f73388f33722d52ae02f44692bc07490 94067cc5f73388f33722d52ae02f44692bc07490 MR git-gui/git-gui.sh'
2844 # combined diff (for merge commit)
2845 elsif ($line =~ s/^(::+)((?:[0-7]{6} )+)((?:[0-9a-fA-F]{40} )+)([a-zA-Z]+)\t(.*)$//) {
2846 $res{'nparents'} = length($1);
2847 $res{'from_mode'} = [ split(' ', $2) ];
2848 $res{'to_mode'} = pop @
{$res{'from_mode'}};
2849 $res{'from_id'} = [ split(' ', $3) ];
2850 $res{'to_id'} = pop @
{$res{'from_id'}};
2851 $res{'status'} = [ split('', $4) ];
2852 $res{'to_file'} = unquote
($5);
2854 # 'c512b523472485aef4fff9e57b229d9d243c967f'
2855 elsif ($line =~ m/^([0-9a-fA-F]{40})$/) {
2856 $res{'commit'} = $1;
2859 return wantarray ?
%res : \
%res;
2862 # wrapper: return parsed line of git-diff-tree "raw" output
2863 # (the argument might be raw line, or parsed info)
2864 sub parsed_difftree_line
{
2865 my $line_or_ref = shift;
2867 if (ref($line_or_ref) eq "HASH") {
2868 # pre-parsed (or generated by hand)
2869 return $line_or_ref;
2871 return parse_difftree_raw_line
($line_or_ref);
2875 # parse line of git-ls-tree output
2876 sub parse_ls_tree_line
{
2882 #'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa 16717 panic.c'
2883 $line =~ m/^([0-9]+) (.+) ([0-9a-fA-F]{40}) +(-|[0-9]+)\t(.+)$/s;
2892 $res{'name'} = unquote
($5);
2895 #'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'
2896 $line =~ m/^([0-9]+) (.+) ([0-9a-fA-F]{40})\t(.+)$/s;
2904 $res{'name'} = unquote
($4);
2908 return wantarray ?
%res : \
%res;
2911 # generates _two_ hashes, references to which are passed as 2 and 3 argument
2912 sub parse_from_to_diffinfo
{
2913 my ($diffinfo, $from, $to, @parents) = @_;
2915 if ($diffinfo->{'nparents'}) {
2917 $from->{'file'} = [];
2918 $from->{'href'} = [];
2919 fill_from_file_info
($diffinfo, @parents)
2920 unless exists $diffinfo->{'from_file'};
2921 for (my $i = 0; $i < $diffinfo->{'nparents'}; $i++) {
2922 $from->{'file'}[$i] =
2923 defined $diffinfo->{'from_file'}[$i] ?
2924 $diffinfo->{'from_file'}[$i] :
2925 $diffinfo->{'to_file'};
2926 if ($diffinfo->{'status'}[$i] ne "A") { # not new (added) file
2927 $from->{'href'}[$i] = href
(action
=>"blob",
2928 hash_base
=>$parents[$i],
2929 hash
=>$diffinfo->{'from_id'}[$i],
2930 file_name
=>$from->{'file'}[$i]);
2932 $from->{'href'}[$i] = undef;
2936 # ordinary (not combined) diff
2937 $from->{'file'} = $diffinfo->{'from_file'};
2938 if ($diffinfo->{'status'} ne "A") { # not new (added) file
2939 $from->{'href'} = href
(action
=>"blob", hash_base
=>$hash_parent,
2940 hash
=>$diffinfo->{'from_id'},
2941 file_name
=>$from->{'file'});
2943 delete $from->{'href'};
2947 $to->{'file'} = $diffinfo->{'to_file'};
2948 if (!is_deleted
($diffinfo)) { # file exists in result
2949 $to->{'href'} = href
(action
=>"blob", hash_base
=>$hash,
2950 hash
=>$diffinfo->{'to_id'},
2951 file_name
=>$to->{'file'});
2953 delete $to->{'href'};
2957 ## ......................................................................
2958 ## parse to array of hashes functions
2960 sub git_get_heads_list
{
2964 open my $fd, '-|', git_cmd
(), 'for-each-ref',
2965 ($limit ?
'--count='.($limit+1) : ()), '--sort=-committerdate',
2966 '--format=%(objectname) %(refname) %(subject)%00%(committer)',
2969 while (my $line = <$fd>) {
2973 my ($refinfo, $committerinfo) = split(/\0/, $line);
2974 my ($hash, $name, $title) = split(' ', $refinfo, 3);
2975 my ($committer, $epoch, $tz) =
2976 ($committerinfo =~ /^(.*) ([0-9]+) (.*)$/);
2977 $ref_item{'fullname'} = $name;
2978 $name =~ s!^refs/heads/!!;
2980 $ref_item{'name'} = $name;
2981 $ref_item{'id'} = $hash;
2982 $ref_item{'title'} = $title || '(no commit message)';
2983 $ref_item{'epoch'} = $epoch;
2985 $ref_item{'age'} = age_string
(time - $ref_item{'epoch'});
2987 $ref_item{'age'} = "unknown";
2990 push @headslist, \
%ref_item;
2994 return wantarray ?
@headslist : \
@headslist;
2997 sub git_get_tags_list
{
3001 open my $fd, '-|', git_cmd
(), 'for-each-ref',
3002 ($limit ?
'--count='.($limit+1) : ()), '--sort=-creatordate',
3003 '--format=%(objectname) %(objecttype) %(refname) '.
3004 '%(*objectname) %(*objecttype) %(subject)%00%(creator)',
3007 while (my $line = <$fd>) {
3011 my ($refinfo, $creatorinfo) = split(/\0/, $line);
3012 my ($id, $type, $name, $refid, $reftype, $title) = split(' ', $refinfo, 6);
3013 my ($creator, $epoch, $tz) =
3014 ($creatorinfo =~ /^(.*) ([0-9]+) (.*)$/);
3015 $ref_item{'fullname'} = $name;
3016 $name =~ s!^refs/tags/!!;
3018 $ref_item{'type'} = $type;
3019 $ref_item{'id'} = $id;
3020 $ref_item{'name'} = $name;
3021 if ($type eq "tag") {
3022 $ref_item{'subject'} = $title;
3023 $ref_item{'reftype'} = $reftype;
3024 $ref_item{'refid'} = $refid;
3026 $ref_item{'reftype'} = $type;
3027 $ref_item{'refid'} = $id;
3030 if ($type eq "tag" || $type eq "commit") {
3031 $ref_item{'epoch'} = $epoch;
3033 $ref_item{'age'} = age_string
(time - $ref_item{'epoch'});
3035 $ref_item{'age'} = "unknown";
3039 push @tagslist, \
%ref_item;
3043 return wantarray ?
@tagslist : \
@tagslist;
3046 ## ----------------------------------------------------------------------
3047 ## filesystem-related functions
3049 sub get_file_owner
{
3052 my ($dev, $ino, $mode, $nlink, $st_uid, $st_gid, $rdev, $size) = stat($path);
3053 my ($name, $passwd, $uid, $gid, $quota, $comment, $gcos, $dir, $shell) = getpwuid($st_uid);
3054 if (!defined $gcos) {
3058 $owner =~ s/[,;].*$//;
3059 return to_utf8
($owner);
3062 # assume that file exists
3064 my $filename = shift;
3066 open my $fd, '<', $filename;
3067 print map { to_utf8
($_) } <$fd>;
3071 ## ......................................................................
3072 ## mimetype related functions
3074 sub mimetype_guess_file
{
3075 my $filename = shift;
3076 my $mimemap = shift;
3077 -r
$mimemap or return undef;
3080 open(my $mh, '<', $mimemap) or return undef;
3082 next if m/^#/; # skip comments
3083 my ($mimetype, $exts) = split(/\t+/);
3084 if (defined $exts) {
3085 my @exts = split(/\s+/, $exts);
3086 foreach my $ext (@exts) {
3087 $mimemap{$ext} = $mimetype;
3093 $filename =~ /\.([^.]*)$/;
3094 return $mimemap{$1};
3097 sub mimetype_guess
{
3098 my $filename = shift;
3100 $filename =~ /\./ or return undef;
3102 if ($mimetypes_file) {
3103 my $file = $mimetypes_file;
3104 if ($file !~ m!^/!) { # if it is relative path
3105 # it is relative to project
3106 $file = "$projectroot/$project/$file";
3108 $mime = mimetype_guess_file
($filename, $file);
3110 $mime ||= mimetype_guess_file
($filename, '/etc/mime.types');
3116 my $filename = shift;
3119 my $mime = mimetype_guess
($filename);
3120 $mime and return $mime;
3124 return $default_blob_plain_mimetype unless $fd;
3127 return 'text/plain';
3128 } elsif (! $filename) {
3129 return 'application/octet-stream';
3130 } elsif ($filename =~ m/\.png$/i) {
3132 } elsif ($filename =~ m/\.gif$/i) {
3134 } elsif ($filename =~ m/\.jpe?g$/i) {
3135 return 'image/jpeg';
3137 return 'application/octet-stream';
3141 sub blob_contenttype
{
3142 my ($fd, $file_name, $type) = @_;
3144 $type ||= blob_mimetype
($fd, $file_name);
3145 if ($type eq 'text/plain' && defined $default_text_plain_charset) {
3146 $type .= "; charset=$default_text_plain_charset";
3152 ## ======================================================================
3153 ## functions printing HTML: header, footer, error page
3155 sub git_header_html
{
3156 my $status = shift || "200 OK";
3157 my $expires = shift;
3159 my $title = "$site_name";
3160 if (defined $project) {
3161 $title .= " - " . to_utf8
($project);
3162 if (defined $action) {
3163 $title .= "/$action";
3164 if (defined $file_name) {
3165 $title .= " - " . esc_path
($file_name);
3166 if ($action eq "tree" && $file_name !~ m
|/$|) {
3173 # require explicit support from the UA if we are to send the page as
3174 # 'application/xhtml+xml', otherwise send it as plain old 'text/html'.
3175 # we have to do this because MSIE sometimes globs '*/*', pretending to
3176 # support xhtml+xml but choking when it gets what it asked for.
3177 if (defined $cgi->http('HTTP_ACCEPT') &&
3178 $cgi->http('HTTP_ACCEPT') =~ m/(,|;|\s|^)application\/xhtml\
+xml
(,|;|\s
|$)/ &&
3179 $cgi->Accept('application/xhtml+xml') != 0) {
3180 $content_type = 'application/xhtml+xml';
3182 $content_type = 'text/html';
3184 print $cgi->header(-type
=>$content_type, -charset
=> 'utf-8',
3185 -status
=> $status, -expires
=> $expires);
3186 my $mod_perl_version = $ENV{'MOD_PERL'} ?
" $ENV{'MOD_PERL'}" : '';
3188 <?xml version="1.0" encoding="utf-8"?>
3189 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3190 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" lang="en-US">
3191 <!-- git web interface version $version, (C) 2005-2006, Kay Sievers <kay.sievers\@vrfy.org>, Christian Gierke -->
3192 <!-- git core binaries version $git_version -->
3194 <meta http-equiv="content-type" content="$content_type; charset=utf-8"/>
3195 <meta name="generator" content="gitweb/$version git/$git_version$mod_perl_version"/>
3196 <meta name="robots" content="index, nofollow"/>
3197 <title>$title</title>
3199 # the stylesheet, favicon etc urls won't work correctly with path_info
3200 # unless we set the appropriate base URL
3201 if ($ENV{'PATH_INFO'}) {
3202 print "<base href=\"".esc_url
($base_url)."\" />\n";
3204 # print out each stylesheet that exist, providing backwards capability
3205 # for those people who defined $stylesheet in a config file
3206 if (defined $stylesheet) {
3207 print '<link rel="stylesheet" type="text/css" href="'.$stylesheet.'"/>'."\n";
3209 foreach my $stylesheet (@stylesheets) {
3210 next unless $stylesheet;
3211 print '<link rel="stylesheet" type="text/css" href="'.$stylesheet.'"/>'."\n";
3214 if (defined $project) {
3215 my %href_params = get_feed_info
();
3216 if (!exists $href_params{'-title'}) {
3217 $href_params{'-title'} = 'log';
3220 foreach my $format qw(RSS Atom) {
3221 my $type = lc($format);
3223 '-rel' => 'alternate',
3224 '-title' => "$project - $href_params{'-title'} - $format feed",
3225 '-type' => "application/$type+xml"
3228 $href_params{'action'} = $type;
3229 $link_attr{'-href'} = href
(%href_params);
3231 "rel=\"$link_attr{'-rel'}\" ".
3232 "title=\"$link_attr{'-title'}\" ".
3233 "href=\"$link_attr{'-href'}\" ".
3234 "type=\"$link_attr{'-type'}\" ".
3237 $href_params{'extra_options'} = '--no-merges';
3238 $link_attr{'-href'} = href
(%href_params);
3239 $link_attr{'-title'} .= ' (no merges)';
3241 "rel=\"$link_attr{'-rel'}\" ".
3242 "title=\"$link_attr{'-title'}\" ".
3243 "href=\"$link_attr{'-href'}\" ".
3244 "type=\"$link_attr{'-type'}\" ".
3249 printf('<link rel="alternate" title="%s projects list" '.
3250 'href="%s" type="text/plain; charset=utf-8" />'."\n",
3251 $site_name, href
(project
=>undef, action
=>"project_index"));
3252 printf('<link rel="alternate" title="%s projects feeds" '.
3253 'href="%s" type="text/x-opml" />'."\n",
3254 $site_name, href
(project
=>undef, action
=>"opml"));
3256 if (defined $favicon) {
3257 print qq(<link rel
="shortcut icon" href
="$favicon" type
="image/png" />\n);
3263 if (defined $site_header && -f
$site_header) {
3264 insert_file
($site_header);
3267 print "<div class=\"page_header\">\n" .
3268 $cgi->a({-href
=> esc_url
($logo_url),
3269 -title
=> $logo_label},
3270 qq(<img src
="$logo" width
="72" height
="27" alt
="git" class="logo"/>));
3271 print $cgi->a({-href
=> esc_url
($home_link)}, $home_link_str) . " / ";
3272 if (defined $project) {
3273 print $cgi->a({-href
=> href
(action
=>"summary")}, esc_html
($project));
3274 if (defined $action) {
3281 my $have_search = gitweb_check_feature
('search');
3282 if (defined $project && $have_search) {
3283 if (!defined $searchtext) {
3287 if (defined $hash_base) {
3288 $search_hash = $hash_base;
3289 } elsif (defined $hash) {
3290 $search_hash = $hash;
3292 $search_hash = "HEAD";
3294 my $action = $my_uri;
3295 my $use_pathinfo = gitweb_check_feature
('pathinfo');
3296 if ($use_pathinfo) {
3297 $action .= "/".esc_url
($project);
3299 print $cgi->startform(-method
=> "get", -action
=> $action) .
3300 "<div class=\"search\">\n" .
3302 $cgi->input({-name
=>"p", -value
=>$project, -type
=>"hidden"}) . "\n") .
3303 $cgi->input({-name
=>"a", -value
=>"search", -type
=>"hidden"}) . "\n" .
3304 $cgi->input({-name
=>"h", -value
=>$search_hash, -type
=>"hidden"}) . "\n" .
3305 $cgi->popup_menu(-name
=> 'st', -default => 'commit',
3306 -values => ['commit', 'grep', 'author', 'committer', 'pickaxe']) .
3307 $cgi->sup($cgi->a({-href
=> href
(action
=>"search_help")}, "?")) .
3309 $cgi->textfield(-name
=> "s", -value
=> $searchtext) . "\n" .
3310 "<span title=\"Extended regular expression\">" .
3311 $cgi->checkbox(-name
=> 'sr', -value
=> 1, -label
=> 're',
3312 -checked
=> $search_use_regexp) .
3315 $cgi->end_form() . "\n";
3319 sub git_footer_html
{
3320 my $feed_class = 'rss_logo';
3322 print "<div class=\"page_footer\">\n";
3323 if (defined $project) {
3324 my $descr = git_get_project_description
($project);
3325 if (defined $descr) {
3326 print "<div class=\"page_footer_text\">" . esc_html
($descr) . "</div>\n";
3329 my %href_params = get_feed_info
();
3330 if (!%href_params) {
3331 $feed_class .= ' generic';
3333 $href_params{'-title'} ||= 'log';
3335 foreach my $format qw(RSS Atom) {
3336 $href_params{'action'} = lc($format);
3337 print $cgi->a({-href
=> href
(%href_params),
3338 -title
=> "$href_params{'-title'} $format feed",
3339 -class => $feed_class}, $format)."\n";
3343 print $cgi->a({-href
=> href
(project
=>undef, action
=>"opml"),
3344 -class => $feed_class}, "OPML") . " ";
3345 print $cgi->a({-href
=> href
(project
=>undef, action
=>"project_index"),
3346 -class => $feed_class}, "TXT") . "\n";
3348 print "</div>\n"; # class="page_footer"
3350 if (defined $t0 && gitweb_check_feature
('timed')) {
3351 print "<div id=\"generating_info\">\n";
3352 print 'This page took '.
3353 '<span id="generating_time" class="time_span">'.
3354 Time
::HiRes
::tv_interval
($t0, [Time
::HiRes
::gettimeofday
()]).
3357 '<span id="generating_cmd">'.
3358 $number_of_git_cmds.
3359 '</span> git commands '.
3361 print "</div>\n"; # class="page_footer"
3364 if (defined $site_footer && -f
$site_footer) {
3365 insert_file
($site_footer);
3368 print qq!<script type
="text/javascript" src
="$javascript"></script
>\n!;
3369 if (defined $action &&
3370 $action eq 'blame_incremental') {
3371 print qq!<script type
="text/javascript">\n!.
3372 qq!startBlame
("!. href(action=>"blame_data
", -replay=>1) .qq!",\n!.
3373 qq! "!. href() .qq!");\n!.
3375 } elsif (gitweb_check_feature
('javascript-actions')) {
3376 print qq!<script type
="text/javascript">\n!.
3377 qq!window
.onload
= fixLinks
;\n!.
3385 # die_error(<http_status_code>, <error_message>)
3386 # Example: die_error(404, 'Hash not found')
3387 # By convention, use the following status codes (as defined in RFC 2616):
3388 # 400: Invalid or missing CGI parameters, or
3389 # requested object exists but has wrong type.
3390 # 403: Requested feature (like "pickaxe" or "snapshot") not enabled on
3391 # this server or project.
3392 # 404: Requested object/revision/project doesn't exist.
3393 # 500: The server isn't configured properly, or
3394 # an internal error occurred (e.g. failed assertions caused by bugs), or
3395 # an unknown error occurred (e.g. the git binary died unexpectedly).
3396 # 503: The server is currently unavailable (because it is overloaded,
3397 # or down for maintenance). Generally, this is a temporary state.
3399 my $status = shift || 500;
3400 my $error = shift || "Internal server error";
3403 my %http_responses = (
3404 400 => '400 Bad Request',
3405 403 => '403 Forbidden',
3406 404 => '404 Not Found',
3407 500 => '500 Internal Server Error',
3408 503 => '503 Service Unavailable',
3410 git_header_html
($http_responses{$status});
3412 <div class="page_body">
3417 if (defined $extra) {
3427 ## ----------------------------------------------------------------------
3428 ## functions printing or outputting HTML: navigation
3430 sub git_print_page_nav
{
3431 my ($current, $suppress, $head, $treehead, $treebase, $extra) = @_;
3432 $extra = '' if !defined $extra; # pager or formats
3434 my @navs = qw(summary shortlog log commit commitdiff tree);
3436 @navs = grep { $_ ne $suppress } @navs;
3439 my %arg = map { $_ => {action
=>$_} } @navs;
3440 if (defined $head) {
3441 for (qw(commit commitdiff)) {
3442 $arg{$_}{'hash'} = $head;
3444 if ($current =~ m/^(tree | log | shortlog | commit | commitdiff | search)$/x) {
3445 for (qw(shortlog log)) {
3446 $arg{$_}{'hash'} = $head;
3451 $arg{'tree'}{'hash'} = $treehead if defined $treehead;
3452 $arg{'tree'}{'hash_base'} = $treebase if defined $treebase;
3454 my @actions = gitweb_get_feature
('actions');
3457 'n' => $project, # project name
3458 'f' => $git_dir, # project path within filesystem
3459 'h' => $treehead || '', # current hash ('h' parameter)
3460 'b' => $treebase || '', # hash base ('hb' parameter)
3463 my ($label, $link, $pos) = splice(@actions,0,3);
3465 @navs = map { $_ eq $pos ?
($_, $label) : $_ } @navs;
3467 $link =~ s/%([%nfhb])/$repl{$1}/g;
3468 $arg{$label}{'_href'} = $link;
3471 print "<div class=\"page_nav\">\n" .
3473 map { $_ eq $current ?
3474 $_ : $cgi->a({-href
=> ($arg{$_}{_href
} ?
$arg{$_}{_href
} : href
(%{$arg{$_}}))}, "$_")
3476 print "<br/>\n$extra<br/>\n" .
3480 sub format_paging_nav
{
3481 my ($action, $page, $has_next_link) = @_;
3487 $cgi->a({-href
=> href
(-replay
=>1, page
=>undef)}, "first") .
3489 $cgi->a({-href
=> href
(-replay
=>1, page
=>$page-1),
3490 -accesskey
=> "p", -title
=> "Alt-p"}, "prev");
3492 $paging_nav .= "first ⋅ prev";
3495 if ($has_next_link) {
3496 $paging_nav .= " ⋅ " .
3497 $cgi->a({-href
=> href
(-replay
=>1, page
=>$page+1),
3498 -accesskey
=> "n", -title
=> "Alt-n"}, "next");
3500 $paging_nav .= " ⋅ next";
3506 ## ......................................................................
3507 ## functions printing or outputting HTML: div
3509 sub git_print_header_div
{
3510 my ($action, $title, $hash, $hash_base) = @_;
3513 $args{'action'} = $action;
3514 $args{'hash'} = $hash if $hash;
3515 $args{'hash_base'} = $hash_base if $hash_base;
3517 print "<div class=\"header\">\n" .
3518 $cgi->a({-href
=> href
(%args), -class => "title"},
3519 $title ?
$title : $action) .
3523 sub print_local_time
{
3524 print format_local_time
(@_);
3527 sub format_local_time
{
3530 if ($date{'hour_local'} < 6) {
3531 $localtime .= sprintf(" (<span class=\"atnight\">%02d:%02d</span> %s)",
3532 $date{'hour_local'}, $date{'minute_local'}, $date{'tz_local'});
3534 $localtime .= sprintf(" (%02d:%02d %s)",
3535 $date{'hour_local'}, $date{'minute_local'}, $date{'tz_local'});
3541 # Outputs the author name and date in long form
3542 sub git_print_authorship
{
3545 my $tag = $opts{-tag
} || 'div';
3546 my $author = $co->{'author_name'};
3548 my %ad = parse_date
($co->{'author_epoch'}, $co->{'author_tz'});
3549 print "<$tag class=\"author_date\">" .
3550 format_search_author
($author, "author", esc_html
($author)) .
3552 print_local_time
(%ad) if ($opts{-localtime});
3553 print "]" . git_get_avatar
($co->{'author_email'}, -pad_before
=> 1)
3557 # Outputs table rows containing the full author or committer information,
3558 # in the format expected for 'commit' view (& similia).
3559 # Parameters are a commit hash reference, followed by the list of people
3560 # to output information for. If the list is empty it defalts to both
3561 # author and committer.
3562 sub git_print_authorship_rows
{
3564 # too bad we can't use @people = @_ || ('author', 'committer')
3566 @people = ('author', 'committer') unless @people;
3567 foreach my $who (@people) {
3568 my %wd = parse_date
($co->{"${who}_epoch"}, $co->{"${who}_tz"});
3569 print "<tr><td>$who</td><td>" .
3570 format_search_author
($co->{"${who}_name"}, $who,
3571 esc_html
($co->{"${who}_name"})) . " " .
3572 format_search_author
($co->{"${who}_email"}, $who,
3573 esc_html
("<" . $co->{"${who}_email"} . ">")) .
3574 "</td><td rowspan=\"2\">" .
3575 git_get_avatar
($co->{"${who}_email"}, -size
=> 'double') .
3578 "<td></td><td> $wd{'rfc2822'}";
3579 print_local_time
(%wd);
3585 sub git_print_page_path
{
3591 print "<div class=\"page_path\">";
3592 print $cgi->a({-href
=> href
(action
=>"tree", hash_base
=>$hb),
3593 -title
=> 'tree root'}, to_utf8
("[$project]"));
3595 if (defined $name) {
3596 my @dirname = split '/', $name;
3597 my $basename = pop @dirname;
3600 foreach my $dir (@dirname) {
3601 $fullname .= ($fullname ?
'/' : '') . $dir;
3602 print $cgi->a({-href
=> href
(action
=>"tree", file_name
=>$fullname,
3604 -title
=> $fullname}, esc_path
($dir));
3607 if (defined $type && $type eq 'blob') {
3608 print $cgi->a({-href
=> href
(action
=>"blob_plain", file_name
=>$file_name,
3610 -title
=> $name}, esc_path
($basename));
3611 } elsif (defined $type && $type eq 'tree') {
3612 print $cgi->a({-href
=> href
(action
=>"tree", file_name
=>$file_name,
3614 -title
=> $name}, esc_path
($basename));
3617 print esc_path
($basename);
3620 print "<br/></div>\n";
3627 if ($opts{'-remove_title'}) {
3628 # remove title, i.e. first line of log
3631 # remove leading empty lines
3632 while (defined $log->[0] && $log->[0] eq "") {
3639 foreach my $line (@
$log) {
3640 if ($line =~ m/^ *(signed[ \-]off[ \-]by[ :]|acked[ \-]by[ :]|cc[ :])/i) {
3643 if (! $opts{'-remove_signoff'}) {
3644 print "<span class=\"signoff\">" . esc_html
($line) . "</span><br/>\n";
3647 # remove signoff lines
3654 # print only one empty line
3655 # do not print empty line after signoff
3657 next if ($empty || $signoff);
3663 print format_log_line_html
($line) . "<br/>\n";
3666 if ($opts{'-final_empty_line'}) {
3667 # end with single empty line
3668 print "<br/>\n" unless $empty;
3672 # return link target (what link points to)
3673 sub git_get_link_target
{
3678 open my $fd, "-|", git_cmd
(), "cat-file", "blob", $hash
3682 $link_target = <$fd>;
3687 return $link_target;
3690 # given link target, and the directory (basedir) the link is in,
3691 # return target of link relative to top directory (top tree);
3692 # return undef if it is not possible (including absolute links).
3693 sub normalize_link_target
{
3694 my ($link_target, $basedir) = @_;
3696 # absolute symlinks (beginning with '/') cannot be normalized
3697 return if (substr($link_target, 0, 1) eq '/');
3699 # normalize link target to path from top (root) tree (dir)
3702 $path = $basedir . '/' . $link_target;
3704 # we are in top (root) tree (dir)
3705 $path = $link_target;
3708 # remove //, /./, and /../
3710 foreach my $part (split('/', $path)) {
3711 # discard '.' and ''
3712 next if (!$part || $part eq '.');
3714 if ($part eq '..') {
3718 # link leads outside repository (outside top dir)
3722 push @path_parts, $part;
3725 $path = join('/', @path_parts);
3730 # print tree entry (row of git_tree), but without encompassing <tr> element
3731 sub git_print_tree_entry
{
3732 my ($t, $basedir, $hash_base, $have_blame) = @_;
3735 $base_key{'hash_base'} = $hash_base if defined $hash_base;
3737 # The format of a table row is: mode list link. Where mode is
3738 # the mode of the entry, list is the name of the entry, an href,
3739 # and link is the action links of the entry.
3741 print "<td class=\"mode\">" . mode_str
($t->{'mode'}) . "</td>\n";
3742 if (exists $t->{'size'}) {
3743 print "<td class=\"size\">$t->{'size'}</td>\n";
3745 if ($t->{'type'} eq "blob") {
3746 print "<td class=\"list\">" .
3747 $cgi->a({-href
=> href
(action
=>"blob", hash
=>$t->{'hash'},
3748 file_name
=>"$basedir$t->{'name'}", %base_key),
3749 -class => "list"}, esc_path
($t->{'name'}));
3750 if (S_ISLNK
(oct $t->{'mode'})) {
3751 my $link_target = git_get_link_target
($t->{'hash'});
3753 my $norm_target = normalize_link_target
($link_target, $basedir);
3754 if (defined $norm_target) {
3756 $cgi->a({-href
=> href
(action
=>"object", hash_base
=>$hash_base,
3757 file_name
=>$norm_target),
3758 -title
=> $norm_target}, esc_path
($link_target));
3760 print " -> " . esc_path
($link_target);
3765 print "<td class=\"link\">";
3766 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$t->{'hash'},
3767 file_name
=>"$basedir$t->{'name'}", %base_key)},
3771 $cgi->a({-href
=> href
(action
=>"blame", hash
=>$t->{'hash'},
3772 file_name
=>"$basedir$t->{'name'}", %base_key)},
3775 if (defined $hash_base) {
3777 $cgi->a({-href
=> href
(action
=>"history", hash_base
=>$hash_base,
3778 hash
=>$t->{'hash'}, file_name
=>"$basedir$t->{'name'}")},
3782 $cgi->a({-href
=> href
(action
=>"blob_plain", hash_base
=>$hash_base,
3783 file_name
=>"$basedir$t->{'name'}")},
3787 } elsif ($t->{'type'} eq "tree") {
3788 print "<td class=\"list\">";
3789 print $cgi->a({-href
=> href
(action
=>"tree", hash
=>$t->{'hash'},
3790 file_name
=>"$basedir$t->{'name'}",
3792 esc_path
($t->{'name'}));
3794 print "<td class=\"link\">";
3795 print $cgi->a({-href
=> href
(action
=>"tree", hash
=>$t->{'hash'},
3796 file_name
=>"$basedir$t->{'name'}",
3799 if (defined $hash_base) {
3801 $cgi->a({-href
=> href
(action
=>"history", hash_base
=>$hash_base,
3802 file_name
=>"$basedir$t->{'name'}")},
3807 # unknown object: we can only present history for it
3808 # (this includes 'commit' object, i.e. submodule support)
3809 print "<td class=\"list\">" .
3810 esc_path
($t->{'name'}) .
3812 print "<td class=\"link\">";
3813 if (defined $hash_base) {
3814 print $cgi->a({-href
=> href
(action
=>"history",
3815 hash_base
=>$hash_base,
3816 file_name
=>"$basedir$t->{'name'}")},
3823 ## ......................................................................
3824 ## functions printing large fragments of HTML
3826 # get pre-image filenames for merge (combined) diff
3827 sub fill_from_file_info
{
3828 my ($diff, @parents) = @_;
3830 $diff->{'from_file'} = [ ];
3831 $diff->{'from_file'}[$diff->{'nparents'} - 1] = undef;
3832 for (my $i = 0; $i < $diff->{'nparents'}; $i++) {
3833 if ($diff->{'status'}[$i] eq 'R' ||
3834 $diff->{'status'}[$i] eq 'C') {
3835 $diff->{'from_file'}[$i] =
3836 git_get_path_by_hash
($parents[$i], $diff->{'from_id'}[$i]);
3843 # is current raw difftree line of file deletion
3845 my $diffinfo = shift;
3847 return $diffinfo->{'to_id'} eq ('0' x
40);
3850 # does patch correspond to [previous] difftree raw line
3851 # $diffinfo - hashref of parsed raw diff format
3852 # $patchinfo - hashref of parsed patch diff format
3853 # (the same keys as in $diffinfo)
3854 sub is_patch_split
{
3855 my ($diffinfo, $patchinfo) = @_;
3857 return defined $diffinfo && defined $patchinfo
3858 && $diffinfo->{'to_file'} eq $patchinfo->{'to_file'};
3862 sub git_difftree_body
{
3863 my ($difftree, $hash, @parents) = @_;
3864 my ($parent) = $parents[0];
3865 my $have_blame = gitweb_check_feature
('blame');
3866 print "<div class=\"list_head\">\n";
3867 if ($#{$difftree} > 10) {
3868 print(($#{$difftree} + 1) . " files changed:\n");
3872 print "<table class=\"" .
3873 (@parents > 1 ?
"combined " : "") .
3876 # header only for combined diff in 'commitdiff' view
3877 my $has_header = @
$difftree && @parents > 1 && $action eq 'commitdiff';
3880 print "<thead><tr>\n" .
3881 "<th></th><th></th>\n"; # filename, patchN link
3882 for (my $i = 0; $i < @parents; $i++) {
3883 my $par = $parents[$i];
3885 $cgi->a({-href
=> href
(action
=>"commitdiff",
3886 hash
=>$hash, hash_parent
=>$par),
3887 -title
=> 'commitdiff to parent number ' .
3888 ($i+1) . ': ' . substr($par,0,7)},
3892 print "</tr></thead>\n<tbody>\n";
3897 foreach my $line (@
{$difftree}) {
3898 my $diff = parsed_difftree_line
($line);
3901 print "<tr class=\"dark\">\n";
3903 print "<tr class=\"light\">\n";
3907 if (exists $diff->{'nparents'}) { # combined diff
3909 fill_from_file_info
($diff, @parents)
3910 unless exists $diff->{'from_file'};
3912 if (!is_deleted
($diff)) {
3913 # file exists in the result (child) commit
3915 $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff->{'to_id'},
3916 file_name
=>$diff->{'to_file'},
3918 -class => "list"}, esc_path
($diff->{'to_file'})) .
3922 esc_path
($diff->{'to_file'}) .
3926 if ($action eq 'commitdiff') {
3929 print "<td class=\"link\">" .
3930 $cgi->a({-href
=> "#patch$patchno"}, "patch") .
3935 my $has_history = 0;
3936 my $not_deleted = 0;
3937 for (my $i = 0; $i < $diff->{'nparents'}; $i++) {
3938 my $hash_parent = $parents[$i];
3939 my $from_hash = $diff->{'from_id'}[$i];
3940 my $from_path = $diff->{'from_file'}[$i];
3941 my $status = $diff->{'status'}[$i];
3943 $has_history ||= ($status ne 'A');
3944 $not_deleted ||= ($status ne 'D');
3946 if ($status eq 'A') {
3947 print "<td class=\"link\" align=\"right\"> | </td>\n";
3948 } elsif ($status eq 'D') {
3949 print "<td class=\"link\">" .
3950 $cgi->a({-href
=> href
(action
=>"blob",
3953 file_name
=>$from_path)},
3957 if ($diff->{'to_id'} eq $from_hash) {
3958 print "<td class=\"link nochange\">";
3960 print "<td class=\"link\">";
3962 print $cgi->a({-href
=> href
(action
=>"blobdiff",
3963 hash
=>$diff->{'to_id'},
3964 hash_parent
=>$from_hash,
3966 hash_parent_base
=>$hash_parent,
3967 file_name
=>$diff->{'to_file'},
3968 file_parent
=>$from_path)},
3974 print "<td class=\"link\">";
3976 print $cgi->a({-href
=> href
(action
=>"blob",
3977 hash
=>$diff->{'to_id'},
3978 file_name
=>$diff->{'to_file'},
3981 print " | " if ($has_history);
3984 print $cgi->a({-href
=> href
(action
=>"history",
3985 file_name
=>$diff->{'to_file'},
3992 next; # instead of 'else' clause, to avoid extra indent
3994 # else ordinary diff
3996 my ($to_mode_oct, $to_mode_str, $to_file_type);
3997 my ($from_mode_oct, $from_mode_str, $from_file_type);
3998 if ($diff->{'to_mode'} ne ('0' x
6)) {
3999 $to_mode_oct = oct $diff->{'to_mode'};
4000 if (S_ISREG
($to_mode_oct)) { # only for regular file
4001 $to_mode_str = sprintf("%04o", $to_mode_oct & 0777); # permission bits
4003 $to_file_type = file_type
($diff->{'to_mode'});
4005 if ($diff->{'from_mode'} ne ('0' x
6)) {
4006 $from_mode_oct = oct $diff->{'from_mode'};
4007 if (S_ISREG
($to_mode_oct)) { # only for regular file
4008 $from_mode_str = sprintf("%04o", $from_mode_oct & 0777); # permission bits
4010 $from_file_type = file_type
($diff->{'from_mode'});
4013 if ($diff->{'status'} eq "A") { # created
4014 my $mode_chng = "<span class=\"file_status new\">[new $to_file_type";
4015 $mode_chng .= " with mode: $to_mode_str" if $to_mode_str;
4016 $mode_chng .= "]</span>";
4018 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff->{'to_id'},
4019 hash_base
=>$hash, file_name
=>$diff->{'file'}),
4020 -class => "list"}, esc_path
($diff->{'file'}));
4022 print "<td>$mode_chng</td>\n";
4023 print "<td class=\"link\">";
4024 if ($action eq 'commitdiff') {
4027 print $cgi->a({-href
=> "#patch$patchno"}, "patch");
4030 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff->{'to_id'},
4031 hash_base
=>$hash, file_name
=>$diff->{'file'})},
4035 } elsif ($diff->{'status'} eq "D") { # deleted
4036 my $mode_chng = "<span class=\"file_status deleted\">[deleted $from_file_type]</span>";
4038 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff->{'from_id'},
4039 hash_base
=>$parent, file_name
=>$diff->{'file'}),
4040 -class => "list"}, esc_path
($diff->{'file'}));
4042 print "<td>$mode_chng</td>\n";
4043 print "<td class=\"link\">";
4044 if ($action eq 'commitdiff') {
4047 print $cgi->a({-href
=> "#patch$patchno"}, "patch");
4050 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff->{'from_id'},
4051 hash_base
=>$parent, file_name
=>$diff->{'file'})},
4054 print $cgi->a({-href
=> href
(action
=>"blame", hash_base
=>$parent,
4055 file_name
=>$diff->{'file'})},
4058 print $cgi->a({-href
=> href
(action
=>"history", hash_base
=>$parent,
4059 file_name
=>$diff->{'file'})},
4063 } elsif ($diff->{'status'} eq "M" || $diff->{'status'} eq "T") { # modified, or type changed
4064 my $mode_chnge = "";
4065 if ($diff->{'from_mode'} != $diff->{'to_mode'}) {
4066 $mode_chnge = "<span class=\"file_status mode_chnge\">[changed";
4067 if ($from_file_type ne $to_file_type) {
4068 $mode_chnge .= " from $from_file_type to $to_file_type";
4070 if (($from_mode_oct & 0777) != ($to_mode_oct & 0777)) {
4071 if ($from_mode_str && $to_mode_str) {
4072 $mode_chnge .= " mode: $from_mode_str->$to_mode_str";
4073 } elsif ($to_mode_str) {
4074 $mode_chnge .= " mode: $to_mode_str";
4077 $mode_chnge .= "]</span>\n";
4080 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff->{'to_id'},
4081 hash_base
=>$hash, file_name
=>$diff->{'file'}),
4082 -class => "list"}, esc_path
($diff->{'file'}));
4084 print "<td>$mode_chnge</td>\n";
4085 print "<td class=\"link\">";
4086 if ($action eq 'commitdiff') {
4089 print $cgi->a({-href
=> "#patch$patchno"}, "patch") .
4091 } elsif ($diff->{'to_id'} ne $diff->{'from_id'}) {
4092 # "commit" view and modified file (not onlu mode changed)
4093 print $cgi->a({-href
=> href
(action
=>"blobdiff",
4094 hash
=>$diff->{'to_id'}, hash_parent
=>$diff->{'from_id'},
4095 hash_base
=>$hash, hash_parent_base
=>$parent,
4096 file_name
=>$diff->{'file'})},
4100 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff->{'to_id'},
4101 hash_base
=>$hash, file_name
=>$diff->{'file'})},
4104 print $cgi->a({-href
=> href
(action
=>"blame", hash_base
=>$hash,
4105 file_name
=>$diff->{'file'})},
4108 print $cgi->a({-href
=> href
(action
=>"history", hash_base
=>$hash,
4109 file_name
=>$diff->{'file'})},
4113 } elsif ($diff->{'status'} eq "R" || $diff->{'status'} eq "C") { # renamed or copied
4114 my %status_name = ('R' => 'moved', 'C' => 'copied');
4115 my $nstatus = $status_name{$diff->{'status'}};
4117 if ($diff->{'from_mode'} != $diff->{'to_mode'}) {
4118 # mode also for directories, so we cannot use $to_mode_str
4119 $mode_chng = sprintf(", mode: %04o", $to_mode_oct & 0777);
4122 $cgi->a({-href
=> href
(action
=>"blob", hash_base
=>$hash,
4123 hash
=>$diff->{'to_id'}, file_name
=>$diff->{'to_file'}),
4124 -class => "list"}, esc_path
($diff->{'to_file'})) . "</td>\n" .
4125 "<td><span class=\"file_status $nstatus\">[$nstatus from " .
4126 $cgi->a({-href
=> href
(action
=>"blob", hash_base
=>$parent,
4127 hash
=>$diff->{'from_id'}, file_name
=>$diff->{'from_file'}),
4128 -class => "list"}, esc_path
($diff->{'from_file'})) .
4129 " with " . (int $diff->{'similarity'}) . "% similarity$mode_chng]</span></td>\n" .
4130 "<td class=\"link\">";
4131 if ($action eq 'commitdiff') {
4134 print $cgi->a({-href
=> "#patch$patchno"}, "patch") .
4136 } elsif ($diff->{'to_id'} ne $diff->{'from_id'}) {
4137 # "commit" view and modified file (not only pure rename or copy)
4138 print $cgi->a({-href
=> href
(action
=>"blobdiff",
4139 hash
=>$diff->{'to_id'}, hash_parent
=>$diff->{'from_id'},
4140 hash_base
=>$hash, hash_parent_base
=>$parent,
4141 file_name
=>$diff->{'to_file'}, file_parent
=>$diff->{'from_file'})},
4145 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff->{'to_id'},
4146 hash_base
=>$parent, file_name
=>$diff->{'to_file'})},
4149 print $cgi->a({-href
=> href
(action
=>"blame", hash_base
=>$hash,
4150 file_name
=>$diff->{'to_file'})},
4153 print $cgi->a({-href
=> href
(action
=>"history", hash_base
=>$hash,
4154 file_name
=>$diff->{'to_file'})},
4158 } # we should not encounter Unmerged (U) or Unknown (X) status
4161 print "</tbody>" if $has_header;
4165 sub git_patchset_body
{
4166 my ($fd, $difftree, $hash, @hash_parents) = @_;
4167 my ($hash_parent) = $hash_parents[0];
4169 my $is_combined = (@hash_parents > 1);
4171 my $patch_number = 0;
4177 print "<div class=\"patchset\">\n";
4179 # skip to first patch
4180 while ($patch_line = <$fd>) {
4183 last if ($patch_line =~ m/^diff /);
4187 while ($patch_line) {
4189 # parse "git diff" header line
4190 if ($patch_line =~ m/^diff --git (\"(?:[^\\\"]*(?:\\.[^\\\"]*)*)\"|[^ "]*) (.*)$/) {
4191 # $1 is from_name, which we do not use
4192 $to_name = unquote
($2);
4193 $to_name =~ s!^b/!!;
4194 } elsif ($patch_line =~ m/^diff --(cc|combined) ("?.*"?)$/) {
4195 # $1 is 'cc' or 'combined', which we do not use
4196 $to_name = unquote
($2);
4201 # check if current patch belong to current raw line
4202 # and parse raw git-diff line if needed
4203 if (is_patch_split
($diffinfo, { 'to_file' => $to_name })) {
4204 # this is continuation of a split patch
4205 print "<div class=\"patch cont\">\n";
4207 # advance raw git-diff output if needed
4208 $patch_idx++ if defined $diffinfo;
4210 # read and prepare patch information
4211 $diffinfo = parsed_difftree_line
($difftree->[$patch_idx]);
4213 # compact combined diff output can have some patches skipped
4214 # find which patch (using pathname of result) we are at now;
4216 while ($to_name ne $diffinfo->{'to_file'}) {
4217 print "<div class=\"patch\" id=\"patch". ($patch_idx+1) ."\">\n" .
4218 format_diff_cc_simplified
($diffinfo, @hash_parents) .
4219 "</div>\n"; # class="patch"
4224 last if $patch_idx > $#$difftree;
4225 $diffinfo = parsed_difftree_line
($difftree->[$patch_idx]);
4229 # modifies %from, %to hashes
4230 parse_from_to_diffinfo
($diffinfo, \
%from, \
%to, @hash_parents);
4232 # this is first patch for raw difftree line with $patch_idx index
4233 # we index @$difftree array from 0, but number patches from 1
4234 print "<div class=\"patch\" id=\"patch". ($patch_idx+1) ."\">\n";
4238 #assert($patch_line =~ m/^diff /) if DEBUG;
4239 #assert($patch_line !~ m!$/$!) if DEBUG; # is chomp-ed
4241 # print "git diff" header
4242 print format_git_diff_header_line
($patch_line, $diffinfo,
4245 # print extended diff header
4246 print "<div class=\"diff extended_header\">\n";
4248 while ($patch_line = <$fd>) {
4251 last EXTENDED_HEADER
if ($patch_line =~ m/^--- |^diff /);
4253 print format_extended_diff_header_line
($patch_line, $diffinfo,
4256 print "</div>\n"; # class="diff extended_header"
4258 # from-file/to-file diff header
4259 if (! $patch_line) {
4260 print "</div>\n"; # class="patch"
4263 next PATCH
if ($patch_line =~ m/^diff /);
4264 #assert($patch_line =~ m/^---/) if DEBUG;
4266 my $last_patch_line = $patch_line;
4267 $patch_line = <$fd>;
4269 #assert($patch_line =~ m/^\+\+\+/) if DEBUG;
4271 print format_diff_from_to_header
($last_patch_line, $patch_line,
4272 $diffinfo, \
%from, \
%to,
4277 while ($patch_line = <$fd>) {
4280 next PATCH
if ($patch_line =~ m/^diff /);
4282 print format_diff_line
($patch_line, \
%from, \
%to);
4286 print "</div>\n"; # class="patch"
4289 # for compact combined (--cc) format, with chunk and patch simpliciaction
4290 # patchset might be empty, but there might be unprocessed raw lines
4291 for (++$patch_idx if $patch_number > 0;
4292 $patch_idx < @
$difftree;
4294 # read and prepare patch information
4295 $diffinfo = parsed_difftree_line
($difftree->[$patch_idx]);
4297 # generate anchor for "patch" links in difftree / whatchanged part
4298 print "<div class=\"patch\" id=\"patch". ($patch_idx+1) ."\">\n" .
4299 format_diff_cc_simplified
($diffinfo, @hash_parents) .
4300 "</div>\n"; # class="patch"
4305 if ($patch_number == 0) {
4306 if (@hash_parents > 1) {
4307 print "<div class=\"diff nodifferences\">Trivial merge</div>\n";
4309 print "<div class=\"diff nodifferences\">No differences found</div>\n";
4313 print "</div>\n"; # class="patchset"
4316 # . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
4318 # fills project list info (age, description, owner, forks) for each
4319 # project in the list, removing invalid projects from returned list
4320 # NOTE: modifies $projlist, but does not remove entries from it
4321 sub fill_project_list_info
{
4322 my ($projlist, $check_forks) = @_;
4325 my $show_ctags = gitweb_check_feature
('ctags');
4327 foreach my $pr (@
$projlist) {
4328 my (@activity) = git_get_last_activity
($pr->{'path'});
4329 unless (@activity) {
4332 ($pr->{'age'}, $pr->{'age_string'}) = @activity;
4333 if (!defined $pr->{'descr'}) {
4334 my $descr = git_get_project_description
($pr->{'path'}) || "";
4335 $descr = to_utf8
($descr);
4336 $pr->{'descr_long'} = $descr;
4337 $pr->{'descr'} = chop_str
($descr, $projects_list_description_width, 5);
4339 if (!defined $pr->{'owner'}) {
4340 $pr->{'owner'} = git_get_project_owner
("$pr->{'path'}") || "";
4343 my $pname = $pr->{'path'};
4344 if (($pname =~ s/\.git$//) &&
4345 ($pname !~ /\/$/) &&
4346 (-d
"$projectroot/$pname")) {
4347 $pr->{'forks'} = "-d $projectroot/$pname";
4352 $show_ctags and $pr->{'ctags'} = git_get_project_ctags
($pr->{'path'});
4353 push @projects, $pr;
4359 # print 'sort by' <th> element, generating 'sort by $name' replay link
4360 # if that order is not selected
4362 print format_sort_th
(@_);
4365 sub format_sort_th
{
4366 my ($name, $order, $header) = @_;
4368 $header ||= ucfirst($name);
4370 if ($order eq $name) {
4371 $sort_th .= "<th>$header</th>\n";
4373 $sort_th .= "<th>" .
4374 $cgi->a({-href
=> href
(-replay
=>1, order
=>$name),
4375 -class => "header"}, $header) .
4382 sub git_project_list_body
{
4383 # actually uses global variable $project
4384 my ($projlist, $order, $from, $to, $extra, $no_header) = @_;
4386 my $check_forks = gitweb_check_feature
('forks');
4387 my @projects = fill_project_list_info
($projlist, $check_forks);
4389 $order ||= $default_projects_order;
4390 $from = 0 unless defined $from;
4391 $to = $#projects if (!defined $to || $#projects < $to);
4394 project
=> { key
=> 'path', type
=> 'str' },
4395 descr
=> { key
=> 'descr_long', type
=> 'str' },
4396 owner
=> { key
=> 'owner', type
=> 'str' },
4397 age
=> { key
=> 'age', type
=> 'num' }
4399 my $oi = $order_info{$order};
4400 if ($oi->{'type'} eq 'str') {
4401 @projects = sort {$a->{$oi->{'key'}} cmp $b->{$oi->{'key'}}} @projects;
4403 @projects = sort {$a->{$oi->{'key'}} <=> $b->{$oi->{'key'}}} @projects;
4406 my $show_ctags = gitweb_check_feature
('ctags');
4409 foreach my $p (@projects) {
4410 foreach my $ct (keys %{$p->{'ctags'}}) {
4411 $ctags{$ct} += $p->{'ctags'}->{$ct};
4414 my $cloud = git_populate_project_tagcloud
(\
%ctags);
4415 print git_show_project_tagcloud
($cloud, 64);
4418 print "<table class=\"project_list\">\n";
4419 unless ($no_header) {
4422 print "<th></th>\n";
4424 print_sort_th
('project', $order, 'Project');
4425 print_sort_th
('descr', $order, 'Description');
4426 print_sort_th
('owner', $order, 'Owner');
4427 print_sort_th
('age', $order, 'Last Change');
4428 print "<th></th>\n" . # for links
4432 my $tagfilter = $cgi->param('by_tag');
4433 for (my $i = $from; $i <= $to; $i++) {
4434 my $pr = $projects[$i];
4436 next if $tagfilter and $show_ctags and not grep { lc $_ eq lc $tagfilter } keys %{$pr->{'ctags'}};
4437 next if $searchtext and not $pr->{'path'} =~ /$searchtext/
4438 and not $pr->{'descr_long'} =~ /$searchtext/;
4439 # Weed out forks or non-matching entries of search
4441 my $forkbase = $project; $forkbase ||= ''; $forkbase =~ s
#\.git$#/#;
4442 $forkbase="^$forkbase" if $forkbase;
4443 next if not $searchtext and not $tagfilter and $show_ctags
4444 and $pr->{'path'} =~ m
#$forkbase.*/.*#; # regexp-safe
4448 print "<tr class=\"dark\">\n";
4450 print "<tr class=\"light\">\n";
4455 if ($pr->{'forks'}) {
4456 print "<!-- $pr->{'forks'} -->\n";
4457 print $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"forks")}, "+");
4461 print "<td>" . $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"summary"),
4462 -class => "list"}, esc_html
($pr->{'path'})) . "</td>\n" .
4463 "<td>" . $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"summary"),
4464 -class => "list", -title
=> $pr->{'descr_long'}},
4465 esc_html
($pr->{'descr'})) . "</td>\n" .
4466 "<td><i>" . chop_and_escape_str
($pr->{'owner'}, 15) . "</i></td>\n";
4467 print "<td class=\"". age_class
($pr->{'age'}) . "\">" .
4468 (defined $pr->{'age_string'} ?
$pr->{'age_string'} : "No commits") . "</td>\n" .
4469 "<td class=\"link\">" .
4470 $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"summary")}, "summary") . " | " .
4471 $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"shortlog")}, "shortlog") . " | " .
4472 $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"log")}, "log") . " | " .
4473 $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"tree")}, "tree") .
4474 ($pr->{'forks'} ?
" | " . $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"forks")}, "forks") : '') .
4478 if (defined $extra) {
4481 print "<td></td>\n";
4483 print "<td colspan=\"5\">$extra</td>\n" .
4490 # uses global variable $project
4491 my ($commitlist, $from, $to, $refs, $extra) = @_;
4493 $from = 0 unless defined $from;
4494 $to = $#{$commitlist} if (!defined $to || $#{$commitlist} < $to);
4496 for (my $i = 0; $i <= $to; $i++) {
4497 my %co = %{$commitlist->[$i]};
4499 my $commit = $co{'id'};
4500 my $ref = format_ref_marker
($refs, $commit);
4501 my %ad = parse_date
($co{'author_epoch'});
4502 git_print_header_div
('commit',
4503 "<span class=\"age\">$co{'age_string'}</span>" .
4504 esc_html
($co{'title'}) . $ref,
4506 print "<div class=\"title_text\">\n" .
4507 "<div class=\"log_link\">\n" .
4508 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$commit)}, "commit") .
4510 $cgi->a({-href
=> href
(action
=>"commitdiff", hash
=>$commit)}, "commitdiff") .
4512 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$commit, hash_base
=>$commit)}, "tree") .
4515 git_print_authorship
(\
%co, -tag
=> 'span');
4516 print "<br/>\n</div>\n";
4518 print "<div class=\"log_body\">\n";
4519 git_print_log
($co{'comment'}, -final_empty_line
=> 1);
4523 print "<div class=\"page_nav\">\n";
4529 sub git_shortlog_body
{
4530 # uses global variable $project
4531 my ($commitlist, $from, $to, $refs, $extra) = @_;
4533 $from = 0 unless defined $from;
4534 $to = $#{$commitlist} if (!defined $to || $#{$commitlist} < $to);
4536 print "<table class=\"shortlog\">\n";
4538 for (my $i = $from; $i <= $to; $i++) {
4539 my %co = %{$commitlist->[$i]};
4540 my $commit = $co{'id'};
4541 my $ref = format_ref_marker
($refs, $commit);
4543 print "<tr class=\"dark\">\n";
4545 print "<tr class=\"light\">\n";
4548 # git_summary() used print "<td><i>$co{'age_string'}</i></td>\n" .
4549 print "<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n" .
4550 format_author_html
('td', \
%co, 10) . "<td>";
4551 print format_subject_html
($co{'title'}, $co{'title_short'},
4552 href
(action
=>"commit", hash
=>$commit), $ref);
4554 "<td class=\"link\">" .
4555 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$commit)}, "commit") . " | " .
4556 $cgi->a({-href
=> href
(action
=>"commitdiff", hash
=>$commit)}, "commitdiff") . " | " .
4557 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$commit, hash_base
=>$commit)}, "tree");
4558 my $snapshot_links = format_snapshot_links
($commit);
4559 if (defined $snapshot_links) {
4560 print " | " . $snapshot_links;
4565 if (defined $extra) {
4567 "<td colspan=\"4\">$extra</td>\n" .
4573 sub git_history_body
{
4574 # Warning: assumes constant type (blob or tree) during history
4575 my ($commitlist, $from, $to, $refs, $extra,
4576 $file_name, $file_hash, $ftype) = @_;
4578 $from = 0 unless defined $from;
4579 $to = $#{$commitlist} unless (defined $to && $to <= $#{$commitlist});
4581 print "<table class=\"history\">\n";
4583 for (my $i = $from; $i <= $to; $i++) {
4584 my %co = %{$commitlist->[$i]};
4588 my $commit = $co{'id'};
4590 my $ref = format_ref_marker
($refs, $commit);
4593 print "<tr class=\"dark\">\n";
4595 print "<tr class=\"light\">\n";
4598 print "<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n" .
4599 # shortlog: format_author_html('td', \%co, 10)
4600 format_author_html
('td', \
%co, 15, 3) . "<td>";
4601 # originally git_history used chop_str($co{'title'}, 50)
4602 print format_subject_html
($co{'title'}, $co{'title_short'},
4603 href
(action
=>"commit", hash
=>$commit), $ref);
4605 "<td class=\"link\">" .
4606 $cgi->a({-href
=> href
(action
=>$ftype, hash_base
=>$commit, file_name
=>$file_name)}, $ftype) . " | " .
4607 $cgi->a({-href
=> href
(action
=>"commitdiff", hash
=>$commit)}, "commitdiff");
4609 if ($ftype eq 'blob') {
4610 my $blob_current = $file_hash;
4611 my $blob_parent = git_get_hash_by_path
($commit, $file_name);
4612 if (defined $blob_current && defined $blob_parent &&
4613 $blob_current ne $blob_parent) {
4615 $cgi->a({-href
=> href
(action
=>"blobdiff",
4616 hash
=>$blob_current, hash_parent
=>$blob_parent,
4617 hash_base
=>$hash_base, hash_parent_base
=>$commit,
4618 file_name
=>$file_name)},
4625 if (defined $extra) {
4627 "<td colspan=\"4\">$extra</td>\n" .
4634 # uses global variable $project
4635 my ($taglist, $from, $to, $extra) = @_;
4636 $from = 0 unless defined $from;
4637 $to = $#{$taglist} if (!defined $to || $#{$taglist} < $to);
4639 print "<table class=\"tags\">\n";
4641 for (my $i = $from; $i <= $to; $i++) {
4642 my $entry = $taglist->[$i];
4644 my $comment = $tag{'subject'};
4646 if (defined $comment) {
4647 $comment_short = chop_str
($comment, 30, 5);
4650 print "<tr class=\"dark\">\n";
4652 print "<tr class=\"light\">\n";
4655 if (defined $tag{'age'}) {
4656 print "<td><i>$tag{'age'}</i></td>\n";
4658 print "<td></td>\n";
4661 $cgi->a({-href
=> href
(action
=>$tag{'reftype'}, hash
=>$tag{'refid'}),
4662 -class => "list name"}, esc_html
($tag{'name'})) .
4665 if (defined $comment) {
4666 print format_subject_html
($comment, $comment_short,
4667 href
(action
=>"tag", hash
=>$tag{'id'}));
4670 "<td class=\"selflink\">";
4671 if ($tag{'type'} eq "tag") {
4672 print $cgi->a({-href
=> href
(action
=>"tag", hash
=>$tag{'id'})}, "tag");
4677 "<td class=\"link\">" . " | " .
4678 $cgi->a({-href
=> href
(action
=>$tag{'reftype'}, hash
=>$tag{'refid'})}, $tag{'reftype'});
4679 if ($tag{'reftype'} eq "commit") {
4680 print " | " . $cgi->a({-href
=> href
(action
=>"shortlog", hash
=>$tag{'fullname'})}, "shortlog") .
4681 " | " . $cgi->a({-href
=> href
(action
=>"log", hash
=>$tag{'fullname'})}, "log");
4682 } elsif ($tag{'reftype'} eq "blob") {
4683 print " | " . $cgi->a({-href
=> href
(action
=>"blob_plain", hash
=>$tag{'refid'})}, "raw");
4688 if (defined $extra) {
4690 "<td colspan=\"5\">$extra</td>\n" .
4696 sub git_heads_body
{
4697 # uses global variable $project
4698 my ($headlist, $head, $from, $to, $extra) = @_;
4699 $from = 0 unless defined $from;
4700 $to = $#{$headlist} if (!defined $to || $#{$headlist} < $to);
4702 print "<table class=\"heads\">\n";
4704 for (my $i = $from; $i <= $to; $i++) {
4705 my $entry = $headlist->[$i];
4707 my $curr = $ref{'id'} eq $head;
4709 print "<tr class=\"dark\">\n";
4711 print "<tr class=\"light\">\n";
4714 print "<td><i>$ref{'age'}</i></td>\n" .
4715 ($curr ?
"<td class=\"current_head\">" : "<td>") .
4716 $cgi->a({-href
=> href
(action
=>"shortlog", hash
=>$ref{'fullname'}),
4717 -class => "list name"},esc_html
($ref{'name'})) .
4719 "<td class=\"link\">" .
4720 $cgi->a({-href
=> href
(action
=>"shortlog", hash
=>$ref{'fullname'})}, "shortlog") . " | " .
4721 $cgi->a({-href
=> href
(action
=>"log", hash
=>$ref{'fullname'})}, "log") . " | " .
4722 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$ref{'fullname'}, hash_base
=>$ref{'name'})}, "tree") .
4726 if (defined $extra) {
4728 "<td colspan=\"3\">$extra</td>\n" .
4734 sub git_search_grep_body
{
4735 my ($commitlist, $from, $to, $extra) = @_;
4736 $from = 0 unless defined $from;
4737 $to = $#{$commitlist} if (!defined $to || $#{$commitlist} < $to);
4739 print "<table class=\"commit_search\">\n";
4741 for (my $i = $from; $i <= $to; $i++) {
4742 my %co = %{$commitlist->[$i]};
4746 my $commit = $co{'id'};
4748 print "<tr class=\"dark\">\n";
4750 print "<tr class=\"light\">\n";
4753 print "<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n" .
4754 format_author_html
('td', \
%co, 15, 5) .
4756 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$co{'id'}),
4757 -class => "list subject"},
4758 chop_and_escape_str
($co{'title'}, 50) . "<br/>");
4759 my $comment = $co{'comment'};
4760 foreach my $line (@
$comment) {
4761 if ($line =~ m/^(.*?)($search_regexp)(.*)$/i) {
4762 my ($lead, $match, $trail) = ($1, $2, $3);
4763 $match = chop_str
($match, 70, 5, 'center');
4764 my $contextlen = int((80 - length($match))/2);
4765 $contextlen = 30 if ($contextlen > 30);
4766 $lead = chop_str
($lead, $contextlen, 10, 'left');
4767 $trail = chop_str
($trail, $contextlen, 10, 'right');
4769 $lead = esc_html
($lead);
4770 $match = esc_html
($match);
4771 $trail = esc_html
($trail);
4773 print "$lead<span class=\"match\">$match</span>$trail<br />";
4777 "<td class=\"link\">" .
4778 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$co{'id'})}, "commit") .
4780 $cgi->a({-href
=> href
(action
=>"commitdiff", hash
=>$co{'id'})}, "commitdiff") .
4782 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$co{'tree'}, hash_base
=>$co{'id'})}, "tree");
4786 if (defined $extra) {
4788 "<td colspan=\"3\">$extra</td>\n" .
4794 ## ======================================================================
4795 ## ======================================================================
4798 sub git_project_list
{
4799 my $order = $input_params{'order'};
4800 if (defined $order && $order !~ m/none|project|descr|owner|age/) {
4801 die_error
(400, "Unknown order parameter");
4804 my @list = git_get_projects_list
();
4806 die_error
(404, "No projects found");
4810 if (defined $home_text && -f
$home_text) {
4811 print "<div class=\"index_include\">\n";
4812 insert_file
($home_text);
4815 print $cgi->startform(-method
=> "get") .
4816 "<p class=\"projsearch\">Search:\n" .
4817 $cgi->textfield(-name
=> "s", -value
=> $searchtext) . "\n" .
4819 $cgi->end_form() . "\n";
4820 git_project_list_body
(\
@list, $order);
4825 my $order = $input_params{'order'};
4826 if (defined $order && $order !~ m/none|project|descr|owner|age/) {
4827 die_error
(400, "Unknown order parameter");
4830 my @list = git_get_projects_list
($project);
4832 die_error
(404, "No forks found");
4836 git_print_page_nav
('','');
4837 git_print_header_div
('summary', "$project forks");
4838 git_project_list_body
(\
@list, $order);
4842 sub git_project_index
{
4843 my @projects = git_get_projects_list
($project);
4846 -type
=> 'text/plain',
4847 -charset
=> 'utf-8',
4848 -content_disposition
=> 'inline; filename="index.aux"');
4850 foreach my $pr (@projects) {
4851 if (!exists $pr->{'owner'}) {
4852 $pr->{'owner'} = git_get_project_owner
("$pr->{'path'}");
4855 my ($path, $owner) = ($pr->{'path'}, $pr->{'owner'});
4856 # quote as in CGI::Util::encode, but keep the slash, and use '+' for ' '
4857 $path =~ s/([^a-zA-Z0-9_.\-\/ ])/sprintf
("%%%02X", ord($1))/eg
;
4858 $owner =~ s/([^a-zA-Z0-9_.\-\/ ])/sprintf
("%%%02X", ord($1))/eg
;
4862 print "$path $owner\n";
4867 my $descr = git_get_project_description
($project) || "none";
4868 my %co = parse_commit
("HEAD");
4869 my %cd = %co ? parse_date
($co{'committer_epoch'}, $co{'committer_tz'}) : ();
4870 my $head = $co{'id'};
4872 my $owner = git_get_project_owner
($project);
4874 my $refs = git_get_references
();
4875 # These get_*_list functions return one more to allow us to see if
4876 # there are more ...
4877 my @taglist = git_get_tags_list
(16);
4878 my @headlist = git_get_heads_list
(16);
4880 my $check_forks = gitweb_check_feature
('forks');
4883 @forklist = git_get_projects_list
($project);
4887 git_print_page_nav
('summary','', $head);
4889 print "<div class=\"title\"> </div>\n";
4890 print "<table class=\"projects_list\">\n" .
4891 "<tr id=\"metadata_desc\"><td>description</td><td>" . esc_html
($descr) . "</td></tr>\n" .
4892 "<tr id=\"metadata_owner\"><td>owner</td><td>" . esc_html
($owner) . "</td></tr>\n";
4893 if (defined $cd{'rfc2822'}) {
4894 print "<tr id=\"metadata_lchange\"><td>last change</td><td>$cd{'rfc2822'}</td></tr>\n";
4897 # use per project git URL list in $projectroot/$project/cloneurl
4898 # or make project git URL from git base URL and project name
4899 my $url_tag = "URL";
4900 my @url_list = git_get_project_url_list
($project);
4901 @url_list = map { "$_/$project" } @git_base_url_list unless @url_list;
4902 foreach my $git_url (@url_list) {
4903 next unless $git_url;
4904 print "<tr class=\"metadata_url\"><td>$url_tag</td><td>$git_url</td></tr>\n";
4909 my $show_ctags = gitweb_check_feature
('ctags');
4911 my $ctags = git_get_project_ctags
($project);
4912 my $cloud = git_populate_project_tagcloud
($ctags);
4913 print "<tr id=\"metadata_ctags\"><td>Content tags:<br />";
4914 print "</td>\n<td>" unless %$ctags;
4915 print "<form action=\"$show_ctags\" method=\"post\"><input type=\"hidden\" name=\"p\" value=\"$project\" />Add: <input type=\"text\" name=\"t\" size=\"8\" /></form>";
4916 print "</td>\n<td>" if %$ctags;
4917 print git_show_project_tagcloud
($cloud, 48);
4923 # If XSS prevention is on, we don't include README.html.
4924 # TODO: Allow a readme in some safe format.
4925 if (!$prevent_xss && -s
"$projectroot/$project/README.html") {
4926 print "<div class=\"title\">readme</div>\n" .
4927 "<div class=\"readme\">\n";
4928 insert_file
("$projectroot/$project/README.html");
4929 print "\n</div>\n"; # class="readme"
4932 # we need to request one more than 16 (0..15) to check if
4934 my @commitlist = $head ? parse_commits
($head, 17) : ();
4936 git_print_header_div
('shortlog');
4937 git_shortlog_body
(\
@commitlist, 0, 15, $refs,
4938 $#commitlist <= 15 ?
undef :
4939 $cgi->a({-href
=> href
(action
=>"shortlog")}, "..."));
4943 git_print_header_div
('tags');
4944 git_tags_body
(\
@taglist, 0, 15,
4945 $#taglist <= 15 ?
undef :
4946 $cgi->a({-href
=> href
(action
=>"tags")}, "..."));
4950 git_print_header_div
('heads');
4951 git_heads_body
(\
@headlist, $head, 0, 15,
4952 $#headlist <= 15 ?
undef :
4953 $cgi->a({-href
=> href
(action
=>"heads")}, "..."));
4957 git_print_header_div
('forks');
4958 git_project_list_body
(\
@forklist, 'age', 0, 15,
4959 $#forklist <= 15 ?
undef :
4960 $cgi->a({-href
=> href
(action
=>"forks")}, "..."),
4968 my $head = git_get_head_hash
($project);
4970 git_print_page_nav
('','', $head,undef,$head);
4971 my %tag = parse_tag
($hash);
4974 die_error
(404, "Unknown tag object");
4977 git_print_header_div
('commit', esc_html
($tag{'name'}), $hash);
4978 print "<div class=\"title_text\">\n" .
4979 "<table class=\"object_header\">\n" .
4981 "<td>object</td>\n" .
4982 "<td>" . $cgi->a({-class => "list", -href
=> href
(action
=>$tag{'type'}, hash
=>$tag{'object'})},
4983 $tag{'object'}) . "</td>\n" .
4984 "<td class=\"link\">" . $cgi->a({-href
=> href
(action
=>$tag{'type'}, hash
=>$tag{'object'})},
4985 $tag{'type'}) . "</td>\n" .
4987 if (defined($tag{'author'})) {
4988 git_print_authorship_rows
(\
%tag, 'author');
4990 print "</table>\n\n" .
4992 print "<div class=\"page_body\">";
4993 my $comment = $tag{'comment'};
4994 foreach my $line (@
$comment) {
4996 print esc_html
($line, -nbsp
=>1) . "<br/>\n";
5002 sub git_blame_common
{
5003 my $format = shift || 'porcelain';
5004 if ($format eq 'porcelain' && $cgi->param('js')) {
5005 $format = 'incremental';
5006 $action = 'blame_incremental'; # for page title etc
5010 gitweb_check_feature
('blame')
5011 or die_error
(403, "Blame view not allowed");
5014 die_error
(400, "No file name given") unless $file_name;
5015 $hash_base ||= git_get_head_hash
($project);
5016 die_error
(404, "Couldn't find base commit") unless $hash_base;
5017 my %co = parse_commit
($hash_base)
5018 or die_error
(404, "Commit not found");
5020 if (!defined $hash) {
5021 $hash = git_get_hash_by_path
($hash_base, $file_name, "blob")
5022 or die_error
(404, "Error looking up file");
5024 $ftype = git_get_type
($hash);
5025 if ($ftype !~ "blob") {
5026 die_error
(400, "Object is not a blob");
5031 if ($format eq 'incremental') {
5032 # get file contents (as base)
5033 open $fd, "-|", git_cmd
(), 'cat-file', 'blob', $hash
5034 or die_error
(500, "Open git-cat-file failed");
5035 } elsif ($format eq 'data') {
5036 # run git-blame --incremental
5037 open $fd, "-|", git_cmd
(), "blame", "--incremental",
5038 $hash_base, "--", $file_name
5039 or die_error
(500, "Open git-blame --incremental failed");
5041 # run git-blame --porcelain
5042 open $fd, "-|", git_cmd
(), "blame", '-p',
5043 $hash_base, '--', $file_name
5044 or die_error
(500, "Open git-blame --porcelain failed");
5047 # incremental blame data returns early
5048 if ($format eq 'data') {
5050 -type
=>"text/plain", -charset
=> "utf-8",
5051 -status
=> "200 OK");
5052 local $| = 1; # output autoflush
5055 or print "ERROR $!\n";
5058 if (defined $t0 && gitweb_check_feature
('timed')) {
5060 Time
::HiRes
::tv_interval
($t0, [Time
::HiRes
::gettimeofday
()]).
5061 ' '.$number_of_git_cmds;
5071 $cgi->a({-href
=> href
(action
=>"blob", -replay
=>1)},
5074 if ($format eq 'incremental') {
5076 $cgi->a({-href
=> href
(action
=>"blame", javascript
=>0, -replay
=>1)},
5077 "blame") . " (non-incremental)";
5080 $cgi->a({-href
=> href
(action
=>"blame_incremental", -replay
=>1)},
5081 "blame") . " (incremental)";
5085 $cgi->a({-href
=> href
(action
=>"history", -replay
=>1)},
5088 $cgi->a({-href
=> href
(action
=>$action, file_name
=>$file_name)},
5090 git_print_page_nav
('','', $hash_base,$co{'tree'},$hash_base, $formats_nav);
5091 git_print_header_div
('commit', esc_html
($co{'title'}), $hash_base);
5092 git_print_page_path
($file_name, $ftype, $hash_base);
5095 if ($format eq 'incremental') {
5096 print "<noscript>\n<div class=\"error\"><center><b>\n".
5097 "This page requires JavaScript to run.\n Use ".
5098 $cgi->a({-href
=> href
(action
=>'blame',javascript
=>0,-replay
=>1)},
5101 "</b></center></div>\n</noscript>\n";
5103 print qq!<div id
="progress_bar" style
="width: 100%; background-color: yellow"></div
>\n!;
5106 print qq!<div
class="page_body">\n!;
5107 print qq!<div id
="progress_info">... / ...</div
>\n!
5108 if ($format eq 'incremental');
5109 print qq!<table id
="blame_table" class="blame" width
="100%">\n!.
5110 #qq!<col width="5.5em" /><col width="2.5em" /><col width="*" />\n!.
5112 qq!<tr
><th
>Commit
</th><th>Line</th
><th
>Data
</th></tr
>\n!.
5116 my @rev_color = qw(light dark);
5117 my $num_colors = scalar(@rev_color);
5118 my $current_color = 0;
5120 if ($format eq 'incremental') {
5121 my $color_class = $rev_color[$current_color];
5126 while (my $line = <$fd>) {
5130 print qq!<tr id
="l$linenr" class="$color_class">!.
5131 qq!<td
class="sha1"><a href
=""> </a></td
>!.
5132 qq!<td
class="linenr">!.
5133 qq!<a
class="linenr" href
="">$linenr</a></td
>!;
5134 print qq!<td
class="pre">! . esc_html
($line) . "</td>\n";
5138 } else { # porcelain, i.e. ordinary blame
5139 my %metainfo = (); # saves information about commits
5143 while (my $line = <$fd>) {
5145 # the header: <SHA-1> <src lineno> <dst lineno> [<lines in group>]
5146 # no <lines in group> for subsequent lines in group of lines
5147 my ($full_rev, $orig_lineno, $lineno, $group_size) =
5148 ($line =~ /^([0-9a-f]{40}) (\d+) (\d+)(?: (\d+))?$/);
5149 if (!exists $metainfo{$full_rev}) {
5150 $metainfo{$full_rev} = { 'nprevious' => 0 };
5152 my $meta = $metainfo{$full_rev};
5154 while ($data = <$fd>) {
5156 last if ($data =~ s/^\t//); # contents of line
5157 if ($data =~ /^(\S+)(?: (.*))?$/) {
5158 $meta->{$1} = $2 unless exists $meta->{$1};
5160 if ($data =~ /^previous /) {
5161 $meta->{'nprevious'}++;
5164 my $short_rev = substr($full_rev, 0, 8);
5165 my $author = $meta->{'author'};
5167 parse_date
($meta->{'author-time'}, $meta->{'author-tz'});
5168 my $date = $date{'iso-tz'};
5170 $current_color = ($current_color + 1) % $num_colors;
5172 my $tr_class = $rev_color[$current_color];
5173 $tr_class .= ' boundary' if (exists $meta->{'boundary'});
5174 $tr_class .= ' no-previous' if ($meta->{'nprevious'} == 0);
5175 $tr_class .= ' multiple-previous' if ($meta->{'nprevious'} > 1);
5176 print "<tr id=\"l$lineno\" class=\"$tr_class\">\n";
5178 print "<td class=\"sha1\"";
5179 print " title=\"". esc_html
($author) . ", $date\"";
5180 print " rowspan=\"$group_size\"" if ($group_size > 1);
5182 print $cgi->a({-href
=> href
(action
=>"commit",
5184 file_name
=>$file_name)},
5185 esc_html
($short_rev));
5186 if ($group_size >= 2) {
5187 my @author_initials = ($author =~ /\b([[:upper:]])\B/g);
5188 if (@author_initials) {
5190 esc_html
(join('', @author_initials));
5196 # 'previous' <sha1 of parent commit> <filename at commit>
5197 if (exists $meta->{'previous'} &&
5198 $meta->{'previous'} =~ /^([a-fA-F0-9]{40}) (.*)$/) {
5199 $meta->{'parent'} = $1;
5200 $meta->{'file_parent'} = unquote
($2);
5203 exists($meta->{'parent'}) ?
5204 $meta->{'parent'} : $full_rev;
5205 my $linenr_filename =
5206 exists($meta->{'file_parent'}) ?
5207 $meta->{'file_parent'} : unquote
($meta->{'filename'});
5208 my $blamed = href
(action
=> 'blame',
5209 file_name
=> $linenr_filename,
5210 hash_base
=> $linenr_commit);
5211 print "<td class=\"linenr\">";
5212 print $cgi->a({ -href
=> "$blamed#l$orig_lineno",
5213 -class => "linenr" },
5216 print "<td class=\"pre\">" . esc_html
($data) . "</td>\n";
5224 "</table>\n"; # class="blame"
5225 print "</div>\n"; # class="blame_body"
5227 or print "Reading blob failed\n";
5236 sub git_blame_incremental
{
5237 git_blame_common
('incremental');
5240 sub git_blame_data
{
5241 git_blame_common
('data');
5245 my $head = git_get_head_hash
($project);
5247 git_print_page_nav
('','', $head,undef,$head);
5248 git_print_header_div
('summary', $project);
5250 my @tagslist = git_get_tags_list
();
5252 git_tags_body
(\
@tagslist);
5258 my $head = git_get_head_hash
($project);
5260 git_print_page_nav
('','', $head,undef,$head);
5261 git_print_header_div
('summary', $project);
5263 my @headslist = git_get_heads_list
();
5265 git_heads_body
(\
@headslist, $head);
5270 sub git_blob_plain
{
5274 if (!defined $hash) {
5275 if (defined $file_name) {
5276 my $base = $hash_base || git_get_head_hash
($project);
5277 $hash = git_get_hash_by_path
($base, $file_name, "blob")
5278 or die_error
(404, "Cannot find file");
5280 die_error
(400, "No file name defined");
5282 } elsif ($hash =~ m/^[0-9a-fA-F]{40}$/) {
5283 # blobs defined by non-textual hash id's can be cached
5287 open my $fd, "-|", git_cmd
(), "cat-file", "blob", $hash
5288 or die_error
(500, "Open git-cat-file blob '$hash' failed");
5290 # content-type (can include charset)
5291 $type = blob_contenttype
($fd, $file_name, $type);
5293 # "save as" filename, even when no $file_name is given
5294 my $save_as = "$hash";
5295 if (defined $file_name) {
5296 $save_as = $file_name;
5297 } elsif ($type =~ m/^text\//) {
5301 # With XSS prevention on, blobs of all types except a few known safe
5302 # ones are served with "Content-Disposition: attachment" to make sure
5303 # they don't run in our security domain. For certain image types,
5304 # blob view writes an <img> tag referring to blob_plain view, and we
5305 # want to be sure not to break that by serving the image as an
5306 # attachment (though Firefox 3 doesn't seem to care).
5307 my $sandbox = $prevent_xss &&
5308 $type !~ m!^(?:text/plain|image/(?:gif|png|jpeg))$!;
5312 -expires
=> $expires,
5313 -content_disposition
=>
5314 ($sandbox ?
'attachment' : 'inline')
5315 . '; filename="' . $save_as . '"');
5317 binmode STDOUT
, ':raw';
5319 binmode STDOUT
, ':utf8'; # as set at the beginning of gitweb.cgi
5326 if (!defined $hash) {
5327 if (defined $file_name) {
5328 my $base = $hash_base || git_get_head_hash
($project);
5329 $hash = git_get_hash_by_path
($base, $file_name, "blob")
5330 or die_error
(404, "Cannot find file");
5332 die_error
(400, "No file name defined");
5334 } elsif ($hash =~ m/^[0-9a-fA-F]{40}$/) {
5335 # blobs defined by non-textual hash id's can be cached
5339 my $have_blame = gitweb_check_feature
('blame');
5340 open my $fd, "-|", git_cmd
(), "cat-file", "blob", $hash
5341 or die_error
(500, "Couldn't cat $file_name, $hash");
5342 my $mimetype = blob_mimetype
($fd, $file_name);
5343 if ($mimetype !~ m!^(?:text/|image/(?:gif|png|jpeg)$)! && -B
$fd) {
5345 return git_blob_plain
($mimetype);
5347 # we can have blame only for text/* mimetype
5348 $have_blame &&= ($mimetype =~ m!^text/!);
5350 git_header_html
(undef, $expires);
5351 my $formats_nav = '';
5352 if (defined $hash_base && (my %co = parse_commit
($hash_base))) {
5353 if (defined $file_name) {
5356 $cgi->a({-href
=> href
(action
=>"blame", -replay
=>1)},
5361 $cgi->a({-href
=> href
(action
=>"history", -replay
=>1)},
5364 $cgi->a({-href
=> href
(action
=>"blob_plain", -replay
=>1)},
5367 $cgi->a({-href
=> href
(action
=>"blob",
5368 hash_base
=>"HEAD", file_name
=>$file_name)},
5372 $cgi->a({-href
=> href
(action
=>"blob_plain", -replay
=>1)},
5375 git_print_page_nav
('','', $hash_base,$co{'tree'},$hash_base, $formats_nav);
5376 git_print_header_div
('commit', esc_html
($co{'title'}), $hash_base);
5378 print "<div class=\"page_nav\">\n" .
5379 "<br/><br/></div>\n" .
5380 "<div class=\"title\">$hash</div>\n";
5382 git_print_page_path
($file_name, "blob", $hash_base);
5383 print "<div class=\"page_body\">\n";
5384 if ($mimetype =~ m!^image/!) {
5385 print qq!<img type
="$mimetype"!;
5387 print qq! alt
="$file_name" title
="$file_name"!;
5390 href(action=>"blob_plain
", hash=>$hash,
5391 hash_base=>$hash_base, file_name=>$file_name) .
5395 while (my $line = <$fd>) {
5398 $line = untabify
($line);
5399 printf "<div class=\"pre\"><a id=\"l%i\" href=\"" . href
(-replay
=> 1)
5400 . "#l%i\" class=\"linenr\">%4i</a> %s</div>\n",
5401 $nr, $nr, $nr, esc_html
($line, -nbsp
=>1);
5405 or print "Reading blob failed.\n";
5411 if (!defined $hash_base) {
5412 $hash_base = "HEAD";
5414 if (!defined $hash) {
5415 if (defined $file_name) {
5416 $hash = git_get_hash_by_path
($hash_base, $file_name, "tree");
5421 die_error
(404, "No such tree") unless defined($hash);
5423 my $show_sizes = gitweb_check_feature
('show-sizes');
5424 my $have_blame = gitweb_check_feature
('blame');
5429 open my $fd, "-|", git_cmd
(), "ls-tree", '-z',
5430 ($show_sizes ?
'-l' : ()), @extra_options, $hash
5431 or die_error
(500, "Open git-ls-tree failed");
5432 @entries = map { chomp; $_ } <$fd>;
5434 or die_error
(404, "Reading tree failed");
5437 my $refs = git_get_references
();
5438 my $ref = format_ref_marker
($refs, $hash_base);
5441 if (defined $hash_base && (my %co = parse_commit
($hash_base))) {
5443 if (defined $file_name) {
5445 $cgi->a({-href
=> href
(action
=>"history", -replay
=>1)},
5447 $cgi->a({-href
=> href
(action
=>"tree",
5448 hash_base
=>"HEAD", file_name
=>$file_name)},
5451 my $snapshot_links = format_snapshot_links
($hash);
5452 if (defined $snapshot_links) {
5453 # FIXME: Should be available when we have no hash base as well.
5454 push @views_nav, $snapshot_links;
5456 git_print_page_nav
('tree','', $hash_base, undef, undef,
5457 join(' | ', @views_nav));
5458 git_print_header_div
('commit', esc_html
($co{'title'}) . $ref, $hash_base);
5461 print "<div class=\"page_nav\">\n";
5462 print "<br/><br/></div>\n";
5463 print "<div class=\"title\">$hash</div>\n";
5465 if (defined $file_name) {
5466 $basedir = $file_name;
5467 if ($basedir ne '' && substr($basedir, -1) ne '/') {
5470 git_print_page_path
($file_name, 'tree', $hash_base);
5472 print "<div class=\"page_body\">\n";
5473 print "<table class=\"tree\">\n";
5475 # '..' (top directory) link if possible
5476 if (defined $hash_base &&
5477 defined $file_name && $file_name =~ m![^/]+$!) {
5479 print "<tr class=\"dark\">\n";
5481 print "<tr class=\"light\">\n";
5485 my $up = $file_name;
5486 $up =~ s!/?[^/]+$!!;
5487 undef $up unless $up;
5488 # based on git_print_tree_entry
5489 print '<td class="mode">' . mode_str
('040000') . "</td>\n";
5490 print '<td class="size"> </td>'."\n" if $show_sizes;
5491 print '<td class="list">';
5492 print $cgi->a({-href
=> href
(action
=>"tree",
5493 hash_base
=>$hash_base,
5497 print "<td class=\"link\"></td>\n";
5501 foreach my $line (@entries) {
5502 my %t = parse_ls_tree_line
($line, -z
=> 1, -l
=> $show_sizes);
5505 print "<tr class=\"dark\">\n";
5507 print "<tr class=\"light\">\n";
5511 git_print_tree_entry
(\
%t, $basedir, $hash_base, $have_blame);
5515 print "</table>\n" .
5521 my ($project, $hash) = @_;
5523 # path/to/project.git -> project
5524 # path/to/project/.git -> project
5525 my $name = to_utf8
($project);
5526 $name =~ s
,([^/])/*\
.git
$,$1,;
5527 $name = basename
($name);
5529 $name =~ s/[[:cntrl:]]/?/g;
5532 if ($hash =~ /^[0-9a-fA-F]+$/) {
5533 # shorten SHA-1 hash
5534 my $full_hash = git_get_full_hash
($project, $hash);
5535 if ($full_hash =~ /^$hash/ && length($hash) > 7) {
5536 $ver = git_get_short_hash
($project, $hash);
5538 } elsif ($hash =~ m!^refs/tags/(.*)$!) {
5539 # tags don't need shortened SHA-1 hash
5542 # branches and other need shortened SHA-1 hash
5543 if ($hash =~ m!^refs/(?:heads|remotes)/(.*)$!) {
5546 $ver .= '-' . git_get_short_hash
($project, $hash);
5548 # in case of hierarchical branch names
5551 # name = project-version_string
5552 $name = "$name-$ver";
5554 return wantarray ?
($name, $name) : $name;
5558 my $format = $input_params{'snapshot_format'};
5559 if (!@snapshot_fmts) {
5560 die_error
(403, "Snapshots not allowed");
5562 # default to first supported snapshot format
5563 $format ||= $snapshot_fmts[0];
5564 if ($format !~ m/^[a-z0-9]+$/) {
5565 die_error
(400, "Invalid snapshot format parameter");
5566 } elsif (!exists($known_snapshot_formats{$format})) {
5567 die_error
(400, "Unknown snapshot format");
5568 } elsif ($known_snapshot_formats{$format}{'disabled'}) {
5569 die_error
(403, "Snapshot format not allowed");
5570 } elsif (!grep($_ eq $format, @snapshot_fmts)) {
5571 die_error
(403, "Unsupported snapshot format");
5574 my $type = git_get_type
("$hash^{}");
5576 die_error
(404, 'Object does not exist');
5577 } elsif ($type eq 'blob') {
5578 die_error
(400, 'Object is not a tree-ish');
5581 my ($name, $prefix) = snapshot_name
($project, $hash);
5582 my $filename = "$name$known_snapshot_formats{$format}{'suffix'}";
5583 my $cmd = quote_command
(
5584 git_cmd
(), 'archive',
5585 "--format=$known_snapshot_formats{$format}{'format'}",
5586 "--prefix=$prefix/", $hash);
5587 if (exists $known_snapshot_formats{$format}{'compressor'}) {
5588 $cmd .= ' | ' . quote_command
(@
{$known_snapshot_formats{$format}{'compressor'}});
5591 $filename =~ s/(["\\])/\\$1/g;
5593 -type
=> $known_snapshot_formats{$format}{'type'},
5594 -content_disposition
=> 'inline; filename="' . $filename . '"',
5595 -status
=> '200 OK');
5597 open my $fd, "-|", $cmd
5598 or die_error
(500, "Execute git-archive failed");
5599 binmode STDOUT
, ':raw';
5601 binmode STDOUT
, ':utf8'; # as set at the beginning of gitweb.cgi
5605 sub git_log_generic
{
5606 my ($fmt_name, $body_subr, $base, $parent, $file_name, $file_hash) = @_;
5608 my $head = git_get_head_hash
($project);
5609 if (!defined $base) {
5612 if (!defined $page) {
5615 my $refs = git_get_references
();
5617 my $commit_hash = $base;
5618 if (defined $parent) {
5619 $commit_hash = "$parent..$base";
5622 parse_commits
($commit_hash, 101, (100 * $page),
5623 defined $file_name ?
($file_name, "--full-history") : ());
5626 if (!defined $file_hash && defined $file_name) {
5627 # some commits could have deleted file in question,
5628 # and not have it in tree, but one of them has to have it
5629 for (my $i = 0; $i < @commitlist; $i++) {
5630 $file_hash = git_get_hash_by_path
($commitlist[$i]{'id'}, $file_name);
5631 last if defined $file_hash;
5634 if (defined $file_hash) {
5635 $ftype = git_get_type
($file_hash);
5637 if (defined $file_name && !defined $ftype) {
5638 die_error
(500, "Unknown type of object");
5641 if (defined $file_name) {
5642 %co = parse_commit
($base)
5643 or die_error
(404, "Unknown commit object");
5647 my $paging_nav = format_paging_nav
($fmt_name, $page, $#commitlist >= 100);
5649 if ($#commitlist >= 100) {
5651 $cgi->a({-href
=> href
(-replay
=>1, page
=>$page+1),
5652 -accesskey
=> "n", -title
=> "Alt-n"}, "next");
5654 my $patch_max = gitweb_get_feature
('patches');
5655 if ($patch_max && !defined $file_name) {
5656 if ($patch_max < 0 || @commitlist <= $patch_max) {
5657 $paging_nav .= " ⋅ " .
5658 $cgi->a({-href
=> href
(action
=>"patches", -replay
=>1)},
5664 git_print_page_nav
($fmt_name,'', $hash,$hash,$hash, $paging_nav);
5665 if (defined $file_name) {
5666 git_print_header_div
('commit', esc_html
($co{'title'}), $base);
5668 git_print_header_div
('summary', $project)
5670 git_print_page_path
($file_name, $ftype, $hash_base)
5671 if (defined $file_name);
5673 $body_subr->(\
@commitlist, 0, 99, $refs, $next_link,
5674 $file_name, $file_hash, $ftype);
5680 git_log_generic
('log', \
&git_log_body
,
5681 $hash, $hash_parent);
5685 $hash ||= $hash_base || "HEAD";
5686 my %co = parse_commit
($hash)
5687 or die_error
(404, "Unknown commit object");
5689 my $parent = $co{'parent'};
5690 my $parents = $co{'parents'}; # listref
5692 # we need to prepare $formats_nav before any parameter munging
5694 if (!defined $parent) {
5696 $formats_nav .= '(initial)';
5697 } elsif (@
$parents == 1) {
5698 # single parent commit
5701 $cgi->a({-href
=> href
(action
=>"commit",
5703 esc_html
(substr($parent, 0, 7))) .
5710 $cgi->a({-href
=> href
(action
=>"commit",
5712 esc_html
(substr($_, 0, 7)));
5716 if (gitweb_check_feature
('patches') && @
$parents <= 1) {
5717 $formats_nav .= " | " .
5718 $cgi->a({-href
=> href
(action
=>"patch", -replay
=>1)},
5722 if (!defined $parent) {
5726 open my $fd, "-|", git_cmd
(), "diff-tree", '-r', "--no-commit-id",
5728 (@
$parents <= 1 ?
$parent : '-c'),
5730 or die_error
(500, "Open git-diff-tree failed");
5731 @difftree = map { chomp; $_ } <$fd>;
5732 close $fd or die_error
(404, "Reading git-diff-tree failed");
5734 # non-textual hash id's can be cached
5736 if ($hash =~ m/^[0-9a-fA-F]{40}$/) {
5739 my $refs = git_get_references
();
5740 my $ref = format_ref_marker
($refs, $co{'id'});
5742 git_header_html
(undef, $expires);
5743 git_print_page_nav
('commit', '',
5744 $hash, $co{'tree'}, $hash,
5747 if (defined $co{'parent'}) {
5748 git_print_header_div
('commitdiff', esc_html
($co{'title'}) . $ref, $hash);
5750 git_print_header_div
('tree', esc_html
($co{'title'}) . $ref, $co{'tree'}, $hash);
5752 print "<div class=\"title_text\">\n" .
5753 "<table class=\"object_header\">\n";
5754 git_print_authorship_rows
(\
%co);
5755 print "<tr><td>commit</td><td class=\"sha1\">$co{'id'}</td></tr>\n";
5758 "<td class=\"sha1\">" .
5759 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$co{'tree'}, hash_base
=>$hash),
5760 class => "list"}, $co{'tree'}) .
5762 "<td class=\"link\">" .
5763 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$co{'tree'}, hash_base
=>$hash)},
5765 my $snapshot_links = format_snapshot_links
($hash);
5766 if (defined $snapshot_links) {
5767 print " | " . $snapshot_links;
5772 foreach my $par (@
$parents) {
5775 "<td class=\"sha1\">" .
5776 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$par),
5777 class => "list"}, $par) .
5779 "<td class=\"link\">" .
5780 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$par)}, "commit") .
5782 $cgi->a({-href
=> href
(action
=>"commitdiff", hash
=>$hash, hash_parent
=>$par)}, "diff") .
5789 print "<div class=\"page_body\">\n";
5790 git_print_log
($co{'comment'});
5793 git_difftree_body
(\
@difftree, $hash, @
$parents);
5799 # object is defined by:
5800 # - hash or hash_base alone
5801 # - hash_base and file_name
5804 # - hash or hash_base alone
5805 if ($hash || ($hash_base && !defined $file_name)) {
5806 my $object_id = $hash || $hash_base;
5808 open my $fd, "-|", quote_command
(
5809 git_cmd
(), 'cat-file', '-t', $object_id) . ' 2> /dev/null'
5810 or die_error
(404, "Object does not exist");
5814 or die_error
(404, "Object does not exist");
5816 # - hash_base and file_name
5817 } elsif ($hash_base && defined $file_name) {
5818 $file_name =~ s
,/+$,,;
5820 system(git_cmd
(), "cat-file", '-e', $hash_base) == 0
5821 or die_error
(404, "Base object does not exist");
5823 # here errors should not hapen
5824 open my $fd, "-|", git_cmd
(), "ls-tree", $hash_base, "--", $file_name
5825 or die_error
(500, "Open git-ls-tree failed");
5829 #'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'
5830 unless ($line && $line =~ m/^([0-9]+) (.+) ([0-9a-fA-F]{40})\t/) {
5831 die_error
(404, "File or directory for given base does not exist");
5836 die_error
(400, "Not enough information to find object");
5839 print $cgi->redirect(-uri
=> href
(action
=>$type, -full
=>1,
5840 hash
=>$hash, hash_base
=>$hash_base,
5841 file_name
=>$file_name),
5842 -status
=> '302 Found');
5846 my $format = shift || 'html';
5853 # preparing $fd and %diffinfo for git_patchset_body
5855 if (defined $hash_base && defined $hash_parent_base) {
5856 if (defined $file_name) {
5858 open $fd, "-|", git_cmd
(), "diff-tree", '-r', @diff_opts,
5859 $hash_parent_base, $hash_base,
5860 "--", (defined $file_parent ?
$file_parent : ()), $file_name
5861 or die_error
(500, "Open git-diff-tree failed");
5862 @difftree = map { chomp; $_ } <$fd>;
5864 or die_error
(404, "Reading git-diff-tree failed");
5866 or die_error
(404, "Blob diff not found");
5868 } elsif (defined $hash &&
5869 $hash =~ /[0-9a-fA-F]{40}/) {
5870 # try to find filename from $hash
5872 # read filtered raw output
5873 open $fd, "-|", git_cmd
(), "diff-tree", '-r', @diff_opts,
5874 $hash_parent_base, $hash_base, "--"
5875 or die_error
(500, "Open git-diff-tree failed");
5877 # ':100644 100644 03b21826... 3b93d5e7... M ls-files.c'
5879 grep { /^:[0-7]{6} [0-7]{6} [0-9a-fA-F]{40} $hash/ }
5880 map { chomp; $_ } <$fd>;
5882 or die_error
(404, "Reading git-diff-tree failed");
5884 or die_error
(404, "Blob diff not found");
5887 die_error
(400, "Missing one of the blob diff parameters");
5890 if (@difftree > 1) {
5891 die_error
(400, "Ambiguous blob diff specification");
5894 %diffinfo = parse_difftree_raw_line
($difftree[0]);
5895 $file_parent ||= $diffinfo{'from_file'} || $file_name;
5896 $file_name ||= $diffinfo{'to_file'};
5898 $hash_parent ||= $diffinfo{'from_id'};
5899 $hash ||= $diffinfo{'to_id'};
5901 # non-textual hash id's can be cached
5902 if ($hash_base =~ m/^[0-9a-fA-F]{40}$/ &&
5903 $hash_parent_base =~ m/^[0-9a-fA-F]{40}$/) {
5908 open $fd, "-|", git_cmd
(), "diff-tree", '-r', @diff_opts,
5909 '-p', ($format eq 'html' ?
"--full-index" : ()),
5910 $hash_parent_base, $hash_base,
5911 "--", (defined $file_parent ?
$file_parent : ()), $file_name
5912 or die_error
(500, "Open git-diff-tree failed");
5915 # old/legacy style URI -- not generated anymore since 1.4.3.
5917 die_error
('404 Not Found', "Missing one of the blob diff parameters")
5921 if ($format eq 'html') {
5923 $cgi->a({-href
=> href
(action
=>"blobdiff_plain", -replay
=>1)},
5925 git_header_html
(undef, $expires);
5926 if (defined $hash_base && (my %co = parse_commit
($hash_base))) {
5927 git_print_page_nav
('','', $hash_base,$co{'tree'},$hash_base, $formats_nav);
5928 git_print_header_div
('commit', esc_html
($co{'title'}), $hash_base);
5930 print "<div class=\"page_nav\"><br/>$formats_nav<br/></div>\n";
5931 print "<div class=\"title\">$hash vs $hash_parent</div>\n";
5933 if (defined $file_name) {
5934 git_print_page_path
($file_name, "blob", $hash_base);
5936 print "<div class=\"page_path\"></div>\n";
5939 } elsif ($format eq 'plain') {
5941 -type
=> 'text/plain',
5942 -charset
=> 'utf-8',
5943 -expires
=> $expires,
5944 -content_disposition
=> 'inline; filename="' . "$file_name" . '.patch"');
5946 print "X-Git-Url: " . $cgi->self_url() . "\n\n";
5949 die_error
(400, "Unknown blobdiff format");
5953 if ($format eq 'html') {
5954 print "<div class=\"page_body\">\n";
5956 git_patchset_body
($fd, [ \
%diffinfo ], $hash_base, $hash_parent_base);
5959 print "</div>\n"; # class="page_body"
5963 while (my $line = <$fd>) {
5964 $line =~ s!a/($hash|$hash_parent)!'a/'.esc_path($diffinfo{'from_file'})!eg;
5965 $line =~ s!b/($hash|$hash_parent)!'b/'.esc_path($diffinfo{'to_file'})!eg;
5969 last if $line =~ m!^\+\+\+!;
5977 sub git_blobdiff_plain
{
5978 git_blobdiff
('plain');
5981 sub git_commitdiff
{
5983 my $format = $params{-format
} || 'html';
5985 my ($patch_max) = gitweb_get_feature
('patches');
5986 if ($format eq 'patch') {
5987 die_error
(403, "Patch view not allowed") unless $patch_max;
5990 $hash ||= $hash_base || "HEAD";
5991 my %co = parse_commit
($hash)
5992 or die_error
(404, "Unknown commit object");
5994 # choose format for commitdiff for merge
5995 if (! defined $hash_parent && @
{$co{'parents'}} > 1) {
5996 $hash_parent = '--cc';
5998 # we need to prepare $formats_nav before almost any parameter munging
6000 if ($format eq 'html') {
6002 $cgi->a({-href
=> href
(action
=>"commitdiff_plain", -replay
=>1)},
6004 if ($patch_max && @
{$co{'parents'}} <= 1) {
6005 $formats_nav .= " | " .
6006 $cgi->a({-href
=> href
(action
=>"patch", -replay
=>1)},
6010 if (defined $hash_parent &&
6011 $hash_parent ne '-c' && $hash_parent ne '--cc') {
6012 # commitdiff with two commits given
6013 my $hash_parent_short = $hash_parent;
6014 if ($hash_parent =~ m/^[0-9a-fA-F]{40}$/) {
6015 $hash_parent_short = substr($hash_parent, 0, 7);
6019 for (my $i = 0; $i < @
{$co{'parents'}}; $i++) {
6020 if ($co{'parents'}[$i] eq $hash_parent) {
6021 $formats_nav .= ' parent ' . ($i+1);
6025 $formats_nav .= ': ' .
6026 $cgi->a({-href
=> href
(action
=>"commitdiff",
6027 hash
=>$hash_parent)},
6028 esc_html
($hash_parent_short)) .
6030 } elsif (!$co{'parent'}) {
6032 $formats_nav .= ' (initial)';
6033 } elsif (scalar @
{$co{'parents'}} == 1) {
6034 # single parent commit
6037 $cgi->a({-href
=> href
(action
=>"commitdiff",
6038 hash
=>$co{'parent'})},
6039 esc_html
(substr($co{'parent'}, 0, 7))) .
6043 if ($hash_parent eq '--cc') {
6044 $formats_nav .= ' | ' .
6045 $cgi->a({-href
=> href
(action
=>"commitdiff",
6046 hash
=>$hash, hash_parent
=>'-c')},
6048 } else { # $hash_parent eq '-c'
6049 $formats_nav .= ' | ' .
6050 $cgi->a({-href
=> href
(action
=>"commitdiff",
6051 hash
=>$hash, hash_parent
=>'--cc')},
6057 $cgi->a({-href
=> href
(action
=>"commitdiff",
6059 esc_html
(substr($_, 0, 7)));
6060 } @
{$co{'parents'}} ) .
6065 my $hash_parent_param = $hash_parent;
6066 if (!defined $hash_parent_param) {
6067 # --cc for multiple parents, --root for parentless
6068 $hash_parent_param =
6069 @
{$co{'parents'}} > 1 ?
'--cc' : $co{'parent'} || '--root';
6075 if ($format eq 'html') {
6076 open $fd, "-|", git_cmd
(), "diff-tree", '-r', @diff_opts,
6077 "--no-commit-id", "--patch-with-raw", "--full-index",
6078 $hash_parent_param, $hash, "--"
6079 or die_error
(500, "Open git-diff-tree failed");
6081 while (my $line = <$fd>) {
6083 # empty line ends raw part of diff-tree output
6085 push @difftree, scalar parse_difftree_raw_line
($line);
6088 } elsif ($format eq 'plain') {
6089 open $fd, "-|", git_cmd
(), "diff-tree", '-r', @diff_opts,
6090 '-p', $hash_parent_param, $hash, "--"
6091 or die_error
(500, "Open git-diff-tree failed");
6092 } elsif ($format eq 'patch') {
6093 # For commit ranges, we limit the output to the number of
6094 # patches specified in the 'patches' feature.
6095 # For single commits, we limit the output to a single patch,
6096 # diverging from the git-format-patch default.
6097 my @commit_spec = ();
6099 if ($patch_max > 0) {
6100 push @commit_spec, "-$patch_max";
6102 push @commit_spec, '-n', "$hash_parent..$hash";
6104 if ($params{-single
}) {
6105 push @commit_spec, '-1';
6107 if ($patch_max > 0) {
6108 push @commit_spec, "-$patch_max";
6110 push @commit_spec, "-n";
6112 push @commit_spec, '--root', $hash;
6114 open $fd, "-|", git_cmd
(), "format-patch", '--encoding=utf8',
6115 '--stdout', @commit_spec
6116 or die_error
(500, "Open git-format-patch failed");
6118 die_error
(400, "Unknown commitdiff format");
6121 # non-textual hash id's can be cached
6123 if ($hash =~ m/^[0-9a-fA-F]{40}$/) {
6127 # write commit message
6128 if ($format eq 'html') {
6129 my $refs = git_get_references
();
6130 my $ref = format_ref_marker
($refs, $co{'id'});
6132 git_header_html
(undef, $expires);
6133 git_print_page_nav
('commitdiff','', $hash,$co{'tree'},$hash, $formats_nav);
6134 git_print_header_div
('commit', esc_html
($co{'title'}) . $ref, $hash);
6135 print "<div class=\"title_text\">\n" .
6136 "<table class=\"object_header\">\n";
6137 git_print_authorship_rows
(\
%co);
6140 print "<div class=\"page_body\">\n";
6141 if (@
{$co{'comment'}} > 1) {
6142 print "<div class=\"log\">\n";
6143 git_print_log
($co{'comment'}, -final_empty_line
=> 1, -remove_title
=> 1);
6144 print "</div>\n"; # class="log"
6147 } elsif ($format eq 'plain') {
6148 my $refs = git_get_references
("tags");
6149 my $tagname = git_get_rev_name_tags
($hash);
6150 my $filename = basename
($project) . "-$hash.patch";
6153 -type
=> 'text/plain',
6154 -charset
=> 'utf-8',
6155 -expires
=> $expires,
6156 -content_disposition
=> 'inline; filename="' . "$filename" . '"');
6157 my %ad = parse_date
($co{'author_epoch'}, $co{'author_tz'});
6158 print "From: " . to_utf8
($co{'author'}) . "\n";
6159 print "Date: $ad{'rfc2822'} ($ad{'tz_local'})\n";
6160 print "Subject: " . to_utf8
($co{'title'}) . "\n";
6162 print "X-Git-Tag: $tagname\n" if $tagname;
6163 print "X-Git-Url: " . $cgi->self_url() . "\n\n";
6165 foreach my $line (@
{$co{'comment'}}) {
6166 print to_utf8
($line) . "\n";
6169 } elsif ($format eq 'patch') {
6170 my $filename = basename
($project) . "-$hash.patch";
6173 -type
=> 'text/plain',
6174 -charset
=> 'utf-8',
6175 -expires
=> $expires,
6176 -content_disposition
=> 'inline; filename="' . "$filename" . '"');
6180 if ($format eq 'html') {
6181 my $use_parents = !defined $hash_parent ||
6182 $hash_parent eq '-c' || $hash_parent eq '--cc';
6183 git_difftree_body
(\
@difftree, $hash,
6184 $use_parents ? @
{$co{'parents'}} : $hash_parent);
6187 git_patchset_body
($fd, \
@difftree, $hash,
6188 $use_parents ? @
{$co{'parents'}} : $hash_parent);
6190 print "</div>\n"; # class="page_body"
6193 } elsif ($format eq 'plain') {
6197 or print "Reading git-diff-tree failed\n";
6198 } elsif ($format eq 'patch') {
6202 or print "Reading git-format-patch failed\n";
6206 sub git_commitdiff_plain
{
6207 git_commitdiff
(-format
=> 'plain');
6210 # format-patch-style patches
6212 git_commitdiff
(-format
=> 'patch', -single
=> 1);
6216 git_commitdiff
(-format
=> 'patch');
6220 git_log_generic
('history', \
&git_history_body
,
6221 $hash_base, $hash_parent_base,
6226 gitweb_check_feature
('search') or die_error
(403, "Search is disabled");
6227 if (!defined $searchtext) {
6228 die_error
(400, "Text field is empty");
6230 if (!defined $hash) {
6231 $hash = git_get_head_hash
($project);
6233 my %co = parse_commit
($hash);
6235 die_error
(404, "Unknown commit object");
6237 if (!defined $page) {
6241 $searchtype ||= 'commit';
6242 if ($searchtype eq 'pickaxe') {
6243 # pickaxe may take all resources of your box and run for several minutes
6244 # with every query - so decide by yourself how public you make this feature
6245 gitweb_check_feature
('pickaxe')
6246 or die_error
(403, "Pickaxe is disabled");
6248 if ($searchtype eq 'grep') {
6249 gitweb_check_feature
('grep')
6250 or die_error
(403, "Grep is disabled");
6255 if ($searchtype eq 'commit' or $searchtype eq 'author' or $searchtype eq 'committer') {
6257 if ($searchtype eq 'commit') {
6258 $greptype = "--grep=";
6259 } elsif ($searchtype eq 'author') {
6260 $greptype = "--author=";
6261 } elsif ($searchtype eq 'committer') {
6262 $greptype = "--committer=";
6264 $greptype .= $searchtext;
6265 my @commitlist = parse_commits
($hash, 101, (100 * $page), undef,
6266 $greptype, '--regexp-ignore-case',
6267 $search_use_regexp ?
'--extended-regexp' : '--fixed-strings');
6269 my $paging_nav = '';
6272 $cgi->a({-href
=> href
(action
=>"search", hash
=>$hash,
6273 searchtext
=>$searchtext,
6274 searchtype
=>$searchtype)},
6276 $paging_nav .= " ⋅ " .
6277 $cgi->a({-href
=> href
(-replay
=>1, page
=>$page-1),
6278 -accesskey
=> "p", -title
=> "Alt-p"}, "prev");
6280 $paging_nav .= "first";
6281 $paging_nav .= " ⋅ prev";
6284 if ($#commitlist >= 100) {
6286 $cgi->a({-href
=> href
(-replay
=>1, page
=>$page+1),
6287 -accesskey
=> "n", -title
=> "Alt-n"}, "next");
6288 $paging_nav .= " ⋅ $next_link";
6290 $paging_nav .= " ⋅ next";
6293 if ($#commitlist >= 100) {
6296 git_print_page_nav
('','', $hash,$co{'tree'},$hash, $paging_nav);
6297 git_print_header_div
('commit', esc_html
($co{'title'}), $hash);
6298 git_search_grep_body
(\
@commitlist, 0, 99, $next_link);
6301 if ($searchtype eq 'pickaxe') {
6302 git_print_page_nav
('','', $hash,$co{'tree'},$hash);
6303 git_print_header_div
('commit', esc_html
($co{'title'}), $hash);
6305 print "<table class=\"pickaxe search\">\n";
6308 open my $fd, '-|', git_cmd
(), '--no-pager', 'log', @diff_opts,
6309 '--pretty=format:%H', '--no-abbrev', '--raw', "-S$searchtext",
6310 ($search_use_regexp ?
'--pickaxe-regex' : ());
6313 while (my $line = <$fd>) {
6317 my %set = parse_difftree_raw_line
($line);
6318 if (defined $set{'commit'}) {
6319 # finish previous commit
6322 "<td class=\"link\">" .
6323 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$co{'id'})}, "commit") .
6325 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$co{'tree'}, hash_base
=>$co{'id'})}, "tree");
6331 print "<tr class=\"dark\">\n";
6333 print "<tr class=\"light\">\n";
6336 %co = parse_commit
($set{'commit'});
6337 my $author = chop_and_escape_str
($co{'author_name'}, 15, 5);
6338 print "<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n" .
6339 "<td><i>$author</i></td>\n" .
6341 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$co{'id'}),
6342 -class => "list subject"},
6343 chop_and_escape_str
($co{'title'}, 50) . "<br/>");
6344 } elsif (defined $set{'to_id'}) {
6345 next if ($set{'to_id'} =~ m/^0{40}$/);
6347 print $cgi->a({-href
=> href
(action
=>"blob", hash_base
=>$co{'id'},
6348 hash
=>$set{'to_id'}, file_name
=>$set{'to_file'}),
6350 "<span class=\"match\">" . esc_path
($set{'file'}) . "</span>") .
6356 # finish last commit (warning: repetition!)
6359 "<td class=\"link\">" .
6360 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$co{'id'})}, "commit") .
6362 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$co{'tree'}, hash_base
=>$co{'id'})}, "tree");
6370 if ($searchtype eq 'grep') {
6371 git_print_page_nav
('','', $hash,$co{'tree'},$hash);
6372 git_print_header_div
('commit', esc_html
($co{'title'}), $hash);
6374 print "<table class=\"grep_search\">\n";
6378 open my $fd, "-|", git_cmd
(), 'grep', '-n',
6379 $search_use_regexp ?
('-E', '-i') : '-F',
6380 $searchtext, $co{'tree'};
6382 while (my $line = <$fd>) {
6384 my ($file, $lno, $ltext, $binary);
6385 last if ($matches++ > 1000);
6386 if ($line =~ /^Binary file (.+) matches$/) {
6390 (undef, $file, $lno, $ltext) = split(/:/, $line, 4);
6392 if ($file ne $lastfile) {
6393 $lastfile and print "</td></tr>\n";
6395 print "<tr class=\"dark\">\n";
6397 print "<tr class=\"light\">\n";
6399 print "<td class=\"list\">".
6400 $cgi->a({-href
=> href
(action
=>"blob", hash
=>$co{'hash'},
6401 file_name
=>"$file"),
6402 -class => "list"}, esc_path
($file));
6403 print "</td><td>\n";
6407 print "<div class=\"binary\">Binary file</div>\n";
6409 $ltext = untabify
($ltext);
6410 if ($ltext =~ m/^(.*)($search_regexp)(.*)$/i) {
6411 $ltext = esc_html
($1, -nbsp
=>1);
6412 $ltext .= '<span class="match">';
6413 $ltext .= esc_html
($2, -nbsp
=>1);
6414 $ltext .= '</span>';
6415 $ltext .= esc_html
($3, -nbsp
=>1);
6417 $ltext = esc_html
($ltext, -nbsp
=>1);
6419 print "<div class=\"pre\">" .
6420 $cgi->a({-href
=> href
(action
=>"blob", hash
=>$co{'hash'},
6421 file_name
=>"$file").'#l'.$lno,
6422 -class => "linenr"}, sprintf('%4i', $lno))
6423 . ' ' . $ltext . "</div>\n";
6427 print "</td></tr>\n";
6428 if ($matches > 1000) {
6429 print "<div class=\"diff nodifferences\">Too many matches, listing trimmed</div>\n";
6432 print "<div class=\"diff nodifferences\">No matches found</div>\n";
6441 sub git_search_help
{
6443 git_print_page_nav
('','', $hash,$hash,$hash);
6445 <p><strong>Pattern</strong> is by default a normal string that is matched precisely (but without
6446 regard to case, except in the case of pickaxe). However, when you check the <em>re</em> checkbox,
6447 the pattern entered is recognized as the POSIX extended
6448 <a href="http://en.wikipedia.org/wiki/Regular_expression">regular expression</a> (also case
6451 <dt><b>commit</b></dt>
6452 <dd>The commit messages and authorship information will be scanned for the given pattern.</dd>
6454 my $have_grep = gitweb_check_feature
('grep');
6457 <dt><b>grep</b></dt>
6458 <dd>All files in the currently selected tree (HEAD unless you are explicitly browsing
6459 a different one) are searched for the given pattern. On large trees, this search can take
6460 a while and put some strain on the server, so please use it with some consideration. Note that
6461 due to git-grep peculiarity, currently if regexp mode is turned off, the matches are
6462 case-sensitive.</dd>
6466 <dt><b>author</b></dt>
6467 <dd>Name and e-mail of the change author and date of birth of the patch will be scanned for the given pattern.</dd>
6468 <dt><b>committer</b></dt>
6469 <dd>Name and e-mail of the committer and date of commit will be scanned for the given pattern.</dd>
6471 my $have_pickaxe = gitweb_check_feature
('pickaxe');
6472 if ($have_pickaxe) {
6474 <dt><b>pickaxe</b></dt>
6475 <dd>All commits that caused the string to appear or disappear from any file (changes that
6476 added, removed or "modified" the string) will be listed. This search can take a while and
6477 takes a lot of strain on the server, so please use it wisely. Note that since you may be
6478 interested even in changes just changing the case as well, this search is case sensitive.</dd>
6486 git_log_generic
('shortlog', \
&git_shortlog_body
,
6487 $hash, $hash_parent);
6490 ## ......................................................................
6491 ## feeds (RSS, Atom; OPML)
6494 my $format = shift || 'atom';
6495 my $have_blame = gitweb_check_feature
('blame');
6497 # Atom: http://www.atomenabled.org/developers/syndication/
6498 # RSS: http://www.notestips.com/80256B3A007F2692/1/NAMO5P9UPQ
6499 if ($format ne 'rss' && $format ne 'atom') {
6500 die_error
(400, "Unknown web feed format");
6503 # log/feed of current (HEAD) branch, log of given branch, history of file/directory
6504 my $head = $hash || 'HEAD';
6505 my @commitlist = parse_commits
($head, 150, 0, $file_name);
6509 my $content_type = "application/$format+xml";
6510 if (defined $cgi->http('HTTP_ACCEPT') &&
6511 $cgi->Accept('text/xml') > $cgi->Accept($content_type)) {
6512 # browser (feed reader) prefers text/xml
6513 $content_type = 'text/xml';
6515 if (defined($commitlist[0])) {
6516 %latest_commit = %{$commitlist[0]};
6517 my $latest_epoch = $latest_commit{'committer_epoch'};
6518 %latest_date = parse_date
($latest_epoch);
6519 my $if_modified = $cgi->http('IF_MODIFIED_SINCE');
6520 if (defined $if_modified) {
6522 if (eval { require HTTP
::Date
; 1; }) {
6523 $since = HTTP
::Date
::str2time
($if_modified);
6524 } elsif (eval { require Time
::ParseDate
; 1; }) {
6525 $since = Time
::ParseDate
::parsedate
($if_modified, GMT
=> 1);
6527 if (defined $since && $latest_epoch <= $since) {
6529 -type
=> $content_type,
6530 -charset
=> 'utf-8',
6531 -last_modified
=> $latest_date{'rfc2822'},
6532 -status
=> '304 Not Modified');
6537 -type
=> $content_type,
6538 -charset
=> 'utf-8',
6539 -last_modified
=> $latest_date{'rfc2822'});
6542 -type
=> $content_type,
6543 -charset
=> 'utf-8');
6546 # Optimization: skip generating the body if client asks only
6547 # for Last-Modified date.
6548 return if ($cgi->request_method() eq 'HEAD');
6551 my $title = "$site_name - $project/$action";
6552 my $feed_type = 'log';
6553 if (defined $hash) {
6554 $title .= " - '$hash'";
6555 $feed_type = 'branch log';
6556 if (defined $file_name) {
6557 $title .= " :: $file_name";
6558 $feed_type = 'history';
6560 } elsif (defined $file_name) {
6561 $title .= " - $file_name";
6562 $feed_type = 'history';
6564 $title .= " $feed_type";
6565 my $descr = git_get_project_description
($project);
6566 if (defined $descr) {
6567 $descr = esc_html
($descr);
6569 $descr = "$project " .
6570 ($format eq 'rss' ?
'RSS' : 'Atom') .
6573 my $owner = git_get_project_owner
($project);
6574 $owner = esc_html
($owner);
6578 if (defined $file_name) {
6579 $alt_url = href
(-full
=>1, action
=>"history", hash
=>$hash, file_name
=>$file_name);
6580 } elsif (defined $hash) {
6581 $alt_url = href
(-full
=>1, action
=>"log", hash
=>$hash);
6583 $alt_url = href
(-full
=>1, action
=>"summary");
6585 print qq!<?xml version
="1.0" encoding
="utf-8"?
>\n!;
6586 if ($format eq 'rss') {
6588 <rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/">
6591 print "<title>$title</title>\n" .
6592 "<link>$alt_url</link>\n" .
6593 "<description>$descr</description>\n" .
6594 "<language>en</language>\n" .
6595 # project owner is responsible for 'editorial' content
6596 "<managingEditor>$owner</managingEditor>\n";
6597 if (defined $logo || defined $favicon) {
6598 # prefer the logo to the favicon, since RSS
6599 # doesn't allow both
6600 my $img = esc_url
($logo || $favicon);
6602 "<url>$img</url>\n" .
6603 "<title>$title</title>\n" .
6604 "<link>$alt_url</link>\n" .
6608 print "<pubDate>$latest_date{'rfc2822'}</pubDate>\n";
6609 print "<lastBuildDate>$latest_date{'rfc2822'}</lastBuildDate>\n";
6611 print "<generator>gitweb v.$version/$git_version</generator>\n";
6612 } elsif ($format eq 'atom') {
6614 <feed xmlns="http://www.w3.org/2005/Atom">
6616 print "<title>$title</title>\n" .
6617 "<subtitle>$descr</subtitle>\n" .
6618 '<link rel="alternate" type="text/html" href="' .
6619 $alt_url . '" />' . "\n" .
6620 '<link rel="self" type="' . $content_type . '" href="' .
6621 $cgi->self_url() . '" />' . "\n" .
6622 "<id>" . href
(-full
=>1) . "</id>\n" .
6623 # use project owner for feed author
6624 "<author><name>$owner</name></author>\n";
6625 if (defined $favicon) {
6626 print "<icon>" . esc_url
($favicon) . "</icon>\n";
6628 if (defined $logo_url) {
6629 # not twice as wide as tall: 72 x 27 pixels
6630 print "<logo>" . esc_url
($logo) . "</logo>\n";
6632 if (! %latest_date) {
6633 # dummy date to keep the feed valid until commits trickle in:
6634 print "<updated>1970-01-01T00:00:00Z</updated>\n";
6636 print "<updated>$latest_date{'iso-8601'}</updated>\n";
6638 print "<generator version='$version/$git_version'>gitweb</generator>\n";
6642 for (my $i = 0; $i <= $#commitlist; $i++) {
6643 my %co = %{$commitlist[$i]};
6644 my $commit = $co{'id'};
6645 # we read 150, we always show 30 and the ones more recent than 48 hours
6646 if (($i >= 20) && ((time - $co{'author_epoch'}) > 48*60*60)) {
6649 my %cd = parse_date
($co{'author_epoch'});
6651 # get list of changed files
6652 open my $fd, "-|", git_cmd
(), "diff-tree", '-r', @diff_opts,
6653 $co{'parent'} || "--root",
6654 $co{'id'}, "--", (defined $file_name ?
$file_name : ())
6656 my @difftree = map { chomp; $_ } <$fd>;
6660 # print element (entry, item)
6661 my $co_url = href
(-full
=>1, action
=>"commitdiff", hash
=>$commit);
6662 if ($format eq 'rss') {
6664 "<title>" . esc_html
($co{'title'}) . "</title>\n" .
6665 "<author>" . esc_html
($co{'author'}) . "</author>\n" .
6666 "<pubDate>$cd{'rfc2822'}</pubDate>\n" .
6667 "<guid isPermaLink=\"true\">$co_url</guid>\n" .
6668 "<link>$co_url</link>\n" .
6669 "<description>" . esc_html
($co{'title'}) . "</description>\n" .
6670 "<content:encoded>" .
6672 } elsif ($format eq 'atom') {
6674 "<title type=\"html\">" . esc_html
($co{'title'}) . "</title>\n" .
6675 "<updated>$cd{'iso-8601'}</updated>\n" .
6677 " <name>" . esc_html
($co{'author_name'}) . "</name>\n";
6678 if ($co{'author_email'}) {
6679 print " <email>" . esc_html
($co{'author_email'}) . "</email>\n";
6681 print "</author>\n" .
6682 # use committer for contributor
6684 " <name>" . esc_html
($co{'committer_name'}) . "</name>\n";
6685 if ($co{'committer_email'}) {
6686 print " <email>" . esc_html
($co{'committer_email'}) . "</email>\n";
6688 print "</contributor>\n" .
6689 "<published>$cd{'iso-8601'}</published>\n" .
6690 "<link rel=\"alternate\" type=\"text/html\" href=\"$co_url\" />\n" .
6691 "<id>$co_url</id>\n" .
6692 "<content type=\"xhtml\" xml:base=\"" . esc_url
($my_url) . "\">\n" .
6693 "<div xmlns=\"http://www.w3.org/1999/xhtml\">\n";
6695 my $comment = $co{'comment'};
6697 foreach my $line (@
$comment) {
6698 $line = esc_html
($line);
6701 print "</pre><ul>\n";
6702 foreach my $difftree_line (@difftree) {
6703 my %difftree = parse_difftree_raw_line
($difftree_line);
6704 next if !$difftree{'from_id'};
6706 my $file = $difftree{'file'} || $difftree{'to_file'};
6710 $cgi->a({-href
=> href
(-full
=>1, action
=>"blobdiff",
6711 hash
=>$difftree{'to_id'}, hash_parent
=>$difftree{'from_id'},
6712 hash_base
=>$co{'id'}, hash_parent_base
=>$co{'parent'},
6713 file_name
=>$file, file_parent
=>$difftree{'from_file'}),
6714 -title
=> "diff"}, 'D');
6716 print $cgi->a({-href
=> href
(-full
=>1, action
=>"blame",
6717 file_name
=>$file, hash_base
=>$commit),
6718 -title
=> "blame"}, 'B');
6720 # if this is not a feed of a file history
6721 if (!defined $file_name || $file_name ne $file) {
6722 print $cgi->a({-href
=> href
(-full
=>1, action
=>"history",
6723 file_name
=>$file, hash
=>$commit),
6724 -title
=> "history"}, 'H');
6726 $file = esc_path
($file);
6730 if ($format eq 'rss') {
6731 print "</ul>]]>\n" .
6732 "</content:encoded>\n" .
6734 } elsif ($format eq 'atom') {
6735 print "</ul>\n</div>\n" .
6742 if ($format eq 'rss') {
6743 print "</channel>\n</rss>\n";
6744 } elsif ($format eq 'atom') {
6758 my @list = git_get_projects_list
();
6761 -type
=> 'text/xml',
6762 -charset
=> 'utf-8',
6763 -content_disposition
=> 'inline; filename="opml.xml"');
6766 <?xml version="1.0" encoding="utf-8"?>
6767 <opml version="1.0">
6769 <title>$site_name OPML Export</title>
6772 <outline text="git RSS feeds">
6775 foreach my $pr (@list) {
6777 my $head = git_get_head_hash
($proj{'path'});
6778 if (!defined $head) {
6781 $git_dir = "$projectroot/$proj{'path'}";
6782 my %co = parse_commit
($head);
6787 my $path = esc_html
(chop_str
($proj{'path'}, 25, 5));
6788 my $rss = href
('project' => $proj{'path'}, 'action' => 'rss', -full
=> 1);
6789 my $html = href
('project' => $proj{'path'}, 'action' => 'summary', -full
=> 1);
6790 print "<outline type=\"rss\" text=\"$path\" title=\"$path\" xmlUrl=\"$rss\" htmlUrl=\"$html\"/>\n";