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 set_message);
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'};
31 our $version = "++GIT_VERSION++";
33 our ($my_url, $my_uri, $base_url, $path_info, $home_link);
37 our $my_url = $cgi->url();
38 our $my_uri = $cgi->url(-absolute
=> 1);
40 # Base URL for relative URLs in gitweb ($logo, $favicon, ...),
41 # needed and used only for URLs with nonempty PATH_INFO
42 our $base_url = $my_url;
44 # When the script is used as DirectoryIndex, the URL does not contain the name
45 # of the script file itself, and $cgi->url() fails to strip PATH_INFO, so we
46 # have to do it ourselves. We make $path_info global because it's also used
49 # Another issue with the script being the DirectoryIndex is that the resulting
50 # $my_url data is not the full script URL: this is good, because we want
51 # generated links to keep implying the script name if it wasn't explicitly
52 # indicated in the URL we're handling, but it means that $my_url cannot be used
54 # Therefore, if we needed to strip PATH_INFO, then we know that we have
55 # to build the base URL ourselves:
56 our $path_info = $ENV{"PATH_INFO"};
58 if ($my_url =~ s
,\Q
$path_info\E
$,, &&
59 $my_uri =~ s
,\Q
$path_info\E
$,, &&
60 defined $ENV{'SCRIPT_NAME'}) {
61 $base_url = $cgi->url(-base
=> 1) . $ENV{'SCRIPT_NAME'};
65 # target of the home link on top of all pages
66 our $home_link = $my_uri || "/";
69 # core git executable to use
70 # this can just be "git" if your webserver has a sensible PATH
71 our $GIT = "++GIT_BINDIR++/git";
73 # absolute fs-path which will be prepended to the project path
74 #our $projectroot = "/pub/scm";
75 our $projectroot = "++GITWEB_PROJECTROOT++";
77 # fs traversing limit for getting project list
78 # the number is relative to the projectroot
79 our $project_maxdepth = "++GITWEB_PROJECT_MAXDEPTH++";
81 # string of the home link on top of all pages
82 our $home_link_str = "++GITWEB_HOME_LINK_STR++";
84 # name of your site or organization to appear in page titles
85 # replace this with something more descriptive for clearer bookmarks
86 our $site_name = "++GITWEB_SITENAME++"
87 || ($ENV{'SERVER_NAME'} || "Untitled") . " Git";
89 # filename of html text to include at top of each page
90 our $site_header = "++GITWEB_SITE_HEADER++";
91 # html text to include at home page
92 our $home_text = "++GITWEB_HOMETEXT++";
93 # filename of html text to include at bottom of each page
94 our $site_footer = "++GITWEB_SITE_FOOTER++";
97 our @stylesheets = ("++GITWEB_CSS++");
98 # URI of a single stylesheet, which can be overridden in GITWEB_CONFIG.
99 our $stylesheet = undef;
100 # URI of GIT logo (72x27 size)
101 our $logo = "++GITWEB_LOGO++";
102 # URI of GIT favicon, assumed to be image/png type
103 our $favicon = "++GITWEB_FAVICON++";
104 # URI of gitweb.js (JavaScript code for gitweb)
105 our $javascript = "++GITWEB_JS++";
107 # URI and label (title) of GIT logo link
108 #our $logo_url = "http://www.kernel.org/pub/software/scm/git/docs/";
109 #our $logo_label = "git documentation";
110 our $logo_url = "http://git-scm.com/";
111 our $logo_label = "git homepage";
113 # source of projects list
114 our $projects_list = "++GITWEB_LIST++";
116 # the width (in characters) of the projects list "Description" column
117 our $projects_list_description_width = 25;
119 # default order of projects list
120 # valid values are none, project, descr, owner, and age
121 our $default_projects_order = "project";
123 # show repository only if this file exists
124 # (only effective if this variable evaluates to true)
125 our $export_ok = "++GITWEB_EXPORT_OK++";
127 # show repository only if this subroutine returns true
128 # when given the path to the project, for example:
129 # sub { return -e "$_[0]/git-daemon-export-ok"; }
130 our $export_auth_hook = undef;
132 # only allow viewing of repositories also shown on the overview page
133 our $strict_export = "++GITWEB_STRICT_EXPORT++";
135 # list of git base URLs used for URL to where fetch project from,
136 # i.e. full URL is "$git_base_url/$project"
137 our @git_base_url_list = grep { $_ ne '' } ("++GITWEB_BASE_URL++");
139 # default blob_plain mimetype and default charset for text/plain blob
140 our $default_blob_plain_mimetype = 'text/plain';
141 our $default_text_plain_charset = undef;
143 # file to use for guessing MIME types before trying /etc/mime.types
144 # (relative to the current git repository)
145 our $mimetypes_file = undef;
147 # assume this charset if line contains non-UTF-8 characters;
148 # it should be valid encoding (see Encoding::Supported(3pm) for list),
149 # for which encoding all byte sequences are valid, for example
150 # 'iso-8859-1' aka 'latin1' (it is decoded without checking, so it
151 # could be even 'utf-8' for the old behavior)
152 our $fallback_encoding = 'latin1';
154 # rename detection options for git-diff and git-diff-tree
155 # - default is '-M', with the cost proportional to
156 # (number of removed files) * (number of new files).
157 # - more costly is '-C' (which implies '-M'), with the cost proportional to
158 # (number of changed files + number of removed files) * (number of new files)
159 # - even more costly is '-C', '--find-copies-harder' with cost
160 # (number of files in the original tree) * (number of new files)
161 # - one might want to include '-B' option, e.g. '-B', '-M'
162 our @diff_opts = ('-M'); # taken from git_commit
164 # Disables features that would allow repository owners to inject script into
166 our $prevent_xss = 0;
168 # Path to the highlight executable to use (must be the one from
169 # http://www.andre-simon.de due to assumptions about parameters and output).
170 # Useful if highlight is not installed on your webserver's PATH.
171 # [Default: highlight]
172 our $highlight_bin = "++HIGHLIGHT_BIN++";
174 # information about snapshot formats that gitweb is capable of serving
175 our %known_snapshot_formats = (
177 # 'display' => display name,
178 # 'type' => mime type,
179 # 'suffix' => filename suffix,
180 # 'format' => --format for git-archive,
181 # 'compressor' => [compressor command and arguments]
182 # (array reference, optional)
183 # 'disabled' => boolean (optional)}
186 'display' => 'tar.gz',
187 'type' => 'application/x-gzip',
188 'suffix' => '.tar.gz',
190 'compressor' => ['gzip']},
193 'display' => 'tar.bz2',
194 'type' => 'application/x-bzip2',
195 'suffix' => '.tar.bz2',
197 'compressor' => ['bzip2']},
200 'display' => 'tar.xz',
201 'type' => 'application/x-xz',
202 'suffix' => '.tar.xz',
204 'compressor' => ['xz'],
209 'type' => 'application/x-zip',
214 # Aliases so we understand old gitweb.snapshot values in repository
216 our %known_snapshot_format_aliases = (
221 # backward compatibility: legacy gitweb config support
222 'x-gzip' => undef, 'gz' => undef,
223 'x-bzip2' => undef, 'bz2' => undef,
224 'x-zip' => undef, '' => undef,
227 # Pixel sizes for icons and avatars. If the default font sizes or lineheights
228 # are changed, it may be appropriate to change these values too via
235 # Used to set the maximum load that we will still respond to gitweb queries.
236 # If server load exceed this value then return "503 server busy" error.
237 # If gitweb cannot determined server load, it is taken to be 0.
238 # Leave it undefined (or set to 'undef') to turn off load checking.
241 # configuration for 'highlight' (http://www.andre-simon.de/)
243 our %highlight_basename = (
246 'SConstruct' => 'py', # SCons equivalent of Makefile
247 'Makefile' => 'make',
250 our %highlight_ext = (
251 # main extensions, defining name of syntax;
252 # see files in /usr/share/highlight/langDefs/ directory
254 qw(py c cpp rb java css php sh pl js tex bib xml awk bat ini spec tcl),
255 # alternate extensions, see /etc/highlight/filetypes.conf
257 map { $_ => 'cpp' } qw(cxx c++ cc),
258 map { $_ => 'php' } qw(php3 php4),
259 map { $_ => 'pl' } qw(perl pm), # perhaps also 'cgi'
261 map { $_ => 'xml' } qw(xhtml html htm),
264 # You define site-wide feature defaults here; override them with
265 # $GITWEB_CONFIG as necessary.
268 # 'sub' => feature-sub (subroutine),
269 # 'override' => allow-override (boolean),
270 # 'default' => [ default options...] (array reference)}
272 # if feature is overridable (it means that allow-override has true value),
273 # then feature-sub will be called with default options as parameters;
274 # return value of feature-sub indicates if to enable specified feature
276 # if there is no 'sub' key (no feature-sub), then feature cannot be
279 # use gitweb_get_feature(<feature>) to retrieve the <feature> value
280 # (an array) or gitweb_check_feature(<feature>) to check if <feature>
283 # Enable the 'blame' blob view, showing the last commit that modified
284 # each line in the file. This can be very CPU-intensive.
286 # To enable system wide have in $GITWEB_CONFIG
287 # $feature{'blame'}{'default'} = [1];
288 # To have project specific config enable override in $GITWEB_CONFIG
289 # $feature{'blame'}{'override'} = 1;
290 # and in project config gitweb.blame = 0|1;
292 'sub' => sub { feature_bool
('blame', @_) },
296 # Enable the 'snapshot' link, providing a compressed archive of any
297 # tree. This can potentially generate high traffic if you have large
300 # Value is a list of formats defined in %known_snapshot_formats that
302 # To disable system wide have in $GITWEB_CONFIG
303 # $feature{'snapshot'}{'default'} = [];
304 # To have project specific config enable override in $GITWEB_CONFIG
305 # $feature{'snapshot'}{'override'} = 1;
306 # and in project config, a comma-separated list of formats or "none"
307 # to disable. Example: gitweb.snapshot = tbz2,zip;
309 'sub' => \
&feature_snapshot
,
311 'default' => ['tgz']},
313 # Enable text search, which will list the commits which match author,
314 # committer or commit text to a given string. Enabled by default.
315 # Project specific override is not supported.
320 # Enable grep search, which will list the files in currently selected
321 # tree containing the given string. Enabled by default. This can be
322 # potentially CPU-intensive, of course.
324 # To enable system wide have in $GITWEB_CONFIG
325 # $feature{'grep'}{'default'} = [1];
326 # To have project specific config enable override in $GITWEB_CONFIG
327 # $feature{'grep'}{'override'} = 1;
328 # and in project config gitweb.grep = 0|1;
330 'sub' => sub { feature_bool
('grep', @_) },
334 # Enable the pickaxe search, which will list the commits that modified
335 # a given string in a file. This can be practical and quite faster
336 # alternative to 'blame', but still potentially CPU-intensive.
338 # To enable system wide have in $GITWEB_CONFIG
339 # $feature{'pickaxe'}{'default'} = [1];
340 # To have project specific config enable override in $GITWEB_CONFIG
341 # $feature{'pickaxe'}{'override'} = 1;
342 # and in project config gitweb.pickaxe = 0|1;
344 'sub' => sub { feature_bool
('pickaxe', @_) },
348 # Enable showing size of blobs in a 'tree' view, in a separate
349 # column, similar to what 'ls -l' does. This cost a bit of IO.
351 # To disable system wide have in $GITWEB_CONFIG
352 # $feature{'show-sizes'}{'default'} = [0];
353 # To have project specific config enable override in $GITWEB_CONFIG
354 # $feature{'show-sizes'}{'override'} = 1;
355 # and in project config gitweb.showsizes = 0|1;
357 'sub' => sub { feature_bool
('showsizes', @_) },
361 # Make gitweb use an alternative format of the URLs which can be
362 # more readable and natural-looking: project name is embedded
363 # directly in the path and the query string contains other
364 # auxiliary information. All gitweb installations recognize
365 # URL in either format; this configures in which formats gitweb
368 # To enable system wide have in $GITWEB_CONFIG
369 # $feature{'pathinfo'}{'default'} = [1];
370 # Project specific override is not supported.
372 # Note that you will need to change the default location of CSS,
373 # favicon, logo and possibly other files to an absolute URL. Also,
374 # if gitweb.cgi serves as your indexfile, you will need to force
375 # $my_uri to contain the script name in your $GITWEB_CONFIG.
380 # Make gitweb consider projects in project root subdirectories
381 # to be forks of existing projects. Given project $projname.git,
382 # projects matching $projname/*.git will not be shown in the main
383 # projects list, instead a '+' mark will be added to $projname
384 # there and a 'forks' view will be enabled for the project, listing
385 # all the forks. If project list is taken from a file, forks have
386 # to be listed after the main project.
388 # To enable system wide have in $GITWEB_CONFIG
389 # $feature{'forks'}{'default'} = [1];
390 # Project specific override is not supported.
395 # Insert custom links to the action bar of all project pages.
396 # This enables you mainly to link to third-party scripts integrating
397 # into gitweb; e.g. git-browser for graphical history representation
398 # or custom web-based repository administration interface.
400 # The 'default' value consists of a list of triplets in the form
401 # (label, link, position) where position is the label after which
402 # to insert the link and link is a format string where %n expands
403 # to the project name, %f to the project path within the filesystem,
404 # %h to the current hash (h gitweb parameter) and %b to the current
405 # hash base (hb gitweb parameter); %% expands to %.
407 # To enable system wide have in $GITWEB_CONFIG e.g.
408 # $feature{'actions'}{'default'} = [('graphiclog',
409 # '/git-browser/by-commit.html?r=%n', 'summary')];
410 # Project specific override is not supported.
415 # Allow gitweb scan project content tags described in ctags/
416 # of project repository, and display the popular Web 2.0-ish
417 # "tag cloud" near the project list. Note that this is something
418 # COMPLETELY different from the normal Git tags.
420 # gitweb by itself can show existing tags, but it does not handle
421 # tagging itself; you need an external application for that.
422 # For an example script, check Girocco's cgi/tagproj.cgi.
423 # You may want to install the HTML::TagCloud Perl module to get
424 # a pretty tag cloud instead of just a list of tags.
426 # To enable system wide have in $GITWEB_CONFIG
427 # $feature{'ctags'}{'default'} = ['path_to_tag_script'];
428 # Project specific override is not supported.
433 # The maximum number of patches in a patchset generated in patch
434 # view. Set this to 0 or undef to disable patch view, or to a
435 # negative number to remove any limit.
437 # To disable system wide have in $GITWEB_CONFIG
438 # $feature{'patches'}{'default'} = [0];
439 # To have project specific config enable override in $GITWEB_CONFIG
440 # $feature{'patches'}{'override'} = 1;
441 # and in project config gitweb.patches = 0|n;
442 # where n is the maximum number of patches allowed in a patchset.
444 'sub' => \
&feature_patches
,
448 # Avatar support. When this feature is enabled, views such as
449 # shortlog or commit will display an avatar associated with
450 # the email of the committer(s) and/or author(s).
452 # Currently available providers are gravatar and picon.
453 # If an unknown provider is specified, the feature is disabled.
455 # Gravatar depends on Digest::MD5.
456 # Picon currently relies on the indiana.edu database.
458 # To enable system wide have in $GITWEB_CONFIG
459 # $feature{'avatar'}{'default'} = ['<provider>'];
460 # where <provider> is either gravatar or picon.
461 # To have project specific config enable override in $GITWEB_CONFIG
462 # $feature{'avatar'}{'override'} = 1;
463 # and in project config gitweb.avatar = <provider>;
465 'sub' => \
&feature_avatar
,
469 # Enable displaying how much time and how many git commands
470 # it took to generate and display page. Disabled by default.
471 # Project specific override is not supported.
476 # Enable turning some links into links to actions which require
477 # JavaScript to run (like 'blame_incremental'). Not enabled by
478 # default. Project specific override is currently not supported.
479 'javascript-actions' => {
483 # Syntax highlighting support. This is based on Daniel Svensson's
484 # and Sham Chukoury's work in gitweb-xmms2.git.
485 # It requires the 'highlight' program present in $PATH,
486 # and therefore is disabled by default.
488 # To enable system wide have in $GITWEB_CONFIG
489 # $feature{'highlight'}{'default'} = [1];
492 'sub' => sub { feature_bool
('highlight', @_) },
497 sub gitweb_get_feature
{
499 return unless exists $feature{$name};
500 my ($sub, $override, @defaults) = (
501 $feature{$name}{'sub'},
502 $feature{$name}{'override'},
503 @
{$feature{$name}{'default'}});
504 # project specific override is possible only if we have project
505 our $git_dir; # global variable, declared later
506 if (!$override || !defined $git_dir) {
510 warn "feature $name is not overridable";
513 return $sub->(@defaults);
516 # A wrapper to check if a given feature is enabled.
517 # With this, you can say
519 # my $bool_feat = gitweb_check_feature('bool_feat');
520 # gitweb_check_feature('bool_feat') or somecode;
524 # my ($bool_feat) = gitweb_get_feature('bool_feat');
525 # (gitweb_get_feature('bool_feat'))[0] or somecode;
527 sub gitweb_check_feature
{
528 return (gitweb_get_feature
(@_))[0];
534 my ($val) = git_get_project_config
($key, '--bool');
538 } elsif ($val eq 'true') {
540 } elsif ($val eq 'false') {
545 sub feature_snapshot
{
548 my ($val) = git_get_project_config
('snapshot');
551 @fmts = ($val eq 'none' ?
() : split /\s*[,\s]\s*/, $val);
557 sub feature_patches
{
558 my @val = (git_get_project_config
('patches', '--int'));
568 my @val = (git_get_project_config
('avatar'));
570 return @val ?
@val : @_;
573 # checking HEAD file with -e is fragile if the repository was
574 # initialized long time ago (i.e. symlink HEAD) and was pack-ref'ed
576 sub check_head_link
{
578 my $headfile = "$dir/HEAD";
579 return ((-e
$headfile) ||
580 (-l
$headfile && readlink($headfile) =~ /^refs\/heads\
//));
583 sub check_export_ok
{
585 return (check_head_link
($dir) &&
586 (!$export_ok || -e
"$dir/$export_ok") &&
587 (!$export_auth_hook || $export_auth_hook->($dir)));
590 # process alternate names for backward compatibility
591 # filter out unsupported (unknown) snapshot formats
592 sub filter_snapshot_fmts
{
596 exists $known_snapshot_format_aliases{$_} ?
597 $known_snapshot_format_aliases{$_} : $_} @fmts;
599 exists $known_snapshot_formats{$_} &&
600 !$known_snapshot_formats{$_}{'disabled'}} @fmts;
603 our ($GITWEB_CONFIG, $GITWEB_CONFIG_SYSTEM);
604 sub evaluate_gitweb_config
{
605 our $GITWEB_CONFIG = $ENV{'GITWEB_CONFIG'} || "++GITWEB_CONFIG++";
606 our $GITWEB_CONFIG_SYSTEM = $ENV{'GITWEB_CONFIG_SYSTEM'} || "++GITWEB_CONFIG_SYSTEM++";
607 # die if there are errors parsing config file
608 if (-e
$GITWEB_CONFIG) {
611 } elsif (-e
$GITWEB_CONFIG_SYSTEM) {
612 do $GITWEB_CONFIG_SYSTEM;
617 # Get loadavg of system, to compare against $maxload.
618 # Currently it requires '/proc/loadavg' present to get loadavg;
619 # if it is not present it returns 0, which means no load checking.
621 if( -e
'/proc/loadavg' ){
622 open my $fd, '<', '/proc/loadavg'
624 my @load = split(/\s+/, scalar <$fd>);
627 # The first three columns measure CPU and IO utilization of the last one,
628 # five, and 10 minute periods. The fourth column shows the number of
629 # currently running processes and the total number of processes in the m/n
630 # format. The last column displays the last process ID used.
631 return $load[0] || 0;
633 # additional checks for load average should go here for things that don't export
639 # version of the core git binary
641 sub evaluate_git_version
{
642 our $git_version = qx("$GIT" --version
) =~ m/git version (.*)$/ ?
$1 : "unknown";
643 $number_of_git_cmds++;
647 if (defined $maxload && get_loadavg
() > $maxload) {
648 die_error
(503, "The load average on the server is too high");
652 # ======================================================================
653 # input validation and dispatch
655 # input parameters can be collected from a variety of sources (presently, CGI
656 # and PATH_INFO), so we define an %input_params hash that collects them all
657 # together during validation: this allows subsequent uses (e.g. href()) to be
658 # agnostic of the parameter origin
660 our %input_params = ();
662 # input parameters are stored with the long parameter name as key. This will
663 # also be used in the href subroutine to convert parameters to their CGI
664 # equivalent, and since the href() usage is the most frequent one, we store
665 # the name -> CGI key mapping here, instead of the reverse.
667 # XXX: Warning: If you touch this, check the search form for updating,
670 our @cgi_param_mapping = (
678 hash_parent_base
=> "hpb",
683 snapshot_format
=> "sf",
684 extra_options
=> "opt",
685 search_use_regexp
=> "sr",
686 # this must be last entry (for manipulation from JavaScript)
689 our %cgi_param_mapping = @cgi_param_mapping;
691 # we will also need to know the possible actions, for validation
693 "blame" => \
&git_blame
,
694 "blame_incremental" => \
&git_blame_incremental
,
695 "blame_data" => \
&git_blame_data
,
696 "blobdiff" => \
&git_blobdiff
,
697 "blobdiff_plain" => \
&git_blobdiff_plain
,
698 "blob" => \
&git_blob
,
699 "blob_plain" => \
&git_blob_plain
,
700 "commitdiff" => \
&git_commitdiff
,
701 "commitdiff_plain" => \
&git_commitdiff_plain
,
702 "commit" => \
&git_commit
,
703 "forks" => \
&git_forks
,
704 "heads" => \
&git_heads
,
705 "history" => \
&git_history
,
707 "patch" => \
&git_patch
,
708 "patches" => \
&git_patches
,
710 "atom" => \
&git_atom
,
711 "search" => \
&git_search
,
712 "search_help" => \
&git_search_help
,
713 "shortlog" => \
&git_shortlog
,
714 "summary" => \
&git_summary
,
716 "tags" => \
&git_tags
,
717 "tree" => \
&git_tree
,
718 "snapshot" => \
&git_snapshot
,
719 "object" => \
&git_object
,
720 # those below don't need $project
721 "opml" => \
&git_opml
,
722 "project_list" => \
&git_project_list
,
723 "project_index" => \
&git_project_index
,
726 # finally, we have the hash of allowed extra_options for the commands that
728 our %allowed_options = (
729 "--no-merges" => [ qw(rss atom log shortlog history) ],
732 # fill %input_params with the CGI parameters. All values except for 'opt'
733 # should be single values, but opt can be an array. We should probably
734 # build an array of parameters that can be multi-valued, but since for the time
735 # being it's only this one, we just single it out
736 sub evaluate_query_params
{
739 while (my ($name, $symbol) = each %cgi_param_mapping) {
740 if ($symbol eq 'opt') {
741 $input_params{$name} = [ $cgi->param($symbol) ];
743 $input_params{$name} = $cgi->param($symbol);
748 # now read PATH_INFO and update the parameter list for missing parameters
749 sub evaluate_path_info
{
750 return if defined $input_params{'project'};
751 return if !$path_info;
752 $path_info =~ s
,^/+,,;
753 return if !$path_info;
755 # find which part of PATH_INFO is project
756 my $project = $path_info;
758 while ($project && !check_head_link
("$projectroot/$project")) {
759 $project =~ s
,/*[^/]*$,,;
761 return unless $project;
762 $input_params{'project'} = $project;
764 # do not change any parameters if an action is given using the query string
765 return if $input_params{'action'};
766 $path_info =~ s
,^\Q
$project\E
/*,,;
768 # next, check if we have an action
769 my $action = $path_info;
771 if (exists $actions{$action}) {
772 $path_info =~ s
,^$action/*,,;
773 $input_params{'action'} = $action;
776 # list of actions that want hash_base instead of hash, but can have no
777 # pathname (f) parameter
783 # we want to catch, among others
784 # [$hash_parent_base[:$file_parent]..]$hash_parent[:$file_name]
785 my ($parentrefname, $parentpathname, $refname, $pathname) =
786 ($path_info =~ /^(?:(.+?)(?::(.+))?\.\.)?([^:]+?)?(?::(.+))?$/);
788 # first, analyze the 'current' part
789 if (defined $pathname) {
790 # we got "branch:filename" or "branch:dir/"
791 # we could use git_get_type(branch:pathname), but:
792 # - it needs $git_dir
793 # - it does a git() call
794 # - the convention of terminating directories with a slash
795 # makes it superfluous
796 # - embedding the action in the PATH_INFO would make it even
798 $pathname =~ s
,^/+,,;
799 if (!$pathname || substr($pathname, -1) eq "/") {
800 $input_params{'action'} ||= "tree";
803 # the default action depends on whether we had parent info
805 if ($parentrefname) {
806 $input_params{'action'} ||= "blobdiff_plain";
808 $input_params{'action'} ||= "blob_plain";
811 $input_params{'hash_base'} ||= $refname;
812 $input_params{'file_name'} ||= $pathname;
813 } elsif (defined $refname) {
814 # we got "branch". In this case we have to choose if we have to
815 # set hash or hash_base.
817 # Most of the actions without a pathname only want hash to be
818 # set, except for the ones specified in @wants_base that want
819 # hash_base instead. It should also be noted that hand-crafted
820 # links having 'history' as an action and no pathname or hash
821 # set will fail, but that happens regardless of PATH_INFO.
822 if (defined $parentrefname) {
823 # if there is parent let the default be 'shortlog' action
824 # (for http://git.example.com/repo.git/A..B links); if there
825 # is no parent, dispatch will detect type of object and set
826 # action appropriately if required (if action is not set)
827 $input_params{'action'} ||= "shortlog";
829 if ($input_params{'action'} &&
830 grep { $_ eq $input_params{'action'} } @wants_base) {
831 $input_params{'hash_base'} ||= $refname;
833 $input_params{'hash'} ||= $refname;
837 # next, handle the 'parent' part, if present
838 if (defined $parentrefname) {
839 # a missing pathspec defaults to the 'current' filename, allowing e.g.
840 # someproject/blobdiff/oldrev..newrev:/filename
841 if ($parentpathname) {
842 $parentpathname =~ s
,^/+,,;
843 $parentpathname =~ s
,/$,,;
844 $input_params{'file_parent'} ||= $parentpathname;
846 $input_params{'file_parent'} ||= $input_params{'file_name'};
848 # we assume that hash_parent_base is wanted if a path was specified,
849 # or if the action wants hash_base instead of hash
850 if (defined $input_params{'file_parent'} ||
851 grep { $_ eq $input_params{'action'} } @wants_base) {
852 $input_params{'hash_parent_base'} ||= $parentrefname;
854 $input_params{'hash_parent'} ||= $parentrefname;
858 # for the snapshot action, we allow URLs in the form
859 # $project/snapshot/$hash.ext
860 # where .ext determines the snapshot and gets removed from the
861 # passed $refname to provide the $hash.
863 # To be able to tell that $refname includes the format extension, we
864 # require the following two conditions to be satisfied:
865 # - the hash input parameter MUST have been set from the $refname part
866 # of the URL (i.e. they must be equal)
867 # - the snapshot format MUST NOT have been defined already (e.g. from
869 # It's also useless to try any matching unless $refname has a dot,
870 # so we check for that too
871 if (defined $input_params{'action'} &&
872 $input_params{'action'} eq 'snapshot' &&
873 defined $refname && index($refname, '.') != -1 &&
874 $refname eq $input_params{'hash'} &&
875 !defined $input_params{'snapshot_format'}) {
876 # We loop over the known snapshot formats, checking for
877 # extensions. Allowed extensions are both the defined suffix
878 # (which includes the initial dot already) and the snapshot
879 # format key itself, with a prepended dot
880 while (my ($fmt, $opt) = each %known_snapshot_formats) {
882 unless ($hash =~ s/(\Q$opt->{'suffix'}\E|\Q.$fmt\E)$//) {
886 # a valid suffix was found, so set the snapshot format
887 # and reset the hash parameter
888 $input_params{'snapshot_format'} = $fmt;
889 $input_params{'hash'} = $hash;
890 # we also set the format suffix to the one requested
891 # in the URL: this way a request for e.g. .tgz returns
892 # a .tgz instead of a .tar.gz
893 $known_snapshot_formats{$fmt}{'suffix'} = $sfx;
899 our ($action, $project, $file_name, $file_parent, $hash, $hash_parent, $hash_base,
900 $hash_parent_base, @extra_options, $page, $searchtype, $search_use_regexp,
901 $searchtext, $search_regexp);
902 sub evaluate_and_validate_params
{
903 our $action = $input_params{'action'};
904 if (defined $action) {
905 if (!validate_action
($action)) {
906 die_error
(400, "Invalid action parameter");
910 # parameters which are pathnames
911 our $project = $input_params{'project'};
912 if (defined $project) {
913 if (!validate_project
($project)) {
915 die_error
(404, "No such project");
919 our $file_name = $input_params{'file_name'};
920 if (defined $file_name) {
921 if (!validate_pathname
($file_name)) {
922 die_error
(400, "Invalid file parameter");
926 our $file_parent = $input_params{'file_parent'};
927 if (defined $file_parent) {
928 if (!validate_pathname
($file_parent)) {
929 die_error
(400, "Invalid file parent parameter");
933 # parameters which are refnames
934 our $hash = $input_params{'hash'};
936 if (!validate_refname
($hash)) {
937 die_error
(400, "Invalid hash parameter");
941 our $hash_parent = $input_params{'hash_parent'};
942 if (defined $hash_parent) {
943 if (!validate_refname
($hash_parent)) {
944 die_error
(400, "Invalid hash parent parameter");
948 our $hash_base = $input_params{'hash_base'};
949 if (defined $hash_base) {
950 if (!validate_refname
($hash_base)) {
951 die_error
(400, "Invalid hash base parameter");
955 our @extra_options = @
{$input_params{'extra_options'}};
956 # @extra_options is always defined, since it can only be (currently) set from
957 # CGI, and $cgi->param() returns the empty array in array context if the param
959 foreach my $opt (@extra_options) {
960 if (not exists $allowed_options{$opt}) {
961 die_error
(400, "Invalid option parameter");
963 if (not grep(/^$action$/, @
{$allowed_options{$opt}})) {
964 die_error
(400, "Invalid option parameter for this action");
968 our $hash_parent_base = $input_params{'hash_parent_base'};
969 if (defined $hash_parent_base) {
970 if (!validate_refname
($hash_parent_base)) {
971 die_error
(400, "Invalid hash parent base parameter");
976 our $page = $input_params{'page'};
978 if ($page =~ m/[^0-9]/) {
979 die_error
(400, "Invalid page parameter");
983 our $searchtype = $input_params{'searchtype'};
984 if (defined $searchtype) {
985 if ($searchtype =~ m/[^a-z]/) {
986 die_error
(400, "Invalid searchtype parameter");
990 our $search_use_regexp = $input_params{'search_use_regexp'};
992 our $searchtext = $input_params{'searchtext'};
994 if (defined $searchtext) {
995 if (length($searchtext) < 2) {
996 die_error
(403, "At least two characters are required for search parameter");
998 $search_regexp = $search_use_regexp ?
$searchtext : quotemeta $searchtext;
1002 # path to the current git repository
1004 sub evaluate_git_dir
{
1005 our $git_dir = "$projectroot/$project" if $project;
1008 our (@snapshot_fmts, $git_avatar);
1009 sub configure_gitweb_features
{
1010 # list of supported snapshot formats
1011 our @snapshot_fmts = gitweb_get_feature
('snapshot');
1012 @snapshot_fmts = filter_snapshot_fmts
(@snapshot_fmts);
1014 # check that the avatar feature is set to a known provider name,
1015 # and for each provider check if the dependencies are satisfied.
1016 # if the provider name is invalid or the dependencies are not met,
1017 # reset $git_avatar to the empty string.
1018 our ($git_avatar) = gitweb_get_feature
('avatar');
1019 if ($git_avatar eq 'gravatar') {
1020 $git_avatar = '' unless (eval { require Digest
::MD5
; 1; });
1021 } elsif ($git_avatar eq 'picon') {
1028 # custom error handler: 'die <message>' is Internal Server Error
1029 sub handle_errors_html
{
1030 my $msg = shift; # it is already HTML escaped
1032 # to avoid infinite loop where error occurs in die_error,
1033 # change handler to default handler, disabling handle_errors_html
1034 set_message
("Error occured when inside die_error:\n$msg");
1036 # you cannot jump out of die_error when called as error handler;
1037 # the subroutine set via CGI::Carp::set_message is called _after_
1038 # HTTP headers are already written, so it cannot write them itself
1039 die_error
(undef, undef, $msg, -error_handler
=> 1, -no_http_header
=> 1);
1041 set_message
(\
&handle_errors_html
);
1045 if (!defined $action) {
1046 if (defined $hash) {
1047 $action = git_get_type
($hash);
1048 } elsif (defined $hash_base && defined $file_name) {
1049 $action = git_get_type
("$hash_base:$file_name");
1050 } elsif (defined $project) {
1051 $action = 'summary';
1053 $action = 'project_list';
1056 if (!defined($actions{$action})) {
1057 die_error
(400, "Unknown action");
1059 if ($action !~ m/^(?:opml|project_list|project_index)$/ &&
1061 die_error
(400, "Project needed");
1063 $actions{$action}->();
1067 our $t0 = [Time
::HiRes
::gettimeofday
()]
1069 our $number_of_git_cmds = 0;
1076 evaluate_gitweb_config
();
1079 # $projectroot and $projects_list might be set in gitweb config file
1080 $projects_list ||= $projectroot;
1082 evaluate_query_params
();
1083 evaluate_path_info
();
1084 evaluate_and_validate_params
();
1087 configure_gitweb_features
();
1092 our $is_last_request = sub { 1 };
1093 our ($pre_dispatch_hook, $post_dispatch_hook, $pre_listen_hook);
1096 sub configure_as_fcgi
{
1098 our $CGI = 'CGI::Fast';
1100 my $request_number = 0;
1101 # let each child service 100 requests
1102 our $is_last_request = sub { ++$request_number > 100 };
1105 my $script_name = $ENV{'SCRIPT_NAME'} || $ENV{'SCRIPT_FILENAME'} || __FILE__
;
1107 if $script_name =~ /\.fcgi$/;
1109 return unless (@ARGV);
1111 require Getopt
::Long
;
1112 Getopt
::Long
::GetOptions
(
1113 'fastcgi|fcgi|f' => \
&configure_as_fcgi
,
1114 'nproc|n=i' => sub {
1115 my ($arg, $val) = @_;
1116 return unless eval { require FCGI
::ProcManager
; 1; };
1117 my $proc_manager = FCGI
::ProcManager
->new({
1118 n_processes
=> $val,
1120 our $pre_listen_hook = sub { $proc_manager->pm_manage() };
1121 our $pre_dispatch_hook = sub { $proc_manager->pm_pre_dispatch() };
1122 our $post_dispatch_hook = sub { $proc_manager->pm_post_dispatch() };
1129 evaluate_git_version
();
1131 $pre_listen_hook->()
1132 if $pre_listen_hook;
1135 while ($cgi = $CGI->new()) {
1136 $pre_dispatch_hook->()
1137 if $pre_dispatch_hook;
1141 $post_dispatch_hook->()
1142 if $post_dispatch_hook;
1144 last REQUEST
if ($is_last_request->());
1153 if (defined caller) {
1154 # wrapped in a subroutine processing requests,
1155 # e.g. mod_perl with ModPerl::Registry, or PSGI with Plack::App::WrapCGI
1158 # pure CGI script, serving single request
1162 ## ======================================================================
1165 # possible values of extra options
1166 # -full => 0|1 - use absolute/full URL ($my_uri/$my_url as base)
1167 # -replay => 1 - start from a current view (replay with modifications)
1168 # -path_info => 0|1 - don't use/use path_info URL (if possible)
1171 # default is to use -absolute url() i.e. $my_uri
1172 my $href = $params{-full
} ?
$my_url : $my_uri;
1174 $params{'project'} = $project unless exists $params{'project'};
1176 if ($params{-replay
}) {
1177 while (my ($name, $symbol) = each %cgi_param_mapping) {
1178 if (!exists $params{$name}) {
1179 $params{$name} = $input_params{$name};
1184 my $use_pathinfo = gitweb_check_feature
('pathinfo');
1185 if (defined $params{'project'} &&
1186 (exists $params{-path_info
} ?
$params{-path_info
} : $use_pathinfo)) {
1187 # try to put as many parameters as possible in PATH_INFO:
1190 # - hash_parent or hash_parent_base:/file_parent
1191 # - hash or hash_base:/filename
1192 # - the snapshot_format as an appropriate suffix
1194 # When the script is the root DirectoryIndex for the domain,
1195 # $href here would be something like http://gitweb.example.com/
1196 # Thus, we strip any trailing / from $href, to spare us double
1197 # slashes in the final URL
1200 # Then add the project name, if present
1201 $href .= "/".esc_url
($params{'project'});
1202 delete $params{'project'};
1204 # since we destructively absorb parameters, we keep this
1205 # boolean that remembers if we're handling a snapshot
1206 my $is_snapshot = $params{'action'} eq 'snapshot';
1208 # Summary just uses the project path URL, any other action is
1210 if (defined $params{'action'}) {
1211 $href .= "/".esc_url
($params{'action'}) unless $params{'action'} eq 'summary';
1212 delete $params{'action'};
1215 # Next, we put hash_parent_base:/file_parent..hash_base:/file_name,
1216 # stripping nonexistent or useless pieces
1217 $href .= "/" if ($params{'hash_base'} || $params{'hash_parent_base'}
1218 || $params{'hash_parent'} || $params{'hash'});
1219 if (defined $params{'hash_base'}) {
1220 if (defined $params{'hash_parent_base'}) {
1221 $href .= esc_url
($params{'hash_parent_base'});
1222 # skip the file_parent if it's the same as the file_name
1223 if (defined $params{'file_parent'}) {
1224 if (defined $params{'file_name'} && $params{'file_parent'} eq $params{'file_name'}) {
1225 delete $params{'file_parent'};
1226 } elsif ($params{'file_parent'} !~ /\.\./) {
1227 $href .= ":/".esc_url
($params{'file_parent'});
1228 delete $params{'file_parent'};
1232 delete $params{'hash_parent'};
1233 delete $params{'hash_parent_base'};
1234 } elsif (defined $params{'hash_parent'}) {
1235 $href .= esc_url
($params{'hash_parent'}). "..";
1236 delete $params{'hash_parent'};
1239 $href .= esc_url
($params{'hash_base'});
1240 if (defined $params{'file_name'} && $params{'file_name'} !~ /\.\./) {
1241 $href .= ":/".esc_url
($params{'file_name'});
1242 delete $params{'file_name'};
1244 delete $params{'hash'};
1245 delete $params{'hash_base'};
1246 } elsif (defined $params{'hash'}) {
1247 $href .= esc_url
($params{'hash'});
1248 delete $params{'hash'};
1251 # If the action was a snapshot, we can absorb the
1252 # snapshot_format parameter too
1254 my $fmt = $params{'snapshot_format'};
1255 # snapshot_format should always be defined when href()
1256 # is called, but just in case some code forgets, we
1257 # fall back to the default
1258 $fmt ||= $snapshot_fmts[0];
1259 $href .= $known_snapshot_formats{$fmt}{'suffix'};
1260 delete $params{'snapshot_format'};
1264 # now encode the parameters explicitly
1266 for (my $i = 0; $i < @cgi_param_mapping; $i += 2) {
1267 my ($name, $symbol) = ($cgi_param_mapping[$i], $cgi_param_mapping[$i+1]);
1268 if (defined $params{$name}) {
1269 if (ref($params{$name}) eq "ARRAY") {
1270 foreach my $par (@
{$params{$name}}) {
1271 push @result, $symbol . "=" . esc_param
($par);
1274 push @result, $symbol . "=" . esc_param
($params{$name});
1278 $href .= "?" . join(';', @result) if scalar @result;
1284 ## ======================================================================
1285 ## validation, quoting/unquoting and escaping
1287 sub validate_action
{
1288 my $input = shift || return undef;
1289 return undef unless exists $actions{$input};
1293 sub validate_project
{
1294 my $input = shift || return undef;
1295 if (!validate_pathname
($input) ||
1296 !(-d
"$projectroot/$input") ||
1297 !check_export_ok
("$projectroot/$input") ||
1298 ($strict_export && !project_in_list
($input))) {
1305 sub validate_pathname
{
1306 my $input = shift || return undef;
1308 # no '.' or '..' as elements of path, i.e. no '.' nor '..'
1309 # at the beginning, at the end, and between slashes.
1310 # also this catches doubled slashes
1311 if ($input =~ m!(^|/)(|\.|\.\.)(/|$)!) {
1314 # no null characters
1315 if ($input =~ m!\0!) {
1321 sub validate_refname
{
1322 my $input = shift || return undef;
1324 # textual hashes are O.K.
1325 if ($input =~ m/^[0-9a-fA-F]{40}$/) {
1328 # it must be correct pathname
1329 $input = validate_pathname
($input)
1331 # restrictions on ref name according to git-check-ref-format
1332 if ($input =~ m!(/\.|\.\.|[\000-\040\177 ~^:?*\[]|/$)!) {
1338 # decode sequences of octets in utf8 into Perl's internal form,
1339 # which is utf-8 with utf8 flag set if needed. gitweb writes out
1340 # in utf-8 thanks to "binmode STDOUT, ':utf8'" at beginning
1343 return undef unless defined $str;
1344 if (utf8
::valid
($str)) {
1348 return decode
($fallback_encoding, $str, Encode
::FB_DEFAULT
);
1352 # quote unsafe chars, but keep the slash, even when it's not
1353 # correct, but quoted slashes look too horrible in bookmarks
1356 return undef unless defined $str;
1357 $str =~ s/([^A-Za-z0-9\-_.~()\/:@ ]+)/CGI
::escape
($1)/eg
;
1362 # quote unsafe chars in whole URL, so some characters cannot be quoted
1365 return undef unless defined $str;
1366 $str =~ s/([^A-Za-z0-9\-_.~();\/;?:@&= ]+)/CGI
::escape
($1)/eg
;
1371 # replace invalid utf8 character with SUBSTITUTION sequence
1376 return undef unless defined $str;
1378 $str = to_utf8
($str);
1379 $str = $cgi->escapeHTML($str);
1380 if ($opts{'-nbsp'}) {
1381 $str =~ s/ / /g;
1383 $str =~ s
|([[:cntrl
:]])|(($1 ne "\t") ? quot_cec
($1) : $1)|eg
;
1387 # quote control characters and escape filename to HTML
1392 return undef unless defined $str;
1394 $str = to_utf8
($str);
1395 $str = $cgi->escapeHTML($str);
1396 if ($opts{'-nbsp'}) {
1397 $str =~ s/ / /g;
1399 $str =~ s
|([[:cntrl
:]])|quot_cec
($1)|eg
;
1403 # Make control characters "printable", using character escape codes (CEC)
1407 my %es = ( # character escape codes, aka escape sequences
1408 "\t" => '\t', # tab (HT)
1409 "\n" => '\n', # line feed (LF)
1410 "\r" => '\r', # carrige return (CR)
1411 "\f" => '\f', # form feed (FF)
1412 "\b" => '\b', # backspace (BS)
1413 "\a" => '\a', # alarm (bell) (BEL)
1414 "\e" => '\e', # escape (ESC)
1415 "\013" => '\v', # vertical tab (VT)
1416 "\000" => '\0', # nul character (NUL)
1418 my $chr = ( (exists $es{$cntrl})
1420 : sprintf('\%2x', ord($cntrl)) );
1421 if ($opts{-nohtml
}) {
1424 return "<span class=\"cntrl\">$chr</span>";
1428 # Alternatively use unicode control pictures codepoints,
1429 # Unicode "printable representation" (PR)
1434 my $chr = sprintf('&#%04d;', 0x2400+ord($cntrl));
1435 if ($opts{-nohtml
}) {
1438 return "<span class=\"cntrl\">$chr</span>";
1442 # git may return quoted and escaped filenames
1448 my %es = ( # character escape codes, aka escape sequences
1449 't' => "\t", # tab (HT, TAB)
1450 'n' => "\n", # newline (NL)
1451 'r' => "\r", # return (CR)
1452 'f' => "\f", # form feed (FF)
1453 'b' => "\b", # backspace (BS)
1454 'a' => "\a", # alarm (bell) (BEL)
1455 'e' => "\e", # escape (ESC)
1456 'v' => "\013", # vertical tab (VT)
1459 if ($seq =~ m/^[0-7]{1,3}$/) {
1460 # octal char sequence
1461 return chr(oct($seq));
1462 } elsif (exists $es{$seq}) {
1463 # C escape sequence, aka character escape code
1466 # quoted ordinary character
1470 if ($str =~ m/^"(.*)"$/) {
1473 $str =~ s/\\([^0-7]|[0-7]{1,3})/unq($1)/eg;
1478 # escape tabs (convert tabs to spaces)
1482 while ((my $pos = index($line, "\t")) != -1) {
1483 if (my $count = (8 - ($pos % 8))) {
1484 my $spaces = ' ' x
$count;
1485 $line =~ s/\t/$spaces/;
1492 sub project_in_list
{
1493 my $project = shift;
1494 my @list = git_get_projects_list
();
1495 return @list && scalar(grep { $_->{'path'} eq $project } @list);
1498 ## ----------------------------------------------------------------------
1499 ## HTML aware string manipulation
1501 # Try to chop given string on a word boundary between position
1502 # $len and $len+$add_len. If there is no word boundary there,
1503 # chop at $len+$add_len. Do not chop if chopped part plus ellipsis
1504 # (marking chopped part) would be longer than given string.
1508 my $add_len = shift || 10;
1509 my $where = shift || 'right'; # 'left' | 'center' | 'right'
1511 # Make sure perl knows it is utf8 encoded so we don't
1512 # cut in the middle of a utf8 multibyte char.
1513 $str = to_utf8
($str);
1515 # allow only $len chars, but don't cut a word if it would fit in $add_len
1516 # if it doesn't fit, cut it if it's still longer than the dots we would add
1517 # remove chopped character entities entirely
1519 # when chopping in the middle, distribute $len into left and right part
1520 # return early if chopping wouldn't make string shorter
1521 if ($where eq 'center') {
1522 return $str if ($len + 5 >= length($str)); # filler is length 5
1525 return $str if ($len + 4 >= length($str)); # filler is length 4
1528 # regexps: ending and beginning with word part up to $add_len
1529 my $endre = qr/.{$len}\w{0,$add_len}/;
1530 my $begre = qr/\w{0,$add_len}.{$len}/;
1532 if ($where eq 'left') {
1533 $str =~ m/^(.*?)($begre)$/;
1534 my ($lead, $body) = ($1, $2);
1535 if (length($lead) > 4) {
1538 return "$lead$body";
1540 } elsif ($where eq 'center') {
1541 $str =~ m/^($endre)(.*)$/;
1542 my ($left, $str) = ($1, $2);
1543 $str =~ m/^(.*?)($begre)$/;
1544 my ($mid, $right) = ($1, $2);
1545 if (length($mid) > 5) {
1548 return "$left$mid$right";
1551 $str =~ m/^($endre)(.*)$/;
1554 if (length($tail) > 4) {
1557 return "$body$tail";
1561 # takes the same arguments as chop_str, but also wraps a <span> around the
1562 # result with a title attribute if it does get chopped. Additionally, the
1563 # string is HTML-escaped.
1564 sub chop_and_escape_str
{
1567 my $chopped = chop_str
(@_);
1568 if ($chopped eq $str) {
1569 return esc_html
($chopped);
1571 $str =~ s/[[:cntrl:]]/?/g;
1572 return $cgi->span({-title
=>$str}, esc_html
($chopped));
1576 ## ----------------------------------------------------------------------
1577 ## functions returning short strings
1579 # CSS class for given age value (in seconds)
1583 if (!defined $age) {
1585 } elsif ($age < 60*60*2) {
1587 } elsif ($age < 60*60*24*2) {
1594 # convert age in seconds to "nn units ago" string
1599 if ($age > 60*60*24*365*2) {
1600 $age_str = (int $age/60/60/24/365);
1601 $age_str .= " years ago";
1602 } elsif ($age > 60*60*24*(365/12)*2) {
1603 $age_str = int $age/60/60/24/(365/12);
1604 $age_str .= " months ago";
1605 } elsif ($age > 60*60*24*7*2) {
1606 $age_str = int $age/60/60/24/7;
1607 $age_str .= " weeks ago";
1608 } elsif ($age > 60*60*24*2) {
1609 $age_str = int $age/60/60/24;
1610 $age_str .= " days ago";
1611 } elsif ($age > 60*60*2) {
1612 $age_str = int $age/60/60;
1613 $age_str .= " hours ago";
1614 } elsif ($age > 60*2) {
1615 $age_str = int $age/60;
1616 $age_str .= " min ago";
1617 } elsif ($age > 2) {
1618 $age_str = int $age;
1619 $age_str .= " sec ago";
1621 $age_str .= " right now";
1627 S_IFINVALID
=> 0030000,
1628 S_IFGITLINK
=> 0160000,
1631 # submodule/subproject, a commit object reference
1635 return (($mode & S_IFMT
) == S_IFGITLINK
)
1638 # convert file mode in octal to symbolic file mode string
1640 my $mode = oct shift;
1642 if (S_ISGITLINK
($mode)) {
1643 return 'm---------';
1644 } elsif (S_ISDIR
($mode & S_IFMT
)) {
1645 return 'drwxr-xr-x';
1646 } elsif (S_ISLNK
($mode)) {
1647 return 'lrwxrwxrwx';
1648 } elsif (S_ISREG
($mode)) {
1649 # git cares only about the executable bit
1650 if ($mode & S_IXUSR
) {
1651 return '-rwxr-xr-x';
1653 return '-rw-r--r--';
1656 return '----------';
1660 # convert file mode in octal to file type string
1664 if ($mode !~ m/^[0-7]+$/) {
1670 if (S_ISGITLINK
($mode)) {
1672 } elsif (S_ISDIR
($mode & S_IFMT
)) {
1674 } elsif (S_ISLNK
($mode)) {
1676 } elsif (S_ISREG
($mode)) {
1683 # convert file mode in octal to file type description string
1684 sub file_type_long
{
1687 if ($mode !~ m/^[0-7]+$/) {
1693 if (S_ISGITLINK
($mode)) {
1695 } elsif (S_ISDIR
($mode & S_IFMT
)) {
1697 } elsif (S_ISLNK
($mode)) {
1699 } elsif (S_ISREG
($mode)) {
1700 if ($mode & S_IXUSR
) {
1701 return "executable";
1711 ## ----------------------------------------------------------------------
1712 ## functions returning short HTML fragments, or transforming HTML fragments
1713 ## which don't belong to other sections
1715 # format line of commit message.
1716 sub format_log_line_html
{
1719 $line = esc_html
($line, -nbsp
=>1);
1720 $line =~ s
{\b([0-9a
-fA
-F
]{8,40})\b}{
1721 $cgi->a({-href
=> href
(action
=>"object", hash
=>$1),
1722 -class => "text"}, $1);
1728 # format marker of refs pointing to given object
1730 # the destination action is chosen based on object type and current context:
1731 # - for annotated tags, we choose the tag view unless it's the current view
1732 # already, in which case we go to shortlog view
1733 # - for other refs, we keep the current view if we're in history, shortlog or
1734 # log view, and select shortlog otherwise
1735 sub format_ref_marker
{
1736 my ($refs, $id) = @_;
1739 if (defined $refs->{$id}) {
1740 foreach my $ref (@
{$refs->{$id}}) {
1741 # this code exploits the fact that non-lightweight tags are the
1742 # only indirect objects, and that they are the only objects for which
1743 # we want to use tag instead of shortlog as action
1744 my ($type, $name) = qw();
1745 my $indirect = ($ref =~ s/\^\{\}$//);
1746 # e.g. tags/v2.6.11 or heads/next
1747 if ($ref =~ m!^(.*?)s?/(.*)$!) {
1756 $class .= " indirect" if $indirect;
1758 my $dest_action = "shortlog";
1761 $dest_action = "tag" unless $action eq "tag";
1762 } elsif ($action =~ /^(history|(short)?log)$/) {
1763 $dest_action = $action;
1767 $dest .= "refs/" unless $ref =~ m
!^refs
/!;
1770 my $link = $cgi->a({
1772 action
=>$dest_action,
1776 $markers .= " <span class=\"$class\" title=\"$ref\">" .
1782 return ' <span class="refs">'. $markers . '</span>';
1788 # format, perhaps shortened and with markers, title line
1789 sub format_subject_html
{
1790 my ($long, $short, $href, $extra) = @_;
1791 $extra = '' unless defined($extra);
1793 if (length($short) < length($long)) {
1794 $long =~ s/[[:cntrl:]]/?/g;
1795 return $cgi->a({-href
=> $href, -class => "list subject",
1796 -title
=> to_utf8
($long)},
1797 esc_html
($short)) . $extra;
1799 return $cgi->a({-href
=> $href, -class => "list subject"},
1800 esc_html
($long)) . $extra;
1804 # Rather than recomputing the url for an email multiple times, we cache it
1805 # after the first hit. This gives a visible benefit in views where the avatar
1806 # for the same email is used repeatedly (e.g. shortlog).
1807 # The cache is shared by all avatar engines (currently gravatar only), which
1808 # are free to use it as preferred. Since only one avatar engine is used for any
1809 # given page, there's no risk for cache conflicts.
1810 our %avatar_cache = ();
1812 # Compute the picon url for a given email, by using the picon search service over at
1813 # http://www.cs.indiana.edu/picons/search.html
1815 my $email = lc shift;
1816 if (!$avatar_cache{$email}) {
1817 my ($user, $domain) = split('@', $email);
1818 $avatar_cache{$email} =
1819 "http://www.cs.indiana.edu/cgi-pub/kinzler/piconsearch.cgi/" .
1821 "users+domains+unknown/up/single";
1823 return $avatar_cache{$email};
1826 # Compute the gravatar url for a given email, if it's not in the cache already.
1827 # Gravatar stores only the part of the URL before the size, since that's the
1828 # one computationally more expensive. This also allows reuse of the cache for
1829 # different sizes (for this particular engine).
1831 my $email = lc shift;
1833 $avatar_cache{$email} ||=
1834 "http://www.gravatar.com/avatar/" .
1835 Digest
::MD5
::md5_hex
($email) . "?s=";
1836 return $avatar_cache{$email} . $size;
1839 # Insert an avatar for the given $email at the given $size if the feature
1841 sub git_get_avatar
{
1842 my ($email, %opts) = @_;
1843 my $pre_white = ($opts{-pad_before
} ?
" " : "");
1844 my $post_white = ($opts{-pad_after
} ?
" " : "");
1845 $opts{-size
} ||= 'default';
1846 my $size = $avatar_size{$opts{-size
}} || $avatar_size{'default'};
1848 if ($git_avatar eq 'gravatar') {
1849 $url = gravatar_url
($email, $size);
1850 } elsif ($git_avatar eq 'picon') {
1851 $url = picon_url
($email);
1853 # Other providers can be added by extending the if chain, defining $url
1854 # as needed. If no variant puts something in $url, we assume avatars
1855 # are completely disabled/unavailable.
1858 "<img width=\"$size\" " .
1859 "class=\"avatar\" " .
1868 sub format_search_author
{
1869 my ($author, $searchtype, $displaytext) = @_;
1870 my $have_search = gitweb_check_feature
('search');
1874 if ($searchtype eq 'author') {
1875 $performed = "authored";
1876 } elsif ($searchtype eq 'committer') {
1877 $performed = "committed";
1880 return $cgi->a({-href
=> href
(action
=>"search", hash
=>$hash,
1881 searchtext
=>$author,
1882 searchtype
=>$searchtype), class=>"list",
1883 title
=>"Search for commits $performed by $author"},
1887 return $displaytext;
1891 # format the author name of the given commit with the given tag
1892 # the author name is chopped and escaped according to the other
1893 # optional parameters (see chop_str).
1894 sub format_author_html
{
1897 my $author = chop_and_escape_str
($co->{'author_name'}, @_);
1898 return "<$tag class=\"author\">" .
1899 format_search_author
($co->{'author_name'}, "author",
1900 git_get_avatar
($co->{'author_email'}, -pad_after
=> 1) .
1905 # format git diff header line, i.e. "diff --(git|combined|cc) ..."
1906 sub format_git_diff_header_line
{
1908 my $diffinfo = shift;
1909 my ($from, $to) = @_;
1911 if ($diffinfo->{'nparents'}) {
1913 $line =~ s!^(diff (.*?) )"?.*$!$1!;
1914 if ($to->{'href'}) {
1915 $line .= $cgi->a({-href
=> $to->{'href'}, -class => "path"},
1916 esc_path
($to->{'file'}));
1917 } else { # file was deleted (no href)
1918 $line .= esc_path
($to->{'file'});
1922 $line =~ s!^(diff (.*?) )"?a/.*$!$1!;
1923 if ($from->{'href'}) {
1924 $line .= $cgi->a({-href
=> $from->{'href'}, -class => "path"},
1925 'a/' . esc_path
($from->{'file'}));
1926 } else { # file was added (no href)
1927 $line .= 'a/' . esc_path
($from->{'file'});
1930 if ($to->{'href'}) {
1931 $line .= $cgi->a({-href
=> $to->{'href'}, -class => "path"},
1932 'b/' . esc_path
($to->{'file'}));
1933 } else { # file was deleted
1934 $line .= 'b/' . esc_path
($to->{'file'});
1938 return "<div class=\"diff header\">$line</div>\n";
1941 # format extended diff header line, before patch itself
1942 sub format_extended_diff_header_line
{
1944 my $diffinfo = shift;
1945 my ($from, $to) = @_;
1948 if ($line =~ s!^((copy|rename) from ).*$!$1! && $from->{'href'}) {
1949 $line .= $cgi->a({-href
=>$from->{'href'}, -class=>"path"},
1950 esc_path
($from->{'file'}));
1952 if ($line =~ s!^((copy|rename) to ).*$!$1! && $to->{'href'}) {
1953 $line .= $cgi->a({-href
=>$to->{'href'}, -class=>"path"},
1954 esc_path
($to->{'file'}));
1956 # match single <mode>
1957 if ($line =~ m/\s(\d{6})$/) {
1958 $line .= '<span class="info"> (' .
1959 file_type_long
($1) .
1963 if ($line =~ m/^index [0-9a-fA-F]{40},[0-9a-fA-F]{40}/) {
1964 # can match only for combined diff
1966 for (my $i = 0; $i < $diffinfo->{'nparents'}; $i++) {
1967 if ($from->{'href'}[$i]) {
1968 $line .= $cgi->a({-href
=>$from->{'href'}[$i],
1970 substr($diffinfo->{'from_id'}[$i],0,7));
1975 $line .= ',' if ($i < $diffinfo->{'nparents'} - 1);
1978 if ($to->{'href'}) {
1979 $line .= $cgi->a({-href
=>$to->{'href'}, -class=>"hash"},
1980 substr($diffinfo->{'to_id'},0,7));
1985 } elsif ($line =~ m/^index [0-9a-fA-F]{40}..[0-9a-fA-F]{40}/) {
1986 # can match only for ordinary diff
1987 my ($from_link, $to_link);
1988 if ($from->{'href'}) {
1989 $from_link = $cgi->a({-href
=>$from->{'href'}, -class=>"hash"},
1990 substr($diffinfo->{'from_id'},0,7));
1992 $from_link = '0' x
7;
1994 if ($to->{'href'}) {
1995 $to_link = $cgi->a({-href
=>$to->{'href'}, -class=>"hash"},
1996 substr($diffinfo->{'to_id'},0,7));
2000 my ($from_id, $to_id) = ($diffinfo->{'from_id'}, $diffinfo->{'to_id'});
2001 $line =~ s!$from_id\.\.$to_id!$from_link..$to_link!;
2004 return $line . "<br/>\n";
2007 # format from-file/to-file diff header
2008 sub format_diff_from_to_header
{
2009 my ($from_line, $to_line, $diffinfo, $from, $to, @parents) = @_;
2014 #assert($line =~ m/^---/) if DEBUG;
2015 # no extra formatting for "^--- /dev/null"
2016 if (! $diffinfo->{'nparents'}) {
2017 # ordinary (single parent) diff
2018 if ($line =~ m!^--- "?a/!) {
2019 if ($from->{'href'}) {
2021 $cgi->a({-href
=>$from->{'href'}, -class=>"path"},
2022 esc_path
($from->{'file'}));
2025 esc_path
($from->{'file'});
2028 $result .= qq!<div
class="diff from_file">$line</div
>\n!;
2031 # combined diff (merge commit)
2032 for (my $i = 0; $i < $diffinfo->{'nparents'}; $i++) {
2033 if ($from->{'href'}[$i]) {
2035 $cgi->a({-href
=>href
(action
=>"blobdiff",
2036 hash_parent
=>$diffinfo->{'from_id'}[$i],
2037 hash_parent_base
=>$parents[$i],
2038 file_parent
=>$from->{'file'}[$i],
2039 hash
=>$diffinfo->{'to_id'},
2041 file_name
=>$to->{'file'}),
2043 -title
=>"diff" . ($i+1)},
2046 $cgi->a({-href
=>$from->{'href'}[$i], -class=>"path"},
2047 esc_path
($from->{'file'}[$i]));
2049 $line = '--- /dev/null';
2051 $result .= qq!<div
class="diff from_file">$line</div
>\n!;
2056 #assert($line =~ m/^\+\+\+/) if DEBUG;
2057 # no extra formatting for "^+++ /dev/null"
2058 if ($line =~ m!^\+\+\+ "?b/!) {
2059 if ($to->{'href'}) {
2061 $cgi->a({-href
=>$to->{'href'}, -class=>"path"},
2062 esc_path
($to->{'file'}));
2065 esc_path
($to->{'file'});
2068 $result .= qq!<div
class="diff to_file">$line</div
>\n!;
2073 # create note for patch simplified by combined diff
2074 sub format_diff_cc_simplified
{
2075 my ($diffinfo, @parents) = @_;
2078 $result .= "<div class=\"diff header\">" .
2080 if (!is_deleted
($diffinfo)) {
2081 $result .= $cgi->a({-href
=> href
(action
=>"blob",
2083 hash
=>$diffinfo->{'to_id'},
2084 file_name
=>$diffinfo->{'to_file'}),
2086 esc_path
($diffinfo->{'to_file'}));
2088 $result .= esc_path
($diffinfo->{'to_file'});
2090 $result .= "</div>\n" . # class="diff header"
2091 "<div class=\"diff nodifferences\">" .
2093 "</div>\n"; # class="diff nodifferences"
2098 # format patch (diff) line (not to be used for diff headers)
2099 sub format_diff_line
{
2101 my ($from, $to) = @_;
2102 my $diff_class = "";
2106 if ($from && $to && ref($from->{'href'}) eq "ARRAY") {
2108 my $prefix = substr($line, 0, scalar @
{$from->{'href'}});
2109 if ($line =~ m/^\@{3}/) {
2110 $diff_class = " chunk_header";
2111 } elsif ($line =~ m/^\\/) {
2112 $diff_class = " incomplete";
2113 } elsif ($prefix =~ tr/+/+/) {
2114 $diff_class = " add";
2115 } elsif ($prefix =~ tr/-/-/) {
2116 $diff_class = " rem";
2119 # assume ordinary diff
2120 my $char = substr($line, 0, 1);
2122 $diff_class = " add";
2123 } elsif ($char eq '-') {
2124 $diff_class = " rem";
2125 } elsif ($char eq '@') {
2126 $diff_class = " chunk_header";
2127 } elsif ($char eq "\\") {
2128 $diff_class = " incomplete";
2131 $line = untabify
($line);
2132 if ($from && $to && $line =~ m/^\@{2} /) {
2133 my ($from_text, $from_start, $from_lines, $to_text, $to_start, $to_lines, $section) =
2134 $line =~ m/^\@{2} (-(\d+)(?:,(\d+))?) (\+(\d+)(?:,(\d+))?) \@{2}(.*)$/;
2136 $from_lines = 0 unless defined $from_lines;
2137 $to_lines = 0 unless defined $to_lines;
2139 if ($from->{'href'}) {
2140 $from_text = $cgi->a({-href
=>"$from->{'href'}#l$from_start",
2141 -class=>"list"}, $from_text);
2143 if ($to->{'href'}) {
2144 $to_text = $cgi->a({-href
=>"$to->{'href'}#l$to_start",
2145 -class=>"list"}, $to_text);
2147 $line = "<span class=\"chunk_info\">@@ $from_text $to_text @@</span>" .
2148 "<span class=\"section\">" . esc_html
($section, -nbsp
=>1) . "</span>";
2149 return "<div class=\"diff$diff_class\">$line</div>\n";
2150 } elsif ($from && $to && $line =~ m/^\@{3}/) {
2151 my ($prefix, $ranges, $section) = $line =~ m/^(\@+) (.*?) \@+(.*)$/;
2152 my (@from_text, @from_start, @from_nlines, $to_text, $to_start, $to_nlines);
2154 @from_text = split(' ', $ranges);
2155 for (my $i = 0; $i < @from_text; ++$i) {
2156 ($from_start[$i], $from_nlines[$i]) =
2157 (split(',', substr($from_text[$i], 1)), 0);
2160 $to_text = pop @from_text;
2161 $to_start = pop @from_start;
2162 $to_nlines = pop @from_nlines;
2164 $line = "<span class=\"chunk_info\">$prefix ";
2165 for (my $i = 0; $i < @from_text; ++$i) {
2166 if ($from->{'href'}[$i]) {
2167 $line .= $cgi->a({-href
=>"$from->{'href'}[$i]#l$from_start[$i]",
2168 -class=>"list"}, $from_text[$i]);
2170 $line .= $from_text[$i];
2174 if ($to->{'href'}) {
2175 $line .= $cgi->a({-href
=>"$to->{'href'}#l$to_start",
2176 -class=>"list"}, $to_text);
2180 $line .= " $prefix</span>" .
2181 "<span class=\"section\">" . esc_html
($section, -nbsp
=>1) . "</span>";
2182 return "<div class=\"diff$diff_class\">$line</div>\n";
2184 return "<div class=\"diff$diff_class\">" . esc_html
($line, -nbsp
=>1) . "</div>\n";
2187 # Generates undef or something like "_snapshot_" or "snapshot (_tbz2_ _zip_)",
2188 # linked. Pass the hash of the tree/commit to snapshot.
2189 sub format_snapshot_links
{
2191 my $num_fmts = @snapshot_fmts;
2192 if ($num_fmts > 1) {
2193 # A parenthesized list of links bearing format names.
2194 # e.g. "snapshot (_tar.gz_ _zip_)"
2195 return "snapshot (" . join(' ', map
2202 }, $known_snapshot_formats{$_}{'display'})
2203 , @snapshot_fmts) . ")";
2204 } elsif ($num_fmts == 1) {
2205 # A single "snapshot" link whose tooltip bears the format name.
2207 my ($fmt) = @snapshot_fmts;
2213 snapshot_format
=>$fmt
2215 -title
=> "in format: $known_snapshot_formats{$fmt}{'display'}"
2217 } else { # $num_fmts == 0
2222 ## ......................................................................
2223 ## functions returning values to be passed, perhaps after some
2224 ## transformation, to other functions; e.g. returning arguments to href()
2226 # returns hash to be passed to href to generate gitweb URL
2227 # in -title key it returns description of link
2229 my $format = shift || 'Atom';
2230 my %res = (action
=> lc($format));
2232 # feed links are possible only for project views
2233 return unless (defined $project);
2234 # some views should link to OPML, or to generic project feed,
2235 # or don't have specific feed yet (so they should use generic)
2236 return if ($action =~ /^(?:tags|heads|forks|tag|search)$/x);
2239 # branches refs uses 'refs/heads/' prefix (fullname) to differentiate
2240 # from tag links; this also makes possible to detect branch links
2241 if ((defined $hash_base && $hash_base =~ m!^refs/heads/(.*)$!) ||
2242 (defined $hash && $hash =~ m!^refs/heads/(.*)$!)) {
2245 # find log type for feed description (title)
2247 if (defined $file_name) {
2248 $type = "history of $file_name";
2249 $type .= "/" if ($action eq 'tree');
2250 $type .= " on '$branch'" if (defined $branch);
2252 $type = "log of $branch" if (defined $branch);
2255 $res{-title
} = $type;
2256 $res{'hash'} = (defined $branch ?
"refs/heads/$branch" : undef);
2257 $res{'file_name'} = $file_name;
2262 ## ----------------------------------------------------------------------
2263 ## git utility subroutines, invoking git commands
2265 # returns path to the core git executable and the --git-dir parameter as list
2267 $number_of_git_cmds++;
2268 return $GIT, '--git-dir='.$git_dir;
2271 # quote the given arguments for passing them to the shell
2272 # quote_command("command", "arg 1", "arg with ' and ! characters")
2273 # => "'command' 'arg 1' 'arg with '\'' and '\!' characters'"
2274 # Try to avoid using this function wherever possible.
2277 map { my $a = $_; $a =~ s/(['!])/'\\$1'/g; "'$a'" } @_ );
2280 # get HEAD ref of given project as hash
2281 sub git_get_head_hash
{
2282 return git_get_full_hash
(shift, 'HEAD');
2285 sub git_get_full_hash
{
2286 return git_get_hash
(@_);
2289 sub git_get_short_hash
{
2290 return git_get_hash
(@_, '--short=7');
2294 my ($project, $hash, @options) = @_;
2295 my $o_git_dir = $git_dir;
2297 $git_dir = "$projectroot/$project";
2298 if (open my $fd, '-|', git_cmd
(), 'rev-parse',
2299 '--verify', '-q', @options, $hash) {
2301 chomp $retval if defined $retval;
2304 if (defined $o_git_dir) {
2305 $git_dir = $o_git_dir;
2310 # get type of given object
2314 open my $fd, "-|", git_cmd
(), "cat-file", '-t', $hash or return;
2316 close $fd or return;
2321 # repository configuration
2322 our $config_file = '';
2325 # store multiple values for single key as anonymous array reference
2326 # single values stored directly in the hash, not as [ <value> ]
2327 sub hash_set_multi
{
2328 my ($hash, $key, $value) = @_;
2330 if (!exists $hash->{$key}) {
2331 $hash->{$key} = $value;
2332 } elsif (!ref $hash->{$key}) {
2333 $hash->{$key} = [ $hash->{$key}, $value ];
2335 push @
{$hash->{$key}}, $value;
2339 # return hash of git project configuration
2340 # optionally limited to some section, e.g. 'gitweb'
2341 sub git_parse_project_config
{
2342 my $section_regexp = shift;
2347 open my $fh, "-|", git_cmd
(), "config", '-z', '-l',
2350 while (my $keyval = <$fh>) {
2352 my ($key, $value) = split(/\n/, $keyval, 2);
2354 hash_set_multi
(\
%config, $key, $value)
2355 if (!defined $section_regexp || $key =~ /^(?:$section_regexp)\./o);
2362 # convert config value to boolean: 'true' or 'false'
2363 # no value, number > 0, 'true' and 'yes' values are true
2364 # rest of values are treated as false (never as error)
2365 sub config_to_bool
{
2368 return 1 if !defined $val; # section.key
2370 # strip leading and trailing whitespace
2374 return (($val =~ /^\d+$/ && $val) || # section.key = 1
2375 ($val =~ /^(?:true|yes)$/i)); # section.key = true
2378 # convert config value to simple decimal number
2379 # an optional value suffix of 'k', 'm', or 'g' will cause the value
2380 # to be multiplied by 1024, 1048576, or 1073741824
2384 # strip leading and trailing whitespace
2388 if (my ($num, $unit) = ($val =~ /^([0-9]*)([kmg])$/i)) {
2390 # unknown unit is treated as 1
2391 return $num * ($unit eq 'g' ?
1073741824 :
2392 $unit eq 'm' ?
1048576 :
2393 $unit eq 'k' ?
1024 : 1);
2398 # convert config value to array reference, if needed
2399 sub config_to_multi
{
2402 return ref($val) ?
$val : (defined($val) ?
[ $val ] : []);
2405 sub git_get_project_config
{
2406 my ($key, $type) = @_;
2408 return unless defined $git_dir;
2411 return unless ($key);
2412 $key =~ s/^gitweb\.//;
2413 return if ($key =~ m/\W/);
2416 if (defined $type) {
2419 unless ($type eq 'bool' || $type eq 'int');
2423 if (!defined $config_file ||
2424 $config_file ne "$git_dir/config") {
2425 %config = git_parse_project_config
('gitweb');
2426 $config_file = "$git_dir/config";
2429 # check if config variable (key) exists
2430 return unless exists $config{"gitweb.$key"};
2433 if (!defined $type) {
2434 return $config{"gitweb.$key"};
2435 } elsif ($type eq 'bool') {
2436 # backward compatibility: 'git config --bool' returns true/false
2437 return config_to_bool
($config{"gitweb.$key"}) ?
'true' : 'false';
2438 } elsif ($type eq 'int') {
2439 return config_to_int
($config{"gitweb.$key"});
2441 return $config{"gitweb.$key"};
2444 # get hash of given path at given ref
2445 sub git_get_hash_by_path
{
2447 my $path = shift || return undef;
2452 open my $fd, "-|", git_cmd
(), "ls-tree", $base, "--", $path
2453 or die_error
(500, "Open git-ls-tree failed");
2455 close $fd or return undef;
2457 if (!defined $line) {
2458 # there is no tree or hash given by $path at $base
2462 #'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'
2463 $line =~ m/^([0-9]+) (.+) ([0-9a-fA-F]{40})\t/;
2464 if (defined $type && $type ne $2) {
2465 # type doesn't match
2471 # get path of entry with given hash at given tree-ish (ref)
2472 # used to get 'from' filename for combined diff (merge commit) for renames
2473 sub git_get_path_by_hash
{
2474 my $base = shift || return;
2475 my $hash = shift || return;
2479 open my $fd, "-|", git_cmd
(), "ls-tree", '-r', '-t', '-z', $base
2481 while (my $line = <$fd>) {
2484 #'040000 tree 595596a6a9117ddba9fe379b6b012b558bac8423 gitweb'
2485 #'100644 blob e02e90f0429be0d2a69b76571101f20b8f75530f gitweb/README'
2486 if ($line =~ m/(?:[0-9]+) (?:.+) $hash\t(.+)$/) {
2495 ## ......................................................................
2496 ## git utility functions, directly accessing git repository
2498 sub git_get_project_description
{
2501 $git_dir = "$projectroot/$path";
2502 open my $fd, '<', "$git_dir/description"
2503 or return git_get_project_config
('description');
2506 if (defined $descr) {
2512 sub git_get_project_ctags
{
2516 $git_dir = "$projectroot/$path";
2517 opendir my $dh, "$git_dir/ctags"
2519 foreach (grep { -f
$_ } map { "$git_dir/ctags/$_" } readdir($dh)) {
2520 open my $ct, '<', $_ or next;
2524 my $ctag = $_; $ctag =~ s
#.*/##;
2525 $ctags->{$ctag} = $val;
2531 sub git_populate_project_tagcloud
{
2534 # First, merge different-cased tags; tags vote on casing
2536 foreach (keys %$ctags) {
2537 $ctags_lc{lc $_}->{count
} += $ctags->{$_};
2538 if (not $ctags_lc{lc $_}->{topcount
}
2539 or $ctags_lc{lc $_}->{topcount
} < $ctags->{$_}) {
2540 $ctags_lc{lc $_}->{topcount
} = $ctags->{$_};
2541 $ctags_lc{lc $_}->{topname
} = $_;
2546 if (eval { require HTML
::TagCloud
; 1; }) {
2547 $cloud = HTML
::TagCloud
->new;
2548 foreach (sort keys %ctags_lc) {
2549 # Pad the title with spaces so that the cloud looks
2551 my $title = $ctags_lc{$_}->{topname
};
2552 $title =~ s/ / /g;
2553 $title =~ s/^/ /g;
2554 $title =~ s/$/ /g;
2555 $cloud->add($title, $home_link."?by_tag=".$_, $ctags_lc{$_}->{count
});
2558 $cloud = \
%ctags_lc;
2563 sub git_show_project_tagcloud
{
2564 my ($cloud, $count) = @_;
2565 print STDERR
ref($cloud)."..\n";
2566 if (ref $cloud eq 'HTML::TagCloud') {
2567 return $cloud->html_and_css($count);
2569 my @tags = sort { $cloud->{$a}->{count
} <=> $cloud->{$b}->{count
} } keys %$cloud;
2570 return '<p align="center">' . join (', ', map {
2571 "<a href=\"$home_link?by_tag=$_\">$cloud->{$_}->{topname}</a>"
2572 } splice(@tags, 0, $count)) . '</p>';
2576 sub git_get_project_url_list
{
2579 $git_dir = "$projectroot/$path";
2580 open my $fd, '<', "$git_dir/cloneurl"
2581 or return wantarray ?
2582 @
{ config_to_multi
(git_get_project_config
('url')) } :
2583 config_to_multi
(git_get_project_config
('url'));
2584 my @git_project_url_list = map { chomp; $_ } <$fd>;
2587 return wantarray ?
@git_project_url_list : \
@git_project_url_list;
2590 sub git_get_projects_list
{
2595 $filter =~ s/\.git$//;
2597 my $check_forks = gitweb_check_feature
('forks');
2599 if (-d
$projects_list) {
2600 # search in directory
2601 my $dir = $projects_list . ($filter ?
"/$filter" : '');
2602 # remove the trailing "/"
2604 my $pfxlen = length("$dir");
2605 my $pfxdepth = ($dir =~ tr!/!!);
2608 follow_fast
=> 1, # follow symbolic links
2609 follow_skip
=> 2, # ignore duplicates
2610 dangling_symlinks
=> 0, # ignore dangling symlinks, silently
2613 our $project_maxdepth;
2615 # skip project-list toplevel, if we get it.
2616 return if (m!^[/.]$!);
2617 # only directories can be git repositories
2618 return unless (-d
$_);
2619 # don't traverse too deep (Find is super slow on os x)
2620 if (($File::Find
::name
=~ tr!/!!) - $pfxdepth > $project_maxdepth) {
2621 $File::Find
::prune
= 1;
2625 my $subdir = substr($File::Find
::name
, $pfxlen + 1);
2626 # we check related file in $projectroot
2627 my $path = ($filter ?
"$filter/" : '') . $subdir;
2628 if (check_export_ok
("$projectroot/$path")) {
2629 push @list, { path
=> $path };
2630 $File::Find
::prune
= 1;
2635 } elsif (-f
$projects_list) {
2636 # read from file(url-encoded):
2637 # 'git%2Fgit.git Linus+Torvalds'
2638 # 'libs%2Fklibc%2Fklibc.git H.+Peter+Anvin'
2639 # 'linux%2Fhotplug%2Fudev.git Greg+Kroah-Hartman'
2641 open my $fd, '<', $projects_list or return;
2643 while (my $line = <$fd>) {
2645 my ($path, $owner) = split ' ', $line;
2646 $path = unescape
($path);
2647 $owner = unescape
($owner);
2648 if (!defined $path) {
2651 if ($filter ne '') {
2652 # looking for forks;
2653 my $pfx = substr($path, 0, length($filter));
2654 if ($pfx ne $filter) {
2657 my $sfx = substr($path, length($filter));
2658 if ($sfx !~ /^\/.*\
.git
$/) {
2661 } elsif ($check_forks) {
2663 foreach my $filter (keys %paths) {
2664 # looking for forks;
2665 my $pfx = substr($path, 0, length($filter));
2666 if ($pfx ne $filter) {
2669 my $sfx = substr($path, length($filter));
2670 if ($sfx !~ /^\/.*\
.git
$/) {
2673 # is a fork, don't include it in
2678 if (check_export_ok
("$projectroot/$path")) {
2681 owner
=> to_utf8
($owner),
2684 (my $forks_path = $path) =~ s/\.git$//;
2685 $paths{$forks_path}++;
2693 our $gitweb_project_owner = undef;
2694 sub git_get_project_list_from_file
{
2696 return if (defined $gitweb_project_owner);
2698 $gitweb_project_owner = {};
2699 # read from file (url-encoded):
2700 # 'git%2Fgit.git Linus+Torvalds'
2701 # 'libs%2Fklibc%2Fklibc.git H.+Peter+Anvin'
2702 # 'linux%2Fhotplug%2Fudev.git Greg+Kroah-Hartman'
2703 if (-f
$projects_list) {
2704 open(my $fd, '<', $projects_list);
2705 while (my $line = <$fd>) {
2707 my ($pr, $ow) = split ' ', $line;
2708 $pr = unescape
($pr);
2709 $ow = unescape
($ow);
2710 $gitweb_project_owner->{$pr} = to_utf8
($ow);
2716 sub git_get_project_owner
{
2717 my $project = shift;
2720 return undef unless $project;
2721 $git_dir = "$projectroot/$project";
2723 if (!defined $gitweb_project_owner) {
2724 git_get_project_list_from_file
();
2727 if (exists $gitweb_project_owner->{$project}) {
2728 $owner = $gitweb_project_owner->{$project};
2730 if (!defined $owner){
2731 $owner = git_get_project_config
('owner');
2733 if (!defined $owner) {
2734 $owner = get_file_owner
("$git_dir");
2740 sub git_get_last_activity
{
2744 $git_dir = "$projectroot/$path";
2745 open($fd, "-|", git_cmd
(), 'for-each-ref',
2746 '--format=%(committer)',
2747 '--sort=-committerdate',
2749 'refs/heads') or return;
2750 my $most_recent = <$fd>;
2751 close $fd or return;
2752 if (defined $most_recent &&
2753 $most_recent =~ / (\d+) [-+][01]\d\d\d$/) {
2755 my $age = time - $timestamp;
2756 return ($age, age_string
($age));
2758 return (undef, undef);
2761 sub git_get_references
{
2762 my $type = shift || "";
2764 # 5dc01c595e6c6ec9ccda4f6f69c131c0dd945f8c refs/tags/v2.6.11
2765 # c39ae07f393806ccf406ef966e9a15afc43cc36a refs/tags/v2.6.11^{}
2766 open my $fd, "-|", git_cmd
(), "show-ref", "--dereference",
2767 ($type ?
("--", "refs/$type") : ()) # use -- <pattern> if $type
2770 while (my $line = <$fd>) {
2772 if ($line =~ m!^([0-9a-fA-F]{40})\srefs/($type.*)$!) {
2773 if (defined $refs{$1}) {
2774 push @
{$refs{$1}}, $2;
2780 close $fd or return;
2784 sub git_get_rev_name_tags
{
2785 my $hash = shift || return undef;
2787 open my $fd, "-|", git_cmd
(), "name-rev", "--tags", $hash
2789 my $name_rev = <$fd>;
2792 if ($name_rev =~ m
|^$hash tags
/(.*)$|) {
2795 # catches also '$hash undefined' output
2800 ## ----------------------------------------------------------------------
2801 ## parse to hash functions
2805 my $tz = shift || "-0000";
2808 my @months = ("Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec");
2809 my @days = ("Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat");
2810 my ($sec, $min, $hour, $mday, $mon, $year, $wday, $yday) = gmtime($epoch);
2811 $date{'hour'} = $hour;
2812 $date{'minute'} = $min;
2813 $date{'mday'} = $mday;
2814 $date{'day'} = $days[$wday];
2815 $date{'month'} = $months[$mon];
2816 $date{'rfc2822'} = sprintf "%s, %d %s %4d %02d:%02d:%02d +0000",
2817 $days[$wday], $mday, $months[$mon], 1900+$year, $hour ,$min, $sec;
2818 $date{'mday-time'} = sprintf "%d %s %02d:%02d",
2819 $mday, $months[$mon], $hour ,$min;
2820 $date{'iso-8601'} = sprintf "%04d-%02d-%02dT%02d:%02d:%02dZ",
2821 1900+$year, 1+$mon, $mday, $hour ,$min, $sec;
2823 $tz =~ m/^([+\-][0-9][0-9])([0-9][0-9])$/;
2824 my $local = $epoch + ((int $1 + ($2/60)) * 3600);
2825 ($sec, $min, $hour, $mday, $mon, $year, $wday, $yday) = gmtime($local);
2826 $date{'hour_local'} = $hour;
2827 $date{'minute_local'} = $min;
2828 $date{'tz_local'} = $tz;
2829 $date{'iso-tz'} = sprintf("%04d-%02d-%02d %02d:%02d:%02d %s",
2830 1900+$year, $mon+1, $mday,
2831 $hour, $min, $sec, $tz);
2840 open my $fd, "-|", git_cmd
(), "cat-file", "tag", $tag_id or return;
2841 $tag{'id'} = $tag_id;
2842 while (my $line = <$fd>) {
2844 if ($line =~ m/^object ([0-9a-fA-F]{40})$/) {
2845 $tag{'object'} = $1;
2846 } elsif ($line =~ m/^type (.+)$/) {
2848 } elsif ($line =~ m/^tag (.+)$/) {
2850 } elsif ($line =~ m/^tagger (.*) ([0-9]+) (.*)$/) {
2851 $tag{'author'} = $1;
2852 $tag{'author_epoch'} = $2;
2853 $tag{'author_tz'} = $3;
2854 if ($tag{'author'} =~ m/^([^<]+) <([^>]*)>/) {
2855 $tag{'author_name'} = $1;
2856 $tag{'author_email'} = $2;
2858 $tag{'author_name'} = $tag{'author'};
2860 } elsif ($line =~ m/--BEGIN/) {
2861 push @comment, $line;
2863 } elsif ($line eq "") {
2867 push @comment, <$fd>;
2868 $tag{'comment'} = \
@comment;
2869 close $fd or return;
2870 if (!defined $tag{'name'}) {
2876 sub parse_commit_text
{
2877 my ($commit_text, $withparents) = @_;
2878 my @commit_lines = split '\n', $commit_text;
2881 pop @commit_lines; # Remove '\0'
2883 if (! @commit_lines) {
2887 my $header = shift @commit_lines;
2888 if ($header !~ m/^[0-9a-fA-F]{40}/) {
2891 ($co{'id'}, my @parents) = split ' ', $header;
2892 while (my $line = shift @commit_lines) {
2893 last if $line eq "\n";
2894 if ($line =~ m/^tree ([0-9a-fA-F]{40})$/) {
2896 } elsif ((!defined $withparents) && ($line =~ m/^parent ([0-9a-fA-F]{40})$/)) {
2898 } elsif ($line =~ m/^author (.*) ([0-9]+) (.*)$/) {
2899 $co{'author'} = to_utf8
($1);
2900 $co{'author_epoch'} = $2;
2901 $co{'author_tz'} = $3;
2902 if ($co{'author'} =~ m/^([^<]+) <([^>]*)>/) {
2903 $co{'author_name'} = $1;
2904 $co{'author_email'} = $2;
2906 $co{'author_name'} = $co{'author'};
2908 } elsif ($line =~ m/^committer (.*) ([0-9]+) (.*)$/) {
2909 $co{'committer'} = to_utf8
($1);
2910 $co{'committer_epoch'} = $2;
2911 $co{'committer_tz'} = $3;
2912 if ($co{'committer'} =~ m/^([^<]+) <([^>]*)>/) {
2913 $co{'committer_name'} = $1;
2914 $co{'committer_email'} = $2;
2916 $co{'committer_name'} = $co{'committer'};
2920 if (!defined $co{'tree'}) {
2923 $co{'parents'} = \
@parents;
2924 $co{'parent'} = $parents[0];
2926 foreach my $title (@commit_lines) {
2929 $co{'title'} = chop_str
($title, 80, 5);
2930 # remove leading stuff of merges to make the interesting part visible
2931 if (length($title) > 50) {
2932 $title =~ s/^Automatic //;
2933 $title =~ s/^merge (of|with) /Merge ... /i;
2934 if (length($title) > 50) {
2935 $title =~ s/(http|rsync):\/\///;
2937 if (length($title) > 50) {
2938 $title =~ s/(master|www|rsync)\.//;
2940 if (length($title) > 50) {
2941 $title =~ s/kernel.org:?//;
2943 if (length($title) > 50) {
2944 $title =~ s/\/pub\/scm//;
2947 $co{'title_short'} = chop_str
($title, 50, 5);
2951 if (! defined $co{'title'} || $co{'title'} eq "") {
2952 $co{'title'} = $co{'title_short'} = '(no commit message)';
2954 # remove added spaces
2955 foreach my $line (@commit_lines) {
2958 $co{'comment'} = \
@commit_lines;
2960 my $age = time - $co{'committer_epoch'};
2962 $co{'age_string'} = age_string
($age);
2963 my ($sec, $min, $hour, $mday, $mon, $year, $wday, $yday) = gmtime($co{'committer_epoch'});
2964 if ($age > 60*60*24*7*2) {
2965 $co{'age_string_date'} = sprintf "%4i-%02u-%02i", 1900 + $year, $mon+1, $mday;
2966 $co{'age_string_age'} = $co{'age_string'};
2968 $co{'age_string_date'} = $co{'age_string'};
2969 $co{'age_string_age'} = sprintf "%4i-%02u-%02i", 1900 + $year, $mon+1, $mday;
2975 my ($commit_id) = @_;
2980 open my $fd, "-|", git_cmd
(), "rev-list",
2986 or die_error
(500, "Open git-rev-list failed");
2987 %co = parse_commit_text
(<$fd>, 1);
2994 my ($commit_id, $maxcount, $skip, $filename, @args) = @_;
3002 open my $fd, "-|", git_cmd
(), "rev-list",
3005 ("--max-count=" . $maxcount),
3006 ("--skip=" . $skip),
3010 ($filename ?
($filename) : ())
3011 or die_error
(500, "Open git-rev-list failed");
3012 while (my $line = <$fd>) {
3013 my %co = parse_commit_text
($line);
3018 return wantarray ?
@cos : \
@cos;
3021 # parse line of git-diff-tree "raw" output
3022 sub parse_difftree_raw_line
{
3026 # ':100644 100644 03b218260e99b78c6df0ed378e59ed9205ccc96d 3b93d5e7cc7f7dd4ebed13a5cc1a4ad976fc94d8 M ls-files.c'
3027 # ':100644 100644 7f9281985086971d3877aca27704f2aaf9c448ce bc190ebc71bbd923f2b728e505408f5e54bd073a M rev-tree.c'
3028 if ($line =~ m/^:([0-7]{6}) ([0-7]{6}) ([0-9a-fA-F]{40}) ([0-9a-fA-F]{40}) (.)([0-9]{0,3})\t(.*)$/) {
3029 $res{'from_mode'} = $1;
3030 $res{'to_mode'} = $2;
3031 $res{'from_id'} = $3;
3033 $res{'status'} = $5;
3034 $res{'similarity'} = $6;
3035 if ($res{'status'} eq 'R' || $res{'status'} eq 'C') { # renamed or copied
3036 ($res{'from_file'}, $res{'to_file'}) = map { unquote
($_) } split("\t", $7);
3038 $res{'from_file'} = $res{'to_file'} = $res{'file'} = unquote
($7);
3041 # '::100755 100755 100755 60e79ca1b01bc8b057abe17ddab484699a7f5fdb 94067cc5f73388f33722d52ae02f44692bc07490 94067cc5f73388f33722d52ae02f44692bc07490 MR git-gui/git-gui.sh'
3042 # combined diff (for merge commit)
3043 elsif ($line =~ s/^(::+)((?:[0-7]{6} )+)((?:[0-9a-fA-F]{40} )+)([a-zA-Z]+)\t(.*)$//) {
3044 $res{'nparents'} = length($1);
3045 $res{'from_mode'} = [ split(' ', $2) ];
3046 $res{'to_mode'} = pop @
{$res{'from_mode'}};
3047 $res{'from_id'} = [ split(' ', $3) ];
3048 $res{'to_id'} = pop @
{$res{'from_id'}};
3049 $res{'status'} = [ split('', $4) ];
3050 $res{'to_file'} = unquote
($5);
3052 # 'c512b523472485aef4fff9e57b229d9d243c967f'
3053 elsif ($line =~ m/^([0-9a-fA-F]{40})$/) {
3054 $res{'commit'} = $1;
3057 return wantarray ?
%res : \
%res;
3060 # wrapper: return parsed line of git-diff-tree "raw" output
3061 # (the argument might be raw line, or parsed info)
3062 sub parsed_difftree_line
{
3063 my $line_or_ref = shift;
3065 if (ref($line_or_ref) eq "HASH") {
3066 # pre-parsed (or generated by hand)
3067 return $line_or_ref;
3069 return parse_difftree_raw_line
($line_or_ref);
3073 # parse line of git-ls-tree output
3074 sub parse_ls_tree_line
{
3080 #'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa 16717 panic.c'
3081 $line =~ m/^([0-9]+) (.+) ([0-9a-fA-F]{40}) +(-|[0-9]+)\t(.+)$/s;
3090 $res{'name'} = unquote
($5);
3093 #'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'
3094 $line =~ m/^([0-9]+) (.+) ([0-9a-fA-F]{40})\t(.+)$/s;
3102 $res{'name'} = unquote
($4);
3106 return wantarray ?
%res : \
%res;
3109 # generates _two_ hashes, references to which are passed as 2 and 3 argument
3110 sub parse_from_to_diffinfo
{
3111 my ($diffinfo, $from, $to, @parents) = @_;
3113 if ($diffinfo->{'nparents'}) {
3115 $from->{'file'} = [];
3116 $from->{'href'} = [];
3117 fill_from_file_info
($diffinfo, @parents)
3118 unless exists $diffinfo->{'from_file'};
3119 for (my $i = 0; $i < $diffinfo->{'nparents'}; $i++) {
3120 $from->{'file'}[$i] =
3121 defined $diffinfo->{'from_file'}[$i] ?
3122 $diffinfo->{'from_file'}[$i] :
3123 $diffinfo->{'to_file'};
3124 if ($diffinfo->{'status'}[$i] ne "A") { # not new (added) file
3125 $from->{'href'}[$i] = href
(action
=>"blob",
3126 hash_base
=>$parents[$i],
3127 hash
=>$diffinfo->{'from_id'}[$i],
3128 file_name
=>$from->{'file'}[$i]);
3130 $from->{'href'}[$i] = undef;
3134 # ordinary (not combined) diff
3135 $from->{'file'} = $diffinfo->{'from_file'};
3136 if ($diffinfo->{'status'} ne "A") { # not new (added) file
3137 $from->{'href'} = href
(action
=>"blob", hash_base
=>$hash_parent,
3138 hash
=>$diffinfo->{'from_id'},
3139 file_name
=>$from->{'file'});
3141 delete $from->{'href'};
3145 $to->{'file'} = $diffinfo->{'to_file'};
3146 if (!is_deleted
($diffinfo)) { # file exists in result
3147 $to->{'href'} = href
(action
=>"blob", hash_base
=>$hash,
3148 hash
=>$diffinfo->{'to_id'},
3149 file_name
=>$to->{'file'});
3151 delete $to->{'href'};
3155 ## ......................................................................
3156 ## parse to array of hashes functions
3158 sub git_get_heads_list
{
3162 open my $fd, '-|', git_cmd
(), 'for-each-ref',
3163 ($limit ?
'--count='.($limit+1) : ()), '--sort=-committerdate',
3164 '--format=%(objectname) %(refname) %(subject)%00%(committer)',
3167 while (my $line = <$fd>) {
3171 my ($refinfo, $committerinfo) = split(/\0/, $line);
3172 my ($hash, $name, $title) = split(' ', $refinfo, 3);
3173 my ($committer, $epoch, $tz) =
3174 ($committerinfo =~ /^(.*) ([0-9]+) (.*)$/);
3175 $ref_item{'fullname'} = $name;
3176 $name =~ s!^refs/heads/!!;
3178 $ref_item{'name'} = $name;
3179 $ref_item{'id'} = $hash;
3180 $ref_item{'title'} = $title || '(no commit message)';
3181 $ref_item{'epoch'} = $epoch;
3183 $ref_item{'age'} = age_string
(time - $ref_item{'epoch'});
3185 $ref_item{'age'} = "unknown";
3188 push @headslist, \
%ref_item;
3192 return wantarray ?
@headslist : \
@headslist;
3195 sub git_get_tags_list
{
3199 open my $fd, '-|', git_cmd
(), 'for-each-ref',
3200 ($limit ?
'--count='.($limit+1) : ()), '--sort=-creatordate',
3201 '--format=%(objectname) %(objecttype) %(refname) '.
3202 '%(*objectname) %(*objecttype) %(subject)%00%(creator)',
3205 while (my $line = <$fd>) {
3209 my ($refinfo, $creatorinfo) = split(/\0/, $line);
3210 my ($id, $type, $name, $refid, $reftype, $title) = split(' ', $refinfo, 6);
3211 my ($creator, $epoch, $tz) =
3212 ($creatorinfo =~ /^(.*) ([0-9]+) (.*)$/);
3213 $ref_item{'fullname'} = $name;
3214 $name =~ s!^refs/tags/!!;
3216 $ref_item{'type'} = $type;
3217 $ref_item{'id'} = $id;
3218 $ref_item{'name'} = $name;
3219 if ($type eq "tag") {
3220 $ref_item{'subject'} = $title;
3221 $ref_item{'reftype'} = $reftype;
3222 $ref_item{'refid'} = $refid;
3224 $ref_item{'reftype'} = $type;
3225 $ref_item{'refid'} = $id;
3228 if ($type eq "tag" || $type eq "commit") {
3229 $ref_item{'epoch'} = $epoch;
3231 $ref_item{'age'} = age_string
(time - $ref_item{'epoch'});
3233 $ref_item{'age'} = "unknown";
3237 push @tagslist, \
%ref_item;
3241 return wantarray ?
@tagslist : \
@tagslist;
3244 ## ----------------------------------------------------------------------
3245 ## filesystem-related functions
3247 sub get_file_owner
{
3250 my ($dev, $ino, $mode, $nlink, $st_uid, $st_gid, $rdev, $size) = stat($path);
3251 my ($name, $passwd, $uid, $gid, $quota, $comment, $gcos, $dir, $shell) = getpwuid($st_uid);
3252 if (!defined $gcos) {
3256 $owner =~ s/[,;].*$//;
3257 return to_utf8
($owner);
3260 # assume that file exists
3262 my $filename = shift;
3264 open my $fd, '<', $filename;
3265 print map { to_utf8
($_) } <$fd>;
3269 ## ......................................................................
3270 ## mimetype related functions
3272 sub mimetype_guess_file
{
3273 my $filename = shift;
3274 my $mimemap = shift;
3275 -r
$mimemap or return undef;
3278 open(my $mh, '<', $mimemap) or return undef;
3280 next if m/^#/; # skip comments
3281 my ($mimetype, $exts) = split(/\t+/);
3282 if (defined $exts) {
3283 my @exts = split(/\s+/, $exts);
3284 foreach my $ext (@exts) {
3285 $mimemap{$ext} = $mimetype;
3291 $filename =~ /\.([^.]*)$/;
3292 return $mimemap{$1};
3295 sub mimetype_guess
{
3296 my $filename = shift;
3298 $filename =~ /\./ or return undef;
3300 if ($mimetypes_file) {
3301 my $file = $mimetypes_file;
3302 if ($file !~ m!^/!) { # if it is relative path
3303 # it is relative to project
3304 $file = "$projectroot/$project/$file";
3306 $mime = mimetype_guess_file
($filename, $file);
3308 $mime ||= mimetype_guess_file
($filename, '/etc/mime.types');
3314 my $filename = shift;
3317 my $mime = mimetype_guess
($filename);
3318 $mime and return $mime;
3322 return $default_blob_plain_mimetype unless $fd;
3325 return 'text/plain';
3326 } elsif (! $filename) {
3327 return 'application/octet-stream';
3328 } elsif ($filename =~ m/\.png$/i) {
3330 } elsif ($filename =~ m/\.gif$/i) {
3332 } elsif ($filename =~ m/\.jpe?g$/i) {
3333 return 'image/jpeg';
3335 return 'application/octet-stream';
3339 sub blob_contenttype
{
3340 my ($fd, $file_name, $type) = @_;
3342 $type ||= blob_mimetype
($fd, $file_name);
3343 if ($type eq 'text/plain' && defined $default_text_plain_charset) {
3344 $type .= "; charset=$default_text_plain_charset";
3350 # guess file syntax for syntax highlighting; return undef if no highlighting
3351 # the name of syntax can (in the future) depend on syntax highlighter used
3352 sub guess_file_syntax
{
3353 my ($highlight, $mimetype, $file_name) = @_;
3354 return undef unless ($highlight && defined $file_name);
3355 my $basename = basename
($file_name, '.in');
3356 return $highlight_basename{$basename}
3357 if exists $highlight_basename{$basename};
3359 $basename =~ /\.([^.]*)$/;
3360 my $ext = $1 or return undef;
3361 return $highlight_ext{$ext}
3362 if exists $highlight_ext{$ext};
3367 # run highlighter and return FD of its output,
3368 # or return original FD if no highlighting
3369 sub run_highlighter
{
3370 my ($fd, $highlight, $syntax) = @_;
3371 return $fd unless ($highlight && defined $syntax);
3374 or die_error
(404, "Reading blob failed");
3375 open $fd, quote_command
(git_cmd
(), "cat-file", "blob", $hash)." | ".
3376 quote_command
($highlight_bin).
3377 " --xhtml --fragment --syntax $syntax |"
3378 or die_error
(500, "Couldn't open file or run syntax highlighter");
3382 ## ======================================================================
3383 ## functions printing HTML: header, footer, error page
3385 sub get_page_title
{
3386 my $title = to_utf8
($site_name);
3388 return $title unless (defined $project);
3389 $title .= " - " . to_utf8
($project);
3391 return $title unless (defined $action);
3392 $title .= "/$action"; # $action is US-ASCII (7bit ASCII)
3394 return $title unless (defined $file_name);
3395 $title .= " - " . esc_path
($file_name);
3396 if ($action eq "tree" && $file_name !~ m
|/$|) {
3403 sub git_header_html
{
3404 my $status = shift || "200 OK";
3405 my $expires = shift;
3408 my $title = get_page_title
();
3410 # require explicit support from the UA if we are to send the page as
3411 # 'application/xhtml+xml', otherwise send it as plain old 'text/html'.
3412 # we have to do this because MSIE sometimes globs '*/*', pretending to
3413 # support xhtml+xml but choking when it gets what it asked for.
3414 if (defined $cgi->http('HTTP_ACCEPT') &&
3415 $cgi->http('HTTP_ACCEPT') =~ m/(,|;|\s|^)application\/xhtml\
+xml
(,|;|\s
|$)/ &&
3416 $cgi->Accept('application/xhtml+xml') != 0) {
3417 $content_type = 'application/xhtml+xml';
3419 $content_type = 'text/html';
3421 print $cgi->header(-type
=>$content_type, -charset
=> 'utf-8',
3422 -status
=> $status, -expires
=> $expires)
3423 unless ($opts{'-no_http_header'});
3424 my $mod_perl_version = $ENV{'MOD_PERL'} ?
" $ENV{'MOD_PERL'}" : '';
3426 <?xml version="1.0" encoding="utf-8"?>
3427 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3428 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" lang="en-US">
3429 <!-- git web interface version $version, (C) 2005-2006, Kay Sievers <kay.sievers\@vrfy.org>, Christian Gierke -->
3430 <!-- git core binaries version $git_version -->
3432 <meta http-equiv="content-type" content="$content_type; charset=utf-8"/>
3433 <meta name="generator" content="gitweb/$version git/$git_version$mod_perl_version"/>
3434 <meta name="robots" content="index, nofollow"/>
3435 <title>$title</title>
3437 # the stylesheet, favicon etc urls won't work correctly with path_info
3438 # unless we set the appropriate base URL
3439 if ($ENV{'PATH_INFO'}) {
3440 print "<base href=\"".esc_url
($base_url)."\" />\n";
3442 # print out each stylesheet that exist, providing backwards capability
3443 # for those people who defined $stylesheet in a config file
3444 if (defined $stylesheet) {
3445 print '<link rel="stylesheet" type="text/css" href="'.$stylesheet.'"/>'."\n";
3447 foreach my $stylesheet (@stylesheets) {
3448 next unless $stylesheet;
3449 print '<link rel="stylesheet" type="text/css" href="'.$stylesheet.'"/>'."\n";
3452 if (defined $project) {
3453 my %href_params = get_feed_info
();
3454 if (!exists $href_params{'-title'}) {
3455 $href_params{'-title'} = 'log';
3458 foreach my $format qw(RSS Atom) {
3459 my $type = lc($format);
3461 '-rel' => 'alternate',
3462 '-title' => "$project - $href_params{'-title'} - $format feed",
3463 '-type' => "application/$type+xml"
3466 $href_params{'action'} = $type;
3467 $link_attr{'-href'} = href
(%href_params);
3469 "rel=\"$link_attr{'-rel'}\" ".
3470 "title=\"$link_attr{'-title'}\" ".
3471 "href=\"$link_attr{'-href'}\" ".
3472 "type=\"$link_attr{'-type'}\" ".
3475 $href_params{'extra_options'} = '--no-merges';
3476 $link_attr{'-href'} = href
(%href_params);
3477 $link_attr{'-title'} .= ' (no merges)';
3479 "rel=\"$link_attr{'-rel'}\" ".
3480 "title=\"$link_attr{'-title'}\" ".
3481 "href=\"$link_attr{'-href'}\" ".
3482 "type=\"$link_attr{'-type'}\" ".
3487 printf('<link rel="alternate" title="%s projects list" '.
3488 'href="%s" type="text/plain; charset=utf-8" />'."\n",
3489 $site_name, href
(project
=>undef, action
=>"project_index"));
3490 printf('<link rel="alternate" title="%s projects feeds" '.
3491 'href="%s" type="text/x-opml" />'."\n",
3492 $site_name, href
(project
=>undef, action
=>"opml"));
3494 if (defined $favicon) {
3495 print qq(<link rel
="shortcut icon" href
="$favicon" type
="image/png" />\n);
3501 if (defined $site_header && -f
$site_header) {
3502 insert_file
($site_header);
3505 print "<div class=\"page_header\">\n" .
3506 $cgi->a({-href
=> esc_url
($logo_url),
3507 -title
=> $logo_label},
3508 qq(<img src
="$logo" width
="72" height
="27" alt
="git" class="logo"/>));
3509 print $cgi->a({-href
=> esc_url
($home_link)}, $home_link_str) . " / ";
3510 if (defined $project) {
3511 print $cgi->a({-href
=> href
(action
=>"summary")}, esc_html
($project));
3512 if (defined $action) {
3519 my $have_search = gitweb_check_feature
('search');
3520 if (defined $project && $have_search) {
3521 if (!defined $searchtext) {
3525 if (defined $hash_base) {
3526 $search_hash = $hash_base;
3527 } elsif (defined $hash) {
3528 $search_hash = $hash;
3530 $search_hash = "HEAD";
3532 my $action = $my_uri;
3533 my $use_pathinfo = gitweb_check_feature
('pathinfo');
3534 if ($use_pathinfo) {
3535 $action .= "/".esc_url
($project);
3537 print $cgi->startform(-method
=> "get", -action
=> $action) .
3538 "<div class=\"search\">\n" .
3540 $cgi->input({-name
=>"p", -value
=>$project, -type
=>"hidden"}) . "\n") .
3541 $cgi->input({-name
=>"a", -value
=>"search", -type
=>"hidden"}) . "\n" .
3542 $cgi->input({-name
=>"h", -value
=>$search_hash, -type
=>"hidden"}) . "\n" .
3543 $cgi->popup_menu(-name
=> 'st', -default => 'commit',
3544 -values => ['commit', 'grep', 'author', 'committer', 'pickaxe']) .
3545 $cgi->sup($cgi->a({-href
=> href
(action
=>"search_help")}, "?")) .
3547 $cgi->textfield(-name
=> "s", -value
=> $searchtext) . "\n" .
3548 "<span title=\"Extended regular expression\">" .
3549 $cgi->checkbox(-name
=> 'sr', -value
=> 1, -label
=> 're',
3550 -checked
=> $search_use_regexp) .
3553 $cgi->end_form() . "\n";
3557 sub git_footer_html
{
3558 my $feed_class = 'rss_logo';
3560 print "<div class=\"page_footer\">\n";
3561 if (defined $project) {
3562 my $descr = git_get_project_description
($project);
3563 if (defined $descr) {
3564 print "<div class=\"page_footer_text\">" . esc_html
($descr) . "</div>\n";
3567 my %href_params = get_feed_info
();
3568 if (!%href_params) {
3569 $feed_class .= ' generic';
3571 $href_params{'-title'} ||= 'log';
3573 foreach my $format qw(RSS Atom) {
3574 $href_params{'action'} = lc($format);
3575 print $cgi->a({-href
=> href
(%href_params),
3576 -title
=> "$href_params{'-title'} $format feed",
3577 -class => $feed_class}, $format)."\n";
3581 print $cgi->a({-href
=> href
(project
=>undef, action
=>"opml"),
3582 -class => $feed_class}, "OPML") . " ";
3583 print $cgi->a({-href
=> href
(project
=>undef, action
=>"project_index"),
3584 -class => $feed_class}, "TXT") . "\n";
3586 print "</div>\n"; # class="page_footer"
3588 if (defined $t0 && gitweb_check_feature
('timed')) {
3589 print "<div id=\"generating_info\">\n";
3590 print 'This page took '.
3591 '<span id="generating_time" class="time_span">'.
3592 Time
::HiRes
::tv_interval
($t0, [Time
::HiRes
::gettimeofday
()]).
3595 '<span id="generating_cmd">'.
3596 $number_of_git_cmds.
3597 '</span> git commands '.
3599 print "</div>\n"; # class="page_footer"
3602 if (defined $site_footer && -f
$site_footer) {
3603 insert_file
($site_footer);
3606 print qq!<script type
="text/javascript" src
="$javascript"></script
>\n!;
3607 if (defined $action &&
3608 $action eq 'blame_incremental') {
3609 print qq!<script type
="text/javascript">\n!.
3610 qq!startBlame
("!. href(action=>"blame_data
", -replay=>1) .qq!",\n!.
3611 qq! "!. href() .qq!");\n!.
3613 } elsif (gitweb_check_feature
('javascript-actions')) {
3614 print qq!<script type
="text/javascript">\n!.
3615 qq!window
.onload
= fixLinks
;\n!.
3623 # die_error(<http_status_code>, <error_message>[, <detailed_html_description>])
3624 # Example: die_error(404, 'Hash not found')
3625 # By convention, use the following status codes (as defined in RFC 2616):
3626 # 400: Invalid or missing CGI parameters, or
3627 # requested object exists but has wrong type.
3628 # 403: Requested feature (like "pickaxe" or "snapshot") not enabled on
3629 # this server or project.
3630 # 404: Requested object/revision/project doesn't exist.
3631 # 500: The server isn't configured properly, or
3632 # an internal error occurred (e.g. failed assertions caused by bugs), or
3633 # an unknown error occurred (e.g. the git binary died unexpectedly).
3634 # 503: The server is currently unavailable (because it is overloaded,
3635 # or down for maintenance). Generally, this is a temporary state.
3637 my $status = shift || 500;
3638 my $error = esc_html
(shift) || "Internal Server Error";
3642 my %http_responses = (
3643 400 => '400 Bad Request',
3644 403 => '403 Forbidden',
3645 404 => '404 Not Found',
3646 500 => '500 Internal Server Error',
3647 503 => '503 Service Unavailable',
3649 git_header_html
($http_responses{$status}, undef, %opts);
3651 <div class="page_body">
3656 if (defined $extra) {
3664 unless ($opts{'-error_handler'});
3667 ## ----------------------------------------------------------------------
3668 ## functions printing or outputting HTML: navigation
3670 sub git_print_page_nav
{
3671 my ($current, $suppress, $head, $treehead, $treebase, $extra) = @_;
3672 $extra = '' if !defined $extra; # pager or formats
3674 my @navs = qw(summary shortlog log commit commitdiff tree);
3676 @navs = grep { $_ ne $suppress } @navs;
3679 my %arg = map { $_ => {action
=>$_} } @navs;
3680 if (defined $head) {
3681 for (qw(commit commitdiff)) {
3682 $arg{$_}{'hash'} = $head;
3684 if ($current =~ m/^(tree | log | shortlog | commit | commitdiff | search)$/x) {
3685 for (qw(shortlog log)) {
3686 $arg{$_}{'hash'} = $head;
3691 $arg{'tree'}{'hash'} = $treehead if defined $treehead;
3692 $arg{'tree'}{'hash_base'} = $treebase if defined $treebase;
3694 my @actions = gitweb_get_feature
('actions');
3697 'n' => $project, # project name
3698 'f' => $git_dir, # project path within filesystem
3699 'h' => $treehead || '', # current hash ('h' parameter)
3700 'b' => $treebase || '', # hash base ('hb' parameter)
3703 my ($label, $link, $pos) = splice(@actions,0,3);
3705 @navs = map { $_ eq $pos ?
($_, $label) : $_ } @navs;
3707 $link =~ s/%([%nfhb])/$repl{$1}/g;
3708 $arg{$label}{'_href'} = $link;
3711 print "<div class=\"page_nav\">\n" .
3713 map { $_ eq $current ?
3714 $_ : $cgi->a({-href
=> ($arg{$_}{_href
} ?
$arg{$_}{_href
} : href
(%{$arg{$_}}))}, "$_")
3716 print "<br/>\n$extra<br/>\n" .
3720 sub format_paging_nav
{
3721 my ($action, $page, $has_next_link) = @_;
3727 $cgi->a({-href
=> href
(-replay
=>1, page
=>undef)}, "first") .
3729 $cgi->a({-href
=> href
(-replay
=>1, page
=>$page-1),
3730 -accesskey
=> "p", -title
=> "Alt-p"}, "prev");
3732 $paging_nav .= "first ⋅ prev";
3735 if ($has_next_link) {
3736 $paging_nav .= " ⋅ " .
3737 $cgi->a({-href
=> href
(-replay
=>1, page
=>$page+1),
3738 -accesskey
=> "n", -title
=> "Alt-n"}, "next");
3740 $paging_nav .= " ⋅ next";
3746 ## ......................................................................
3747 ## functions printing or outputting HTML: div
3749 sub git_print_header_div
{
3750 my ($action, $title, $hash, $hash_base) = @_;
3753 $args{'action'} = $action;
3754 $args{'hash'} = $hash if $hash;
3755 $args{'hash_base'} = $hash_base if $hash_base;
3757 print "<div class=\"header\">\n" .
3758 $cgi->a({-href
=> href
(%args), -class => "title"},
3759 $title ?
$title : $action) .
3763 sub print_local_time
{
3764 print format_local_time
(@_);
3767 sub format_local_time
{
3770 if ($date{'hour_local'} < 6) {
3771 $localtime .= sprintf(" (<span class=\"atnight\">%02d:%02d</span> %s)",
3772 $date{'hour_local'}, $date{'minute_local'}, $date{'tz_local'});
3774 $localtime .= sprintf(" (%02d:%02d %s)",
3775 $date{'hour_local'}, $date{'minute_local'}, $date{'tz_local'});
3781 # Outputs the author name and date in long form
3782 sub git_print_authorship
{
3785 my $tag = $opts{-tag
} || 'div';
3786 my $author = $co->{'author_name'};
3788 my %ad = parse_date
($co->{'author_epoch'}, $co->{'author_tz'});
3789 print "<$tag class=\"author_date\">" .
3790 format_search_author
($author, "author", esc_html
($author)) .
3792 print_local_time
(%ad) if ($opts{-localtime});
3793 print "]" . git_get_avatar
($co->{'author_email'}, -pad_before
=> 1)
3797 # Outputs table rows containing the full author or committer information,
3798 # in the format expected for 'commit' view (& similar).
3799 # Parameters are a commit hash reference, followed by the list of people
3800 # to output information for. If the list is empty it defaults to both
3801 # author and committer.
3802 sub git_print_authorship_rows
{
3804 # too bad we can't use @people = @_ || ('author', 'committer')
3806 @people = ('author', 'committer') unless @people;
3807 foreach my $who (@people) {
3808 my %wd = parse_date
($co->{"${who}_epoch"}, $co->{"${who}_tz"});
3809 print "<tr><td>$who</td><td>" .
3810 format_search_author
($co->{"${who}_name"}, $who,
3811 esc_html
($co->{"${who}_name"})) . " " .
3812 format_search_author
($co->{"${who}_email"}, $who,
3813 esc_html
("<" . $co->{"${who}_email"} . ">")) .
3814 "</td><td rowspan=\"2\">" .
3815 git_get_avatar
($co->{"${who}_email"}, -size
=> 'double') .
3818 "<td></td><td> $wd{'rfc2822'}";
3819 print_local_time
(%wd);
3825 sub git_print_page_path
{
3831 print "<div class=\"page_path\">";
3832 print $cgi->a({-href
=> href
(action
=>"tree", hash_base
=>$hb),
3833 -title
=> 'tree root'}, to_utf8
("[$project]"));
3835 if (defined $name) {
3836 my @dirname = split '/', $name;
3837 my $basename = pop @dirname;
3840 foreach my $dir (@dirname) {
3841 $fullname .= ($fullname ?
'/' : '') . $dir;
3842 print $cgi->a({-href
=> href
(action
=>"tree", file_name
=>$fullname,
3844 -title
=> $fullname}, esc_path
($dir));
3847 if (defined $type && $type eq 'blob') {
3848 print $cgi->a({-href
=> href
(action
=>"blob_plain", file_name
=>$file_name,
3850 -title
=> $name}, esc_path
($basename));
3851 } elsif (defined $type && $type eq 'tree') {
3852 print $cgi->a({-href
=> href
(action
=>"tree", file_name
=>$file_name,
3854 -title
=> $name}, esc_path
($basename));
3857 print esc_path
($basename);
3860 print "<br/></div>\n";
3867 if ($opts{'-remove_title'}) {
3868 # remove title, i.e. first line of log
3871 # remove leading empty lines
3872 while (defined $log->[0] && $log->[0] eq "") {
3879 foreach my $line (@
$log) {
3880 if ($line =~ m/^ *(signed[ \-]off[ \-]by[ :]|acked[ \-]by[ :]|cc[ :])/i) {
3883 if (! $opts{'-remove_signoff'}) {
3884 print "<span class=\"signoff\">" . esc_html
($line) . "</span><br/>\n";
3887 # remove signoff lines
3894 # print only one empty line
3895 # do not print empty line after signoff
3897 next if ($empty || $signoff);
3903 print format_log_line_html
($line) . "<br/>\n";
3906 if ($opts{'-final_empty_line'}) {
3907 # end with single empty line
3908 print "<br/>\n" unless $empty;
3912 # return link target (what link points to)
3913 sub git_get_link_target
{
3918 open my $fd, "-|", git_cmd
(), "cat-file", "blob", $hash
3922 $link_target = <$fd>;
3927 return $link_target;
3930 # given link target, and the directory (basedir) the link is in,
3931 # return target of link relative to top directory (top tree);
3932 # return undef if it is not possible (including absolute links).
3933 sub normalize_link_target
{
3934 my ($link_target, $basedir) = @_;
3936 # absolute symlinks (beginning with '/') cannot be normalized
3937 return if (substr($link_target, 0, 1) eq '/');
3939 # normalize link target to path from top (root) tree (dir)
3942 $path = $basedir . '/' . $link_target;
3944 # we are in top (root) tree (dir)
3945 $path = $link_target;
3948 # remove //, /./, and /../
3950 foreach my $part (split('/', $path)) {
3951 # discard '.' and ''
3952 next if (!$part || $part eq '.');
3954 if ($part eq '..') {
3958 # link leads outside repository (outside top dir)
3962 push @path_parts, $part;
3965 $path = join('/', @path_parts);
3970 # print tree entry (row of git_tree), but without encompassing <tr> element
3971 sub git_print_tree_entry
{
3972 my ($t, $basedir, $hash_base, $have_blame) = @_;
3975 $base_key{'hash_base'} = $hash_base if defined $hash_base;
3977 # The format of a table row is: mode list link. Where mode is
3978 # the mode of the entry, list is the name of the entry, an href,
3979 # and link is the action links of the entry.
3981 print "<td class=\"mode\">" . mode_str
($t->{'mode'}) . "</td>\n";
3982 if (exists $t->{'size'}) {
3983 print "<td class=\"size\">$t->{'size'}</td>\n";
3985 if ($t->{'type'} eq "blob") {
3986 print "<td class=\"list\">" .
3987 $cgi->a({-href
=> href
(action
=>"blob", hash
=>$t->{'hash'},
3988 file_name
=>"$basedir$t->{'name'}", %base_key),
3989 -class => "list"}, esc_path
($t->{'name'}));
3990 if (S_ISLNK
(oct $t->{'mode'})) {
3991 my $link_target = git_get_link_target
($t->{'hash'});
3993 my $norm_target = normalize_link_target
($link_target, $basedir);
3994 if (defined $norm_target) {
3996 $cgi->a({-href
=> href
(action
=>"object", hash_base
=>$hash_base,
3997 file_name
=>$norm_target),
3998 -title
=> $norm_target}, esc_path
($link_target));
4000 print " -> " . esc_path
($link_target);
4005 print "<td class=\"link\">";
4006 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$t->{'hash'},
4007 file_name
=>"$basedir$t->{'name'}", %base_key)},
4011 $cgi->a({-href
=> href
(action
=>"blame", hash
=>$t->{'hash'},
4012 file_name
=>"$basedir$t->{'name'}", %base_key)},
4015 if (defined $hash_base) {
4017 $cgi->a({-href
=> href
(action
=>"history", hash_base
=>$hash_base,
4018 hash
=>$t->{'hash'}, file_name
=>"$basedir$t->{'name'}")},
4022 $cgi->a({-href
=> href
(action
=>"blob_plain", hash_base
=>$hash_base,
4023 file_name
=>"$basedir$t->{'name'}")},
4027 } elsif ($t->{'type'} eq "tree") {
4028 print "<td class=\"list\">";
4029 print $cgi->a({-href
=> href
(action
=>"tree", hash
=>$t->{'hash'},
4030 file_name
=>"$basedir$t->{'name'}",
4032 esc_path
($t->{'name'}));
4034 print "<td class=\"link\">";
4035 print $cgi->a({-href
=> href
(action
=>"tree", hash
=>$t->{'hash'},
4036 file_name
=>"$basedir$t->{'name'}",
4039 if (defined $hash_base) {
4041 $cgi->a({-href
=> href
(action
=>"history", hash_base
=>$hash_base,
4042 file_name
=>"$basedir$t->{'name'}")},
4047 # unknown object: we can only present history for it
4048 # (this includes 'commit' object, i.e. submodule support)
4049 print "<td class=\"list\">" .
4050 esc_path
($t->{'name'}) .
4052 print "<td class=\"link\">";
4053 if (defined $hash_base) {
4054 print $cgi->a({-href
=> href
(action
=>"history",
4055 hash_base
=>$hash_base,
4056 file_name
=>"$basedir$t->{'name'}")},
4063 ## ......................................................................
4064 ## functions printing large fragments of HTML
4066 # get pre-image filenames for merge (combined) diff
4067 sub fill_from_file_info
{
4068 my ($diff, @parents) = @_;
4070 $diff->{'from_file'} = [ ];
4071 $diff->{'from_file'}[$diff->{'nparents'} - 1] = undef;
4072 for (my $i = 0; $i < $diff->{'nparents'}; $i++) {
4073 if ($diff->{'status'}[$i] eq 'R' ||
4074 $diff->{'status'}[$i] eq 'C') {
4075 $diff->{'from_file'}[$i] =
4076 git_get_path_by_hash
($parents[$i], $diff->{'from_id'}[$i]);
4083 # is current raw difftree line of file deletion
4085 my $diffinfo = shift;
4087 return $diffinfo->{'to_id'} eq ('0' x
40);
4090 # does patch correspond to [previous] difftree raw line
4091 # $diffinfo - hashref of parsed raw diff format
4092 # $patchinfo - hashref of parsed patch diff format
4093 # (the same keys as in $diffinfo)
4094 sub is_patch_split
{
4095 my ($diffinfo, $patchinfo) = @_;
4097 return defined $diffinfo && defined $patchinfo
4098 && $diffinfo->{'to_file'} eq $patchinfo->{'to_file'};
4102 sub git_difftree_body
{
4103 my ($difftree, $hash, @parents) = @_;
4104 my ($parent) = $parents[0];
4105 my $have_blame = gitweb_check_feature
('blame');
4106 print "<div class=\"list_head\">\n";
4107 if ($#{$difftree} > 10) {
4108 print(($#{$difftree} + 1) . " files changed:\n");
4112 print "<table class=\"" .
4113 (@parents > 1 ?
"combined " : "") .
4116 # header only for combined diff in 'commitdiff' view
4117 my $has_header = @
$difftree && @parents > 1 && $action eq 'commitdiff';
4120 print "<thead><tr>\n" .
4121 "<th></th><th></th>\n"; # filename, patchN link
4122 for (my $i = 0; $i < @parents; $i++) {
4123 my $par = $parents[$i];
4125 $cgi->a({-href
=> href
(action
=>"commitdiff",
4126 hash
=>$hash, hash_parent
=>$par),
4127 -title
=> 'commitdiff to parent number ' .
4128 ($i+1) . ': ' . substr($par,0,7)},
4132 print "</tr></thead>\n<tbody>\n";
4137 foreach my $line (@
{$difftree}) {
4138 my $diff = parsed_difftree_line
($line);
4141 print "<tr class=\"dark\">\n";
4143 print "<tr class=\"light\">\n";
4147 if (exists $diff->{'nparents'}) { # combined diff
4149 fill_from_file_info
($diff, @parents)
4150 unless exists $diff->{'from_file'};
4152 if (!is_deleted
($diff)) {
4153 # file exists in the result (child) commit
4155 $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff->{'to_id'},
4156 file_name
=>$diff->{'to_file'},
4158 -class => "list"}, esc_path
($diff->{'to_file'})) .
4162 esc_path
($diff->{'to_file'}) .
4166 if ($action eq 'commitdiff') {
4169 print "<td class=\"link\">" .
4170 $cgi->a({-href
=> "#patch$patchno"}, "patch") .
4175 my $has_history = 0;
4176 my $not_deleted = 0;
4177 for (my $i = 0; $i < $diff->{'nparents'}; $i++) {
4178 my $hash_parent = $parents[$i];
4179 my $from_hash = $diff->{'from_id'}[$i];
4180 my $from_path = $diff->{'from_file'}[$i];
4181 my $status = $diff->{'status'}[$i];
4183 $has_history ||= ($status ne 'A');
4184 $not_deleted ||= ($status ne 'D');
4186 if ($status eq 'A') {
4187 print "<td class=\"link\" align=\"right\"> | </td>\n";
4188 } elsif ($status eq 'D') {
4189 print "<td class=\"link\">" .
4190 $cgi->a({-href
=> href
(action
=>"blob",
4193 file_name
=>$from_path)},
4197 if ($diff->{'to_id'} eq $from_hash) {
4198 print "<td class=\"link nochange\">";
4200 print "<td class=\"link\">";
4202 print $cgi->a({-href
=> href
(action
=>"blobdiff",
4203 hash
=>$diff->{'to_id'},
4204 hash_parent
=>$from_hash,
4206 hash_parent_base
=>$hash_parent,
4207 file_name
=>$diff->{'to_file'},
4208 file_parent
=>$from_path)},
4214 print "<td class=\"link\">";
4216 print $cgi->a({-href
=> href
(action
=>"blob",
4217 hash
=>$diff->{'to_id'},
4218 file_name
=>$diff->{'to_file'},
4221 print " | " if ($has_history);
4224 print $cgi->a({-href
=> href
(action
=>"history",
4225 file_name
=>$diff->{'to_file'},
4232 next; # instead of 'else' clause, to avoid extra indent
4234 # else ordinary diff
4236 my ($to_mode_oct, $to_mode_str, $to_file_type);
4237 my ($from_mode_oct, $from_mode_str, $from_file_type);
4238 if ($diff->{'to_mode'} ne ('0' x
6)) {
4239 $to_mode_oct = oct $diff->{'to_mode'};
4240 if (S_ISREG
($to_mode_oct)) { # only for regular file
4241 $to_mode_str = sprintf("%04o", $to_mode_oct & 0777); # permission bits
4243 $to_file_type = file_type
($diff->{'to_mode'});
4245 if ($diff->{'from_mode'} ne ('0' x
6)) {
4246 $from_mode_oct = oct $diff->{'from_mode'};
4247 if (S_ISREG
($to_mode_oct)) { # only for regular file
4248 $from_mode_str = sprintf("%04o", $from_mode_oct & 0777); # permission bits
4250 $from_file_type = file_type
($diff->{'from_mode'});
4253 if ($diff->{'status'} eq "A") { # created
4254 my $mode_chng = "<span class=\"file_status new\">[new $to_file_type";
4255 $mode_chng .= " with mode: $to_mode_str" if $to_mode_str;
4256 $mode_chng .= "]</span>";
4258 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff->{'to_id'},
4259 hash_base
=>$hash, file_name
=>$diff->{'file'}),
4260 -class => "list"}, esc_path
($diff->{'file'}));
4262 print "<td>$mode_chng</td>\n";
4263 print "<td class=\"link\">";
4264 if ($action eq 'commitdiff') {
4267 print $cgi->a({-href
=> "#patch$patchno"}, "patch");
4270 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff->{'to_id'},
4271 hash_base
=>$hash, file_name
=>$diff->{'file'})},
4275 } elsif ($diff->{'status'} eq "D") { # deleted
4276 my $mode_chng = "<span class=\"file_status deleted\">[deleted $from_file_type]</span>";
4278 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff->{'from_id'},
4279 hash_base
=>$parent, file_name
=>$diff->{'file'}),
4280 -class => "list"}, esc_path
($diff->{'file'}));
4282 print "<td>$mode_chng</td>\n";
4283 print "<td class=\"link\">";
4284 if ($action eq 'commitdiff') {
4287 print $cgi->a({-href
=> "#patch$patchno"}, "patch");
4290 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff->{'from_id'},
4291 hash_base
=>$parent, file_name
=>$diff->{'file'})},
4294 print $cgi->a({-href
=> href
(action
=>"blame", hash_base
=>$parent,
4295 file_name
=>$diff->{'file'})},
4298 print $cgi->a({-href
=> href
(action
=>"history", hash_base
=>$parent,
4299 file_name
=>$diff->{'file'})},
4303 } elsif ($diff->{'status'} eq "M" || $diff->{'status'} eq "T") { # modified, or type changed
4304 my $mode_chnge = "";
4305 if ($diff->{'from_mode'} != $diff->{'to_mode'}) {
4306 $mode_chnge = "<span class=\"file_status mode_chnge\">[changed";
4307 if ($from_file_type ne $to_file_type) {
4308 $mode_chnge .= " from $from_file_type to $to_file_type";
4310 if (($from_mode_oct & 0777) != ($to_mode_oct & 0777)) {
4311 if ($from_mode_str && $to_mode_str) {
4312 $mode_chnge .= " mode: $from_mode_str->$to_mode_str";
4313 } elsif ($to_mode_str) {
4314 $mode_chnge .= " mode: $to_mode_str";
4317 $mode_chnge .= "]</span>\n";
4320 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff->{'to_id'},
4321 hash_base
=>$hash, file_name
=>$diff->{'file'}),
4322 -class => "list"}, esc_path
($diff->{'file'}));
4324 print "<td>$mode_chnge</td>\n";
4325 print "<td class=\"link\">";
4326 if ($action eq 'commitdiff') {
4329 print $cgi->a({-href
=> "#patch$patchno"}, "patch") .
4331 } elsif ($diff->{'to_id'} ne $diff->{'from_id'}) {
4332 # "commit" view and modified file (not onlu mode changed)
4333 print $cgi->a({-href
=> href
(action
=>"blobdiff",
4334 hash
=>$diff->{'to_id'}, hash_parent
=>$diff->{'from_id'},
4335 hash_base
=>$hash, hash_parent_base
=>$parent,
4336 file_name
=>$diff->{'file'})},
4340 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff->{'to_id'},
4341 hash_base
=>$hash, file_name
=>$diff->{'file'})},
4344 print $cgi->a({-href
=> href
(action
=>"blame", hash_base
=>$hash,
4345 file_name
=>$diff->{'file'})},
4348 print $cgi->a({-href
=> href
(action
=>"history", hash_base
=>$hash,
4349 file_name
=>$diff->{'file'})},
4353 } elsif ($diff->{'status'} eq "R" || $diff->{'status'} eq "C") { # renamed or copied
4354 my %status_name = ('R' => 'moved', 'C' => 'copied');
4355 my $nstatus = $status_name{$diff->{'status'}};
4357 if ($diff->{'from_mode'} != $diff->{'to_mode'}) {
4358 # mode also for directories, so we cannot use $to_mode_str
4359 $mode_chng = sprintf(", mode: %04o", $to_mode_oct & 0777);
4362 $cgi->a({-href
=> href
(action
=>"blob", hash_base
=>$hash,
4363 hash
=>$diff->{'to_id'}, file_name
=>$diff->{'to_file'}),
4364 -class => "list"}, esc_path
($diff->{'to_file'})) . "</td>\n" .
4365 "<td><span class=\"file_status $nstatus\">[$nstatus from " .
4366 $cgi->a({-href
=> href
(action
=>"blob", hash_base
=>$parent,
4367 hash
=>$diff->{'from_id'}, file_name
=>$diff->{'from_file'}),
4368 -class => "list"}, esc_path
($diff->{'from_file'})) .
4369 " with " . (int $diff->{'similarity'}) . "% similarity$mode_chng]</span></td>\n" .
4370 "<td class=\"link\">";
4371 if ($action eq 'commitdiff') {
4374 print $cgi->a({-href
=> "#patch$patchno"}, "patch") .
4376 } elsif ($diff->{'to_id'} ne $diff->{'from_id'}) {
4377 # "commit" view and modified file (not only pure rename or copy)
4378 print $cgi->a({-href
=> href
(action
=>"blobdiff",
4379 hash
=>$diff->{'to_id'}, hash_parent
=>$diff->{'from_id'},
4380 hash_base
=>$hash, hash_parent_base
=>$parent,
4381 file_name
=>$diff->{'to_file'}, file_parent
=>$diff->{'from_file'})},
4385 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff->{'to_id'},
4386 hash_base
=>$parent, file_name
=>$diff->{'to_file'})},
4389 print $cgi->a({-href
=> href
(action
=>"blame", hash_base
=>$hash,
4390 file_name
=>$diff->{'to_file'})},
4393 print $cgi->a({-href
=> href
(action
=>"history", hash_base
=>$hash,
4394 file_name
=>$diff->{'to_file'})},
4398 } # we should not encounter Unmerged (U) or Unknown (X) status
4401 print "</tbody>" if $has_header;
4405 sub git_patchset_body
{
4406 my ($fd, $difftree, $hash, @hash_parents) = @_;
4407 my ($hash_parent) = $hash_parents[0];
4409 my $is_combined = (@hash_parents > 1);
4411 my $patch_number = 0;
4417 print "<div class=\"patchset\">\n";
4419 # skip to first patch
4420 while ($patch_line = <$fd>) {
4423 last if ($patch_line =~ m/^diff /);
4427 while ($patch_line) {
4429 # parse "git diff" header line
4430 if ($patch_line =~ m/^diff --git (\"(?:[^\\\"]*(?:\\.[^\\\"]*)*)\"|[^ "]*) (.*)$/) {
4431 # $1 is from_name, which we do not use
4432 $to_name = unquote
($2);
4433 $to_name =~ s!^b/!!;
4434 } elsif ($patch_line =~ m/^diff --(cc|combined) ("?.*"?)$/) {
4435 # $1 is 'cc' or 'combined', which we do not use
4436 $to_name = unquote
($2);
4441 # check if current patch belong to current raw line
4442 # and parse raw git-diff line if needed
4443 if (is_patch_split
($diffinfo, { 'to_file' => $to_name })) {
4444 # this is continuation of a split patch
4445 print "<div class=\"patch cont\">\n";
4447 # advance raw git-diff output if needed
4448 $patch_idx++ if defined $diffinfo;
4450 # read and prepare patch information
4451 $diffinfo = parsed_difftree_line
($difftree->[$patch_idx]);
4453 # compact combined diff output can have some patches skipped
4454 # find which patch (using pathname of result) we are at now;
4456 while ($to_name ne $diffinfo->{'to_file'}) {
4457 print "<div class=\"patch\" id=\"patch". ($patch_idx+1) ."\">\n" .
4458 format_diff_cc_simplified
($diffinfo, @hash_parents) .
4459 "</div>\n"; # class="patch"
4464 last if $patch_idx > $#$difftree;
4465 $diffinfo = parsed_difftree_line
($difftree->[$patch_idx]);
4469 # modifies %from, %to hashes
4470 parse_from_to_diffinfo
($diffinfo, \
%from, \
%to, @hash_parents);
4472 # this is first patch for raw difftree line with $patch_idx index
4473 # we index @$difftree array from 0, but number patches from 1
4474 print "<div class=\"patch\" id=\"patch". ($patch_idx+1) ."\">\n";
4478 #assert($patch_line =~ m/^diff /) if DEBUG;
4479 #assert($patch_line !~ m!$/$!) if DEBUG; # is chomp-ed
4481 # print "git diff" header
4482 print format_git_diff_header_line
($patch_line, $diffinfo,
4485 # print extended diff header
4486 print "<div class=\"diff extended_header\">\n";
4488 while ($patch_line = <$fd>) {
4491 last EXTENDED_HEADER
if ($patch_line =~ m/^--- |^diff /);
4493 print format_extended_diff_header_line
($patch_line, $diffinfo,
4496 print "</div>\n"; # class="diff extended_header"
4498 # from-file/to-file diff header
4499 if (! $patch_line) {
4500 print "</div>\n"; # class="patch"
4503 next PATCH
if ($patch_line =~ m/^diff /);
4504 #assert($patch_line =~ m/^---/) if DEBUG;
4506 my $last_patch_line = $patch_line;
4507 $patch_line = <$fd>;
4509 #assert($patch_line =~ m/^\+\+\+/) if DEBUG;
4511 print format_diff_from_to_header
($last_patch_line, $patch_line,
4512 $diffinfo, \
%from, \
%to,
4517 while ($patch_line = <$fd>) {
4520 next PATCH
if ($patch_line =~ m/^diff /);
4522 print format_diff_line
($patch_line, \
%from, \
%to);
4526 print "</div>\n"; # class="patch"
4529 # for compact combined (--cc) format, with chunk and patch simplification
4530 # the patchset might be empty, but there might be unprocessed raw lines
4531 for (++$patch_idx if $patch_number > 0;
4532 $patch_idx < @
$difftree;
4534 # read and prepare patch information
4535 $diffinfo = parsed_difftree_line
($difftree->[$patch_idx]);
4537 # generate anchor for "patch" links in difftree / whatchanged part
4538 print "<div class=\"patch\" id=\"patch". ($patch_idx+1) ."\">\n" .
4539 format_diff_cc_simplified
($diffinfo, @hash_parents) .
4540 "</div>\n"; # class="patch"
4545 if ($patch_number == 0) {
4546 if (@hash_parents > 1) {
4547 print "<div class=\"diff nodifferences\">Trivial merge</div>\n";
4549 print "<div class=\"diff nodifferences\">No differences found</div>\n";
4553 print "</div>\n"; # class="patchset"
4556 # . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
4558 # fills project list info (age, description, owner, forks) for each
4559 # project in the list, removing invalid projects from returned list
4560 # NOTE: modifies $projlist, but does not remove entries from it
4561 sub fill_project_list_info
{
4562 my ($projlist, $check_forks) = @_;
4565 my $show_ctags = gitweb_check_feature
('ctags');
4567 foreach my $pr (@
$projlist) {
4568 my (@activity) = git_get_last_activity
($pr->{'path'});
4569 unless (@activity) {
4572 ($pr->{'age'}, $pr->{'age_string'}) = @activity;
4573 if (!defined $pr->{'descr'}) {
4574 my $descr = git_get_project_description
($pr->{'path'}) || "";
4575 $descr = to_utf8
($descr);
4576 $pr->{'descr_long'} = $descr;
4577 $pr->{'descr'} = chop_str
($descr, $projects_list_description_width, 5);
4579 if (!defined $pr->{'owner'}) {
4580 $pr->{'owner'} = git_get_project_owner
("$pr->{'path'}") || "";
4583 my $pname = $pr->{'path'};
4584 if (($pname =~ s/\.git$//) &&
4585 ($pname !~ /\/$/) &&
4586 (-d
"$projectroot/$pname")) {
4587 $pr->{'forks'} = "-d $projectroot/$pname";
4592 $show_ctags and $pr->{'ctags'} = git_get_project_ctags
($pr->{'path'});
4593 push @projects, $pr;
4599 # print 'sort by' <th> element, generating 'sort by $name' replay link
4600 # if that order is not selected
4602 print format_sort_th
(@_);
4605 sub format_sort_th
{
4606 my ($name, $order, $header) = @_;
4608 $header ||= ucfirst($name);
4610 if ($order eq $name) {
4611 $sort_th .= "<th>$header</th>\n";
4613 $sort_th .= "<th>" .
4614 $cgi->a({-href
=> href
(-replay
=>1, order
=>$name),
4615 -class => "header"}, $header) .
4622 sub git_project_list_body
{
4623 # actually uses global variable $project
4624 my ($projlist, $order, $from, $to, $extra, $no_header) = @_;
4626 my $check_forks = gitweb_check_feature
('forks');
4627 my @projects = fill_project_list_info
($projlist, $check_forks);
4629 $order ||= $default_projects_order;
4630 $from = 0 unless defined $from;
4631 $to = $#projects if (!defined $to || $#projects < $to);
4634 project
=> { key
=> 'path', type
=> 'str' },
4635 descr
=> { key
=> 'descr_long', type
=> 'str' },
4636 owner
=> { key
=> 'owner', type
=> 'str' },
4637 age
=> { key
=> 'age', type
=> 'num' }
4639 my $oi = $order_info{$order};
4640 if ($oi->{'type'} eq 'str') {
4641 @projects = sort {$a->{$oi->{'key'}} cmp $b->{$oi->{'key'}}} @projects;
4643 @projects = sort {$a->{$oi->{'key'}} <=> $b->{$oi->{'key'}}} @projects;
4646 my $show_ctags = gitweb_check_feature
('ctags');
4649 foreach my $p (@projects) {
4650 foreach my $ct (keys %{$p->{'ctags'}}) {
4651 $ctags{$ct} += $p->{'ctags'}->{$ct};
4654 my $cloud = git_populate_project_tagcloud
(\
%ctags);
4655 print git_show_project_tagcloud
($cloud, 64);
4658 print "<table class=\"project_list\">\n";
4659 unless ($no_header) {
4662 print "<th></th>\n";
4664 print_sort_th
('project', $order, 'Project');
4665 print_sort_th
('descr', $order, 'Description');
4666 print_sort_th
('owner', $order, 'Owner');
4667 print_sort_th
('age', $order, 'Last Change');
4668 print "<th></th>\n" . # for links
4672 my $tagfilter = $cgi->param('by_tag');
4673 for (my $i = $from; $i <= $to; $i++) {
4674 my $pr = $projects[$i];
4676 next if $tagfilter and $show_ctags and not grep { lc $_ eq lc $tagfilter } keys %{$pr->{'ctags'}};
4677 next if $searchtext and not $pr->{'path'} =~ /$searchtext/
4678 and not $pr->{'descr_long'} =~ /$searchtext/;
4679 # Weed out forks or non-matching entries of search
4681 my $forkbase = $project; $forkbase ||= ''; $forkbase =~ s
#\.git$#/#;
4682 $forkbase="^$forkbase" if $forkbase;
4683 next if not $searchtext and not $tagfilter and $show_ctags
4684 and $pr->{'path'} =~ m
#$forkbase.*/.*#; # regexp-safe
4688 print "<tr class=\"dark\">\n";
4690 print "<tr class=\"light\">\n";
4695 if ($pr->{'forks'}) {
4696 print "<!-- $pr->{'forks'} -->\n";
4697 print $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"forks")}, "+");
4701 print "<td>" . $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"summary"),
4702 -class => "list"}, esc_html
($pr->{'path'})) . "</td>\n" .
4703 "<td>" . $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"summary"),
4704 -class => "list", -title
=> $pr->{'descr_long'}},
4705 esc_html
($pr->{'descr'})) . "</td>\n" .
4706 "<td><i>" . chop_and_escape_str
($pr->{'owner'}, 15) . "</i></td>\n";
4707 print "<td class=\"". age_class
($pr->{'age'}) . "\">" .
4708 (defined $pr->{'age_string'} ?
$pr->{'age_string'} : "No commits") . "</td>\n" .
4709 "<td class=\"link\">" .
4710 $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"summary")}, "summary") . " | " .
4711 $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"shortlog")}, "shortlog") . " | " .
4712 $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"log")}, "log") . " | " .
4713 $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"tree")}, "tree") .
4714 ($pr->{'forks'} ?
" | " . $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"forks")}, "forks") : '') .
4718 if (defined $extra) {
4721 print "<td></td>\n";
4723 print "<td colspan=\"5\">$extra</td>\n" .
4730 # uses global variable $project
4731 my ($commitlist, $from, $to, $refs, $extra) = @_;
4733 $from = 0 unless defined $from;
4734 $to = $#{$commitlist} if (!defined $to || $#{$commitlist} < $to);
4736 for (my $i = 0; $i <= $to; $i++) {
4737 my %co = %{$commitlist->[$i]};
4739 my $commit = $co{'id'};
4740 my $ref = format_ref_marker
($refs, $commit);
4741 my %ad = parse_date
($co{'author_epoch'});
4742 git_print_header_div
('commit',
4743 "<span class=\"age\">$co{'age_string'}</span>" .
4744 esc_html
($co{'title'}) . $ref,
4746 print "<div class=\"title_text\">\n" .
4747 "<div class=\"log_link\">\n" .
4748 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$commit)}, "commit") .
4750 $cgi->a({-href
=> href
(action
=>"commitdiff", hash
=>$commit)}, "commitdiff") .
4752 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$commit, hash_base
=>$commit)}, "tree") .
4755 git_print_authorship
(\
%co, -tag
=> 'span');
4756 print "<br/>\n</div>\n";
4758 print "<div class=\"log_body\">\n";
4759 git_print_log
($co{'comment'}, -final_empty_line
=> 1);
4763 print "<div class=\"page_nav\">\n";
4769 sub git_shortlog_body
{
4770 # uses global variable $project
4771 my ($commitlist, $from, $to, $refs, $extra) = @_;
4773 $from = 0 unless defined $from;
4774 $to = $#{$commitlist} if (!defined $to || $#{$commitlist} < $to);
4776 print "<table class=\"shortlog\">\n";
4778 for (my $i = $from; $i <= $to; $i++) {
4779 my %co = %{$commitlist->[$i]};
4780 my $commit = $co{'id'};
4781 my $ref = format_ref_marker
($refs, $commit);
4783 print "<tr class=\"dark\">\n";
4785 print "<tr class=\"light\">\n";
4788 # git_summary() used print "<td><i>$co{'age_string'}</i></td>\n" .
4789 print "<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n" .
4790 format_author_html
('td', \
%co, 10) . "<td>";
4791 print format_subject_html
($co{'title'}, $co{'title_short'},
4792 href
(action
=>"commit", hash
=>$commit), $ref);
4794 "<td class=\"link\">" .
4795 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$commit)}, "commit") . " | " .
4796 $cgi->a({-href
=> href
(action
=>"commitdiff", hash
=>$commit)}, "commitdiff") . " | " .
4797 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$commit, hash_base
=>$commit)}, "tree");
4798 my $snapshot_links = format_snapshot_links
($commit);
4799 if (defined $snapshot_links) {
4800 print " | " . $snapshot_links;
4805 if (defined $extra) {
4807 "<td colspan=\"4\">$extra</td>\n" .
4813 sub git_history_body
{
4814 # Warning: assumes constant type (blob or tree) during history
4815 my ($commitlist, $from, $to, $refs, $extra,
4816 $file_name, $file_hash, $ftype) = @_;
4818 $from = 0 unless defined $from;
4819 $to = $#{$commitlist} unless (defined $to && $to <= $#{$commitlist});
4821 print "<table class=\"history\">\n";
4823 for (my $i = $from; $i <= $to; $i++) {
4824 my %co = %{$commitlist->[$i]};
4828 my $commit = $co{'id'};
4830 my $ref = format_ref_marker
($refs, $commit);
4833 print "<tr class=\"dark\">\n";
4835 print "<tr class=\"light\">\n";
4838 print "<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n" .
4839 # shortlog: format_author_html('td', \%co, 10)
4840 format_author_html
('td', \
%co, 15, 3) . "<td>";
4841 # originally git_history used chop_str($co{'title'}, 50)
4842 print format_subject_html
($co{'title'}, $co{'title_short'},
4843 href
(action
=>"commit", hash
=>$commit), $ref);
4845 "<td class=\"link\">" .
4846 $cgi->a({-href
=> href
(action
=>$ftype, hash_base
=>$commit, file_name
=>$file_name)}, $ftype) . " | " .
4847 $cgi->a({-href
=> href
(action
=>"commitdiff", hash
=>$commit)}, "commitdiff");
4849 if ($ftype eq 'blob') {
4850 my $blob_current = $file_hash;
4851 my $blob_parent = git_get_hash_by_path
($commit, $file_name);
4852 if (defined $blob_current && defined $blob_parent &&
4853 $blob_current ne $blob_parent) {
4855 $cgi->a({-href
=> href
(action
=>"blobdiff",
4856 hash
=>$blob_current, hash_parent
=>$blob_parent,
4857 hash_base
=>$hash_base, hash_parent_base
=>$commit,
4858 file_name
=>$file_name)},
4865 if (defined $extra) {
4867 "<td colspan=\"4\">$extra</td>\n" .
4874 # uses global variable $project
4875 my ($taglist, $from, $to, $extra) = @_;
4876 $from = 0 unless defined $from;
4877 $to = $#{$taglist} if (!defined $to || $#{$taglist} < $to);
4879 print "<table class=\"tags\">\n";
4881 for (my $i = $from; $i <= $to; $i++) {
4882 my $entry = $taglist->[$i];
4884 my $comment = $tag{'subject'};
4886 if (defined $comment) {
4887 $comment_short = chop_str
($comment, 30, 5);
4890 print "<tr class=\"dark\">\n";
4892 print "<tr class=\"light\">\n";
4895 if (defined $tag{'age'}) {
4896 print "<td><i>$tag{'age'}</i></td>\n";
4898 print "<td></td>\n";
4901 $cgi->a({-href
=> href
(action
=>$tag{'reftype'}, hash
=>$tag{'refid'}),
4902 -class => "list name"}, esc_html
($tag{'name'})) .
4905 if (defined $comment) {
4906 print format_subject_html
($comment, $comment_short,
4907 href
(action
=>"tag", hash
=>$tag{'id'}));
4910 "<td class=\"selflink\">";
4911 if ($tag{'type'} eq "tag") {
4912 print $cgi->a({-href
=> href
(action
=>"tag", hash
=>$tag{'id'})}, "tag");
4917 "<td class=\"link\">" . " | " .
4918 $cgi->a({-href
=> href
(action
=>$tag{'reftype'}, hash
=>$tag{'refid'})}, $tag{'reftype'});
4919 if ($tag{'reftype'} eq "commit") {
4920 print " | " . $cgi->a({-href
=> href
(action
=>"shortlog", hash
=>$tag{'fullname'})}, "shortlog") .
4921 " | " . $cgi->a({-href
=> href
(action
=>"log", hash
=>$tag{'fullname'})}, "log");
4922 } elsif ($tag{'reftype'} eq "blob") {
4923 print " | " . $cgi->a({-href
=> href
(action
=>"blob_plain", hash
=>$tag{'refid'})}, "raw");
4928 if (defined $extra) {
4930 "<td colspan=\"5\">$extra</td>\n" .
4936 sub git_heads_body
{
4937 # uses global variable $project
4938 my ($headlist, $head, $from, $to, $extra) = @_;
4939 $from = 0 unless defined $from;
4940 $to = $#{$headlist} if (!defined $to || $#{$headlist} < $to);
4942 print "<table class=\"heads\">\n";
4944 for (my $i = $from; $i <= $to; $i++) {
4945 my $entry = $headlist->[$i];
4947 my $curr = $ref{'id'} eq $head;
4949 print "<tr class=\"dark\">\n";
4951 print "<tr class=\"light\">\n";
4954 print "<td><i>$ref{'age'}</i></td>\n" .
4955 ($curr ?
"<td class=\"current_head\">" : "<td>") .
4956 $cgi->a({-href
=> href
(action
=>"shortlog", hash
=>$ref{'fullname'}),
4957 -class => "list name"},esc_html
($ref{'name'})) .
4959 "<td class=\"link\">" .
4960 $cgi->a({-href
=> href
(action
=>"shortlog", hash
=>$ref{'fullname'})}, "shortlog") . " | " .
4961 $cgi->a({-href
=> href
(action
=>"log", hash
=>$ref{'fullname'})}, "log") . " | " .
4962 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$ref{'fullname'}, hash_base
=>$ref{'name'})}, "tree") .
4966 if (defined $extra) {
4968 "<td colspan=\"3\">$extra</td>\n" .
4974 sub git_search_grep_body
{
4975 my ($commitlist, $from, $to, $extra) = @_;
4976 $from = 0 unless defined $from;
4977 $to = $#{$commitlist} if (!defined $to || $#{$commitlist} < $to);
4979 print "<table class=\"commit_search\">\n";
4981 for (my $i = $from; $i <= $to; $i++) {
4982 my %co = %{$commitlist->[$i]};
4986 my $commit = $co{'id'};
4988 print "<tr class=\"dark\">\n";
4990 print "<tr class=\"light\">\n";
4993 print "<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n" .
4994 format_author_html
('td', \
%co, 15, 5) .
4996 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$co{'id'}),
4997 -class => "list subject"},
4998 chop_and_escape_str
($co{'title'}, 50) . "<br/>");
4999 my $comment = $co{'comment'};
5000 foreach my $line (@
$comment) {
5001 if ($line =~ m/^(.*?)($search_regexp)(.*)$/i) {
5002 my ($lead, $match, $trail) = ($1, $2, $3);
5003 $match = chop_str
($match, 70, 5, 'center');
5004 my $contextlen = int((80 - length($match))/2);
5005 $contextlen = 30 if ($contextlen > 30);
5006 $lead = chop_str
($lead, $contextlen, 10, 'left');
5007 $trail = chop_str
($trail, $contextlen, 10, 'right');
5009 $lead = esc_html
($lead);
5010 $match = esc_html
($match);
5011 $trail = esc_html
($trail);
5013 print "$lead<span class=\"match\">$match</span>$trail<br />";
5017 "<td class=\"link\">" .
5018 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$co{'id'})}, "commit") .
5020 $cgi->a({-href
=> href
(action
=>"commitdiff", hash
=>$co{'id'})}, "commitdiff") .
5022 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$co{'tree'}, hash_base
=>$co{'id'})}, "tree");
5026 if (defined $extra) {
5028 "<td colspan=\"3\">$extra</td>\n" .
5034 ## ======================================================================
5035 ## ======================================================================
5038 sub git_project_list
{
5039 my $order = $input_params{'order'};
5040 if (defined $order && $order !~ m/none|project|descr|owner|age/) {
5041 die_error
(400, "Unknown order parameter");
5044 my @list = git_get_projects_list
();
5046 die_error
(404, "No projects found");
5050 if (defined $home_text && -f
$home_text) {
5051 print "<div class=\"index_include\">\n";
5052 insert_file
($home_text);
5055 print $cgi->startform(-method
=> "get") .
5056 "<p class=\"projsearch\">Search:\n" .
5057 $cgi->textfield(-name
=> "s", -value
=> $searchtext) . "\n" .
5059 $cgi->end_form() . "\n";
5060 git_project_list_body
(\
@list, $order);
5065 my $order = $input_params{'order'};
5066 if (defined $order && $order !~ m/none|project|descr|owner|age/) {
5067 die_error
(400, "Unknown order parameter");
5070 my @list = git_get_projects_list
($project);
5072 die_error
(404, "No forks found");
5076 git_print_page_nav
('','');
5077 git_print_header_div
('summary', "$project forks");
5078 git_project_list_body
(\
@list, $order);
5082 sub git_project_index
{
5083 my @projects = git_get_projects_list
($project);
5086 -type
=> 'text/plain',
5087 -charset
=> 'utf-8',
5088 -content_disposition
=> 'inline; filename="index.aux"');
5090 foreach my $pr (@projects) {
5091 if (!exists $pr->{'owner'}) {
5092 $pr->{'owner'} = git_get_project_owner
("$pr->{'path'}");
5095 my ($path, $owner) = ($pr->{'path'}, $pr->{'owner'});
5096 # quote as in CGI::Util::encode, but keep the slash, and use '+' for ' '
5097 $path =~ s/([^a-zA-Z0-9_.\-\/ ])/sprintf
("%%%02X", ord($1))/eg
;
5098 $owner =~ s/([^a-zA-Z0-9_.\-\/ ])/sprintf
("%%%02X", ord($1))/eg
;
5102 print "$path $owner\n";
5107 my $descr = git_get_project_description
($project) || "none";
5108 my %co = parse_commit
("HEAD");
5109 my %cd = %co ? parse_date
($co{'committer_epoch'}, $co{'committer_tz'}) : ();
5110 my $head = $co{'id'};
5112 my $owner = git_get_project_owner
($project);
5114 my $refs = git_get_references
();
5115 # These get_*_list functions return one more to allow us to see if
5116 # there are more ...
5117 my @taglist = git_get_tags_list
(16);
5118 my @headlist = git_get_heads_list
(16);
5120 my $check_forks = gitweb_check_feature
('forks');
5123 @forklist = git_get_projects_list
($project);
5127 git_print_page_nav
('summary','', $head);
5129 print "<div class=\"title\"> </div>\n";
5130 print "<table class=\"projects_list\">\n" .
5131 "<tr id=\"metadata_desc\"><td>description</td><td>" . esc_html
($descr) . "</td></tr>\n" .
5132 "<tr id=\"metadata_owner\"><td>owner</td><td>" . esc_html
($owner) . "</td></tr>\n";
5133 if (defined $cd{'rfc2822'}) {
5134 print "<tr id=\"metadata_lchange\"><td>last change</td><td>$cd{'rfc2822'}</td></tr>\n";
5137 # use per project git URL list in $projectroot/$project/cloneurl
5138 # or make project git URL from git base URL and project name
5139 my $url_tag = "URL";
5140 my @url_list = git_get_project_url_list
($project);
5141 @url_list = map { "$_/$project" } @git_base_url_list unless @url_list;
5142 foreach my $git_url (@url_list) {
5143 next unless $git_url;
5144 print "<tr class=\"metadata_url\"><td>$url_tag</td><td>$git_url</td></tr>\n";
5149 my $show_ctags = gitweb_check_feature
('ctags');
5151 my $ctags = git_get_project_ctags
($project);
5152 my $cloud = git_populate_project_tagcloud
($ctags);
5153 print "<tr id=\"metadata_ctags\"><td>Content tags:<br />";
5154 print "</td>\n<td>" unless %$ctags;
5155 print "<form action=\"$show_ctags\" method=\"post\"><input type=\"hidden\" name=\"p\" value=\"$project\" />Add: <input type=\"text\" name=\"t\" size=\"8\" /></form>";
5156 print "</td>\n<td>" if %$ctags;
5157 print git_show_project_tagcloud
($cloud, 48);
5163 # If XSS prevention is on, we don't include README.html.
5164 # TODO: Allow a readme in some safe format.
5165 if (!$prevent_xss && -s
"$projectroot/$project/README.html") {
5166 print "<div class=\"title\">readme</div>\n" .
5167 "<div class=\"readme\">\n";
5168 insert_file
("$projectroot/$project/README.html");
5169 print "\n</div>\n"; # class="readme"
5172 # we need to request one more than 16 (0..15) to check if
5174 my @commitlist = $head ? parse_commits
($head, 17) : ();
5176 git_print_header_div
('shortlog');
5177 git_shortlog_body
(\
@commitlist, 0, 15, $refs,
5178 $#commitlist <= 15 ?
undef :
5179 $cgi->a({-href
=> href
(action
=>"shortlog")}, "..."));
5183 git_print_header_div
('tags');
5184 git_tags_body
(\
@taglist, 0, 15,
5185 $#taglist <= 15 ?
undef :
5186 $cgi->a({-href
=> href
(action
=>"tags")}, "..."));
5190 git_print_header_div
('heads');
5191 git_heads_body
(\
@headlist, $head, 0, 15,
5192 $#headlist <= 15 ?
undef :
5193 $cgi->a({-href
=> href
(action
=>"heads")}, "..."));
5197 git_print_header_div
('forks');
5198 git_project_list_body
(\
@forklist, 'age', 0, 15,
5199 $#forklist <= 15 ?
undef :
5200 $cgi->a({-href
=> href
(action
=>"forks")}, "..."),
5208 my %tag = parse_tag
($hash);
5211 die_error
(404, "Unknown tag object");
5214 my $head = git_get_head_hash
($project);
5216 git_print_page_nav
('','', $head,undef,$head);
5217 git_print_header_div
('commit', esc_html
($tag{'name'}), $hash);
5218 print "<div class=\"title_text\">\n" .
5219 "<table class=\"object_header\">\n" .
5221 "<td>object</td>\n" .
5222 "<td>" . $cgi->a({-class => "list", -href
=> href
(action
=>$tag{'type'}, hash
=>$tag{'object'})},
5223 $tag{'object'}) . "</td>\n" .
5224 "<td class=\"link\">" . $cgi->a({-href
=> href
(action
=>$tag{'type'}, hash
=>$tag{'object'})},
5225 $tag{'type'}) . "</td>\n" .
5227 if (defined($tag{'author'})) {
5228 git_print_authorship_rows
(\
%tag, 'author');
5230 print "</table>\n\n" .
5232 print "<div class=\"page_body\">";
5233 my $comment = $tag{'comment'};
5234 foreach my $line (@
$comment) {
5236 print esc_html
($line, -nbsp
=>1) . "<br/>\n";
5242 sub git_blame_common
{
5243 my $format = shift || 'porcelain';
5244 if ($format eq 'porcelain' && $cgi->param('js')) {
5245 $format = 'incremental';
5246 $action = 'blame_incremental'; # for page title etc
5250 gitweb_check_feature
('blame')
5251 or die_error
(403, "Blame view not allowed");
5254 die_error
(400, "No file name given") unless $file_name;
5255 $hash_base ||= git_get_head_hash
($project);
5256 die_error
(404, "Couldn't find base commit") unless $hash_base;
5257 my %co = parse_commit
($hash_base)
5258 or die_error
(404, "Commit not found");
5260 if (!defined $hash) {
5261 $hash = git_get_hash_by_path
($hash_base, $file_name, "blob")
5262 or die_error
(404, "Error looking up file");
5264 $ftype = git_get_type
($hash);
5265 if ($ftype !~ "blob") {
5266 die_error
(400, "Object is not a blob");
5271 if ($format eq 'incremental') {
5272 # get file contents (as base)
5273 open $fd, "-|", git_cmd
(), 'cat-file', 'blob', $hash
5274 or die_error
(500, "Open git-cat-file failed");
5275 } elsif ($format eq 'data') {
5276 # run git-blame --incremental
5277 open $fd, "-|", git_cmd
(), "blame", "--incremental",
5278 $hash_base, "--", $file_name
5279 or die_error
(500, "Open git-blame --incremental failed");
5281 # run git-blame --porcelain
5282 open $fd, "-|", git_cmd
(), "blame", '-p',
5283 $hash_base, '--', $file_name
5284 or die_error
(500, "Open git-blame --porcelain failed");
5287 # incremental blame data returns early
5288 if ($format eq 'data') {
5290 -type
=>"text/plain", -charset
=> "utf-8",
5291 -status
=> "200 OK");
5292 local $| = 1; # output autoflush
5295 or print "ERROR $!\n";
5298 if (defined $t0 && gitweb_check_feature
('timed')) {
5300 Time
::HiRes
::tv_interval
($t0, [Time
::HiRes
::gettimeofday
()]).
5301 ' '.$number_of_git_cmds;
5311 $cgi->a({-href
=> href
(action
=>"blob", -replay
=>1)},
5314 if ($format eq 'incremental') {
5316 $cgi->a({-href
=> href
(action
=>"blame", javascript
=>0, -replay
=>1)},
5317 "blame") . " (non-incremental)";
5320 $cgi->a({-href
=> href
(action
=>"blame_incremental", -replay
=>1)},
5321 "blame") . " (incremental)";
5325 $cgi->a({-href
=> href
(action
=>"history", -replay
=>1)},
5328 $cgi->a({-href
=> href
(action
=>$action, file_name
=>$file_name)},
5330 git_print_page_nav
('','', $hash_base,$co{'tree'},$hash_base, $formats_nav);
5331 git_print_header_div
('commit', esc_html
($co{'title'}), $hash_base);
5332 git_print_page_path
($file_name, $ftype, $hash_base);
5335 if ($format eq 'incremental') {
5336 print "<noscript>\n<div class=\"error\"><center><b>\n".
5337 "This page requires JavaScript to run.\n Use ".
5338 $cgi->a({-href
=> href
(action
=>'blame',javascript
=>0,-replay
=>1)},
5341 "</b></center></div>\n</noscript>\n";
5343 print qq!<div id
="progress_bar" style
="width: 100%; background-color: yellow"></div
>\n!;
5346 print qq!<div
class="page_body">\n!;
5347 print qq!<div id
="progress_info">... / ...</div
>\n!
5348 if ($format eq 'incremental');
5349 print qq!<table id
="blame_table" class="blame" width
="100%">\n!.
5350 #qq!<col width="5.5em" /><col width="2.5em" /><col width="*" />\n!.
5352 qq!<tr
><th
>Commit
</th><th>Line</th
><th
>Data
</th></tr
>\n!.
5356 my @rev_color = qw(light dark);
5357 my $num_colors = scalar(@rev_color);
5358 my $current_color = 0;
5360 if ($format eq 'incremental') {
5361 my $color_class = $rev_color[$current_color];
5366 while (my $line = <$fd>) {
5370 print qq!<tr id
="l$linenr" class="$color_class">!.
5371 qq!<td
class="sha1"><a href
=""> </a></td
>!.
5372 qq!<td
class="linenr">!.
5373 qq!<a
class="linenr" href
="">$linenr</a></td
>!;
5374 print qq!<td
class="pre">! . esc_html
($line) . "</td>\n";
5378 } else { # porcelain, i.e. ordinary blame
5379 my %metainfo = (); # saves information about commits
5383 while (my $line = <$fd>) {
5385 # the header: <SHA-1> <src lineno> <dst lineno> [<lines in group>]
5386 # no <lines in group> for subsequent lines in group of lines
5387 my ($full_rev, $orig_lineno, $lineno, $group_size) =
5388 ($line =~ /^([0-9a-f]{40}) (\d+) (\d+)(?: (\d+))?$/);
5389 if (!exists $metainfo{$full_rev}) {
5390 $metainfo{$full_rev} = { 'nprevious' => 0 };
5392 my $meta = $metainfo{$full_rev};
5394 while ($data = <$fd>) {
5396 last if ($data =~ s/^\t//); # contents of line
5397 if ($data =~ /^(\S+)(?: (.*))?$/) {
5398 $meta->{$1} = $2 unless exists $meta->{$1};
5400 if ($data =~ /^previous /) {
5401 $meta->{'nprevious'}++;
5404 my $short_rev = substr($full_rev, 0, 8);
5405 my $author = $meta->{'author'};
5407 parse_date
($meta->{'author-time'}, $meta->{'author-tz'});
5408 my $date = $date{'iso-tz'};
5410 $current_color = ($current_color + 1) % $num_colors;
5412 my $tr_class = $rev_color[$current_color];
5413 $tr_class .= ' boundary' if (exists $meta->{'boundary'});
5414 $tr_class .= ' no-previous' if ($meta->{'nprevious'} == 0);
5415 $tr_class .= ' multiple-previous' if ($meta->{'nprevious'} > 1);
5416 print "<tr id=\"l$lineno\" class=\"$tr_class\">\n";
5418 print "<td class=\"sha1\"";
5419 print " title=\"". esc_html
($author) . ", $date\"";
5420 print " rowspan=\"$group_size\"" if ($group_size > 1);
5422 print $cgi->a({-href
=> href
(action
=>"commit",
5424 file_name
=>$file_name)},
5425 esc_html
($short_rev));
5426 if ($group_size >= 2) {
5427 my @author_initials = ($author =~ /\b([[:upper:]])\B/g);
5428 if (@author_initials) {
5430 esc_html
(join('', @author_initials));
5436 # 'previous' <sha1 of parent commit> <filename at commit>
5437 if (exists $meta->{'previous'} &&
5438 $meta->{'previous'} =~ /^([a-fA-F0-9]{40}) (.*)$/) {
5439 $meta->{'parent'} = $1;
5440 $meta->{'file_parent'} = unquote
($2);
5443 exists($meta->{'parent'}) ?
5444 $meta->{'parent'} : $full_rev;
5445 my $linenr_filename =
5446 exists($meta->{'file_parent'}) ?
5447 $meta->{'file_parent'} : unquote
($meta->{'filename'});
5448 my $blamed = href
(action
=> 'blame',
5449 file_name
=> $linenr_filename,
5450 hash_base
=> $linenr_commit);
5451 print "<td class=\"linenr\">";
5452 print $cgi->a({ -href
=> "$blamed#l$orig_lineno",
5453 -class => "linenr" },
5456 print "<td class=\"pre\">" . esc_html
($data) . "</td>\n";
5464 "</table>\n"; # class="blame"
5465 print "</div>\n"; # class="blame_body"
5467 or print "Reading blob failed\n";
5476 sub git_blame_incremental
{
5477 git_blame_common
('incremental');
5480 sub git_blame_data
{
5481 git_blame_common
('data');
5485 my $head = git_get_head_hash
($project);
5487 git_print_page_nav
('','', $head,undef,$head);
5488 git_print_header_div
('summary', $project);
5490 my @tagslist = git_get_tags_list
();
5492 git_tags_body
(\
@tagslist);
5498 my $head = git_get_head_hash
($project);
5500 git_print_page_nav
('','', $head,undef,$head);
5501 git_print_header_div
('summary', $project);
5503 my @headslist = git_get_heads_list
();
5505 git_heads_body
(\
@headslist, $head);
5510 sub git_blob_plain
{
5514 if (!defined $hash) {
5515 if (defined $file_name) {
5516 my $base = $hash_base || git_get_head_hash
($project);
5517 $hash = git_get_hash_by_path
($base, $file_name, "blob")
5518 or die_error
(404, "Cannot find file");
5520 die_error
(400, "No file name defined");
5522 } elsif ($hash =~ m/^[0-9a-fA-F]{40}$/) {
5523 # blobs defined by non-textual hash id's can be cached
5527 open my $fd, "-|", git_cmd
(), "cat-file", "blob", $hash
5528 or die_error
(500, "Open git-cat-file blob '$hash' failed");
5530 # content-type (can include charset)
5531 $type = blob_contenttype
($fd, $file_name, $type);
5533 # "save as" filename, even when no $file_name is given
5534 my $save_as = "$hash";
5535 if (defined $file_name) {
5536 $save_as = $file_name;
5537 } elsif ($type =~ m/^text\//) {
5541 # With XSS prevention on, blobs of all types except a few known safe
5542 # ones are served with "Content-Disposition: attachment" to make sure
5543 # they don't run in our security domain. For certain image types,
5544 # blob view writes an <img> tag referring to blob_plain view, and we
5545 # want to be sure not to break that by serving the image as an
5546 # attachment (though Firefox 3 doesn't seem to care).
5547 my $sandbox = $prevent_xss &&
5548 $type !~ m!^(?:text/plain|image/(?:gif|png|jpeg))$!;
5552 -expires
=> $expires,
5553 -content_disposition
=>
5554 ($sandbox ?
'attachment' : 'inline')
5555 . '; filename="' . $save_as . '"');
5557 binmode STDOUT
, ':raw';
5559 binmode STDOUT
, ':utf8'; # as set at the beginning of gitweb.cgi
5566 if (!defined $hash) {
5567 if (defined $file_name) {
5568 my $base = $hash_base || git_get_head_hash
($project);
5569 $hash = git_get_hash_by_path
($base, $file_name, "blob")
5570 or die_error
(404, "Cannot find file");
5572 die_error
(400, "No file name defined");
5574 } elsif ($hash =~ m/^[0-9a-fA-F]{40}$/) {
5575 # blobs defined by non-textual hash id's can be cached
5579 my $have_blame = gitweb_check_feature
('blame');
5580 open my $fd, "-|", git_cmd
(), "cat-file", "blob", $hash
5581 or die_error
(500, "Couldn't cat $file_name, $hash");
5582 my $mimetype = blob_mimetype
($fd, $file_name);
5583 # use 'blob_plain' (aka 'raw') view for files that cannot be displayed
5584 if ($mimetype !~ m!^(?:text/|image/(?:gif|png|jpeg)$)! && -B
$fd) {
5586 return git_blob_plain
($mimetype);
5588 # we can have blame only for text/* mimetype
5589 $have_blame &&= ($mimetype =~ m!^text/!);
5591 my $highlight = gitweb_check_feature
('highlight');
5592 my $syntax = guess_file_syntax
($highlight, $mimetype, $file_name);
5593 $fd = run_highlighter
($fd, $highlight, $syntax)
5596 git_header_html
(undef, $expires);
5597 my $formats_nav = '';
5598 if (defined $hash_base && (my %co = parse_commit
($hash_base))) {
5599 if (defined $file_name) {
5602 $cgi->a({-href
=> href
(action
=>"blame", -replay
=>1)},
5607 $cgi->a({-href
=> href
(action
=>"history", -replay
=>1)},
5610 $cgi->a({-href
=> href
(action
=>"blob_plain", -replay
=>1)},
5613 $cgi->a({-href
=> href
(action
=>"blob",
5614 hash_base
=>"HEAD", file_name
=>$file_name)},
5618 $cgi->a({-href
=> href
(action
=>"blob_plain", -replay
=>1)},
5621 git_print_page_nav
('','', $hash_base,$co{'tree'},$hash_base, $formats_nav);
5622 git_print_header_div
('commit', esc_html
($co{'title'}), $hash_base);
5624 print "<div class=\"page_nav\">\n" .
5625 "<br/><br/></div>\n" .
5626 "<div class=\"title\">$hash</div>\n";
5628 git_print_page_path
($file_name, "blob", $hash_base);
5629 print "<div class=\"page_body\">\n";
5630 if ($mimetype =~ m!^image/!) {
5631 print qq!<img type
="$mimetype"!;
5633 print qq! alt
="$file_name" title
="$file_name"!;
5636 href(action=>"blob_plain
", hash=>$hash,
5637 hash_base=>$hash_base, file_name=>$file_name) .
5641 while (my $line = <$fd>) {
5644 $line = untabify
($line);
5645 printf qq!<div
class="pre"><a id
="l%i" href
="%s#l%i" class="linenr">%4i</a> %s</div
>\n!,
5646 $nr, href
(-replay
=> 1), $nr, $nr, $syntax ?
$line : esc_html
($line, -nbsp
=>1);
5650 or print "Reading blob failed.\n";
5656 if (!defined $hash_base) {
5657 $hash_base = "HEAD";
5659 if (!defined $hash) {
5660 if (defined $file_name) {
5661 $hash = git_get_hash_by_path
($hash_base, $file_name, "tree");
5666 die_error
(404, "No such tree") unless defined($hash);
5668 my $show_sizes = gitweb_check_feature
('show-sizes');
5669 my $have_blame = gitweb_check_feature
('blame');
5674 open my $fd, "-|", git_cmd
(), "ls-tree", '-z',
5675 ($show_sizes ?
'-l' : ()), @extra_options, $hash
5676 or die_error
(500, "Open git-ls-tree failed");
5677 @entries = map { chomp; $_ } <$fd>;
5679 or die_error
(404, "Reading tree failed");
5682 my $refs = git_get_references
();
5683 my $ref = format_ref_marker
($refs, $hash_base);
5686 if (defined $hash_base && (my %co = parse_commit
($hash_base))) {
5688 if (defined $file_name) {
5690 $cgi->a({-href
=> href
(action
=>"history", -replay
=>1)},
5692 $cgi->a({-href
=> href
(action
=>"tree",
5693 hash_base
=>"HEAD", file_name
=>$file_name)},
5696 my $snapshot_links = format_snapshot_links
($hash);
5697 if (defined $snapshot_links) {
5698 # FIXME: Should be available when we have no hash base as well.
5699 push @views_nav, $snapshot_links;
5701 git_print_page_nav
('tree','', $hash_base, undef, undef,
5702 join(' | ', @views_nav));
5703 git_print_header_div
('commit', esc_html
($co{'title'}) . $ref, $hash_base);
5706 print "<div class=\"page_nav\">\n";
5707 print "<br/><br/></div>\n";
5708 print "<div class=\"title\">$hash</div>\n";
5710 if (defined $file_name) {
5711 $basedir = $file_name;
5712 if ($basedir ne '' && substr($basedir, -1) ne '/') {
5715 git_print_page_path
($file_name, 'tree', $hash_base);
5717 print "<div class=\"page_body\">\n";
5718 print "<table class=\"tree\">\n";
5720 # '..' (top directory) link if possible
5721 if (defined $hash_base &&
5722 defined $file_name && $file_name =~ m![^/]+$!) {
5724 print "<tr class=\"dark\">\n";
5726 print "<tr class=\"light\">\n";
5730 my $up = $file_name;
5731 $up =~ s!/?[^/]+$!!;
5732 undef $up unless $up;
5733 # based on git_print_tree_entry
5734 print '<td class="mode">' . mode_str
('040000') . "</td>\n";
5735 print '<td class="size"> </td>'."\n" if $show_sizes;
5736 print '<td class="list">';
5737 print $cgi->a({-href
=> href
(action
=>"tree",
5738 hash_base
=>$hash_base,
5742 print "<td class=\"link\"></td>\n";
5746 foreach my $line (@entries) {
5747 my %t = parse_ls_tree_line
($line, -z
=> 1, -l
=> $show_sizes);
5750 print "<tr class=\"dark\">\n";
5752 print "<tr class=\"light\">\n";
5756 git_print_tree_entry
(\
%t, $basedir, $hash_base, $have_blame);
5760 print "</table>\n" .
5766 my ($project, $hash) = @_;
5768 # path/to/project.git -> project
5769 # path/to/project/.git -> project
5770 my $name = to_utf8
($project);
5771 $name =~ s
,([^/])/*\
.git
$,$1,;
5772 $name = basename
($name);
5774 $name =~ s/[[:cntrl:]]/?/g;
5777 if ($hash =~ /^[0-9a-fA-F]+$/) {
5778 # shorten SHA-1 hash
5779 my $full_hash = git_get_full_hash
($project, $hash);
5780 if ($full_hash =~ /^$hash/ && length($hash) > 7) {
5781 $ver = git_get_short_hash
($project, $hash);
5783 } elsif ($hash =~ m!^refs/tags/(.*)$!) {
5784 # tags don't need shortened SHA-1 hash
5787 # branches and other need shortened SHA-1 hash
5788 if ($hash =~ m!^refs/(?:heads|remotes)/(.*)$!) {
5791 $ver .= '-' . git_get_short_hash
($project, $hash);
5793 # in case of hierarchical branch names
5796 # name = project-version_string
5797 $name = "$name-$ver";
5799 return wantarray ?
($name, $name) : $name;
5803 my $format = $input_params{'snapshot_format'};
5804 if (!@snapshot_fmts) {
5805 die_error
(403, "Snapshots not allowed");
5807 # default to first supported snapshot format
5808 $format ||= $snapshot_fmts[0];
5809 if ($format !~ m/^[a-z0-9]+$/) {
5810 die_error
(400, "Invalid snapshot format parameter");
5811 } elsif (!exists($known_snapshot_formats{$format})) {
5812 die_error
(400, "Unknown snapshot format");
5813 } elsif ($known_snapshot_formats{$format}{'disabled'}) {
5814 die_error
(403, "Snapshot format not allowed");
5815 } elsif (!grep($_ eq $format, @snapshot_fmts)) {
5816 die_error
(403, "Unsupported snapshot format");
5819 my $type = git_get_type
("$hash^{}");
5821 die_error
(404, 'Object does not exist');
5822 } elsif ($type eq 'blob') {
5823 die_error
(400, 'Object is not a tree-ish');
5826 my ($name, $prefix) = snapshot_name
($project, $hash);
5827 my $filename = "$name$known_snapshot_formats{$format}{'suffix'}";
5828 my $cmd = quote_command
(
5829 git_cmd
(), 'archive',
5830 "--format=$known_snapshot_formats{$format}{'format'}",
5831 "--prefix=$prefix/", $hash);
5832 if (exists $known_snapshot_formats{$format}{'compressor'}) {
5833 $cmd .= ' | ' . quote_command
(@
{$known_snapshot_formats{$format}{'compressor'}});
5836 $filename =~ s/(["\\])/\\$1/g;
5838 -type
=> $known_snapshot_formats{$format}{'type'},
5839 -content_disposition
=> 'inline; filename="' . $filename . '"',
5840 -status
=> '200 OK');
5842 open my $fd, "-|", $cmd
5843 or die_error
(500, "Execute git-archive failed");
5844 binmode STDOUT
, ':raw';
5846 binmode STDOUT
, ':utf8'; # as set at the beginning of gitweb.cgi
5850 sub git_log_generic
{
5851 my ($fmt_name, $body_subr, $base, $parent, $file_name, $file_hash) = @_;
5853 my $head = git_get_head_hash
($project);
5854 if (!defined $base) {
5857 if (!defined $page) {
5860 my $refs = git_get_references
();
5862 my $commit_hash = $base;
5863 if (defined $parent) {
5864 $commit_hash = "$parent..$base";
5867 parse_commits
($commit_hash, 101, (100 * $page),
5868 defined $file_name ?
($file_name, "--full-history") : ());
5871 if (!defined $file_hash && defined $file_name) {
5872 # some commits could have deleted file in question,
5873 # and not have it in tree, but one of them has to have it
5874 for (my $i = 0; $i < @commitlist; $i++) {
5875 $file_hash = git_get_hash_by_path
($commitlist[$i]{'id'}, $file_name);
5876 last if defined $file_hash;
5879 if (defined $file_hash) {
5880 $ftype = git_get_type
($file_hash);
5882 if (defined $file_name && !defined $ftype) {
5883 die_error
(500, "Unknown type of object");
5886 if (defined $file_name) {
5887 %co = parse_commit
($base)
5888 or die_error
(404, "Unknown commit object");
5892 my $paging_nav = format_paging_nav
($fmt_name, $page, $#commitlist >= 100);
5894 if ($#commitlist >= 100) {
5896 $cgi->a({-href
=> href
(-replay
=>1, page
=>$page+1),
5897 -accesskey
=> "n", -title
=> "Alt-n"}, "next");
5899 my $patch_max = gitweb_get_feature
('patches');
5900 if ($patch_max && !defined $file_name) {
5901 if ($patch_max < 0 || @commitlist <= $patch_max) {
5902 $paging_nav .= " ⋅ " .
5903 $cgi->a({-href
=> href
(action
=>"patches", -replay
=>1)},
5909 git_print_page_nav
($fmt_name,'', $hash,$hash,$hash, $paging_nav);
5910 if (defined $file_name) {
5911 git_print_header_div
('commit', esc_html
($co{'title'}), $base);
5913 git_print_header_div
('summary', $project)
5915 git_print_page_path
($file_name, $ftype, $hash_base)
5916 if (defined $file_name);
5918 $body_subr->(\
@commitlist, 0, 99, $refs, $next_link,
5919 $file_name, $file_hash, $ftype);
5925 git_log_generic
('log', \
&git_log_body
,
5926 $hash, $hash_parent);
5930 $hash ||= $hash_base || "HEAD";
5931 my %co = parse_commit
($hash)
5932 or die_error
(404, "Unknown commit object");
5934 my $parent = $co{'parent'};
5935 my $parents = $co{'parents'}; # listref
5937 # we need to prepare $formats_nav before any parameter munging
5939 if (!defined $parent) {
5941 $formats_nav .= '(initial)';
5942 } elsif (@
$parents == 1) {
5943 # single parent commit
5946 $cgi->a({-href
=> href
(action
=>"commit",
5948 esc_html
(substr($parent, 0, 7))) .
5955 $cgi->a({-href
=> href
(action
=>"commit",
5957 esc_html
(substr($_, 0, 7)));
5961 if (gitweb_check_feature
('patches') && @
$parents <= 1) {
5962 $formats_nav .= " | " .
5963 $cgi->a({-href
=> href
(action
=>"patch", -replay
=>1)},
5967 if (!defined $parent) {
5971 open my $fd, "-|", git_cmd
(), "diff-tree", '-r', "--no-commit-id",
5973 (@
$parents <= 1 ?
$parent : '-c'),
5975 or die_error
(500, "Open git-diff-tree failed");
5976 @difftree = map { chomp; $_ } <$fd>;
5977 close $fd or die_error
(404, "Reading git-diff-tree failed");
5979 # non-textual hash id's can be cached
5981 if ($hash =~ m/^[0-9a-fA-F]{40}$/) {
5984 my $refs = git_get_references
();
5985 my $ref = format_ref_marker
($refs, $co{'id'});
5987 git_header_html
(undef, $expires);
5988 git_print_page_nav
('commit', '',
5989 $hash, $co{'tree'}, $hash,
5992 if (defined $co{'parent'}) {
5993 git_print_header_div
('commitdiff', esc_html
($co{'title'}) . $ref, $hash);
5995 git_print_header_div
('tree', esc_html
($co{'title'}) . $ref, $co{'tree'}, $hash);
5997 print "<div class=\"title_text\">\n" .
5998 "<table class=\"object_header\">\n";
5999 git_print_authorship_rows
(\
%co);
6000 print "<tr><td>commit</td><td class=\"sha1\">$co{'id'}</td></tr>\n";
6003 "<td class=\"sha1\">" .
6004 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$co{'tree'}, hash_base
=>$hash),
6005 class => "list"}, $co{'tree'}) .
6007 "<td class=\"link\">" .
6008 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$co{'tree'}, hash_base
=>$hash)},
6010 my $snapshot_links = format_snapshot_links
($hash);
6011 if (defined $snapshot_links) {
6012 print " | " . $snapshot_links;
6017 foreach my $par (@
$parents) {
6020 "<td class=\"sha1\">" .
6021 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$par),
6022 class => "list"}, $par) .
6024 "<td class=\"link\">" .
6025 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$par)}, "commit") .
6027 $cgi->a({-href
=> href
(action
=>"commitdiff", hash
=>$hash, hash_parent
=>$par)}, "diff") .
6034 print "<div class=\"page_body\">\n";
6035 git_print_log
($co{'comment'});
6038 git_difftree_body
(\
@difftree, $hash, @
$parents);
6044 # object is defined by:
6045 # - hash or hash_base alone
6046 # - hash_base and file_name
6049 # - hash or hash_base alone
6050 if ($hash || ($hash_base && !defined $file_name)) {
6051 my $object_id = $hash || $hash_base;
6053 open my $fd, "-|", quote_command
(
6054 git_cmd
(), 'cat-file', '-t', $object_id) . ' 2> /dev/null'
6055 or die_error
(404, "Object does not exist");
6059 or die_error
(404, "Object does not exist");
6061 # - hash_base and file_name
6062 } elsif ($hash_base && defined $file_name) {
6063 $file_name =~ s
,/+$,,;
6065 system(git_cmd
(), "cat-file", '-e', $hash_base) == 0
6066 or die_error
(404, "Base object does not exist");
6068 # here errors should not hapen
6069 open my $fd, "-|", git_cmd
(), "ls-tree", $hash_base, "--", $file_name
6070 or die_error
(500, "Open git-ls-tree failed");
6074 #'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'
6075 unless ($line && $line =~ m/^([0-9]+) (.+) ([0-9a-fA-F]{40})\t/) {
6076 die_error
(404, "File or directory for given base does not exist");
6081 die_error
(400, "Not enough information to find object");
6084 print $cgi->redirect(-uri
=> href
(action
=>$type, -full
=>1,
6085 hash
=>$hash, hash_base
=>$hash_base,
6086 file_name
=>$file_name),
6087 -status
=> '302 Found');
6091 my $format = shift || 'html';
6098 # preparing $fd and %diffinfo for git_patchset_body
6100 if (defined $hash_base && defined $hash_parent_base) {
6101 if (defined $file_name) {
6103 open $fd, "-|", git_cmd
(), "diff-tree", '-r', @diff_opts,
6104 $hash_parent_base, $hash_base,
6105 "--", (defined $file_parent ?
$file_parent : ()), $file_name
6106 or die_error
(500, "Open git-diff-tree failed");
6107 @difftree = map { chomp; $_ } <$fd>;
6109 or die_error
(404, "Reading git-diff-tree failed");
6111 or die_error
(404, "Blob diff not found");
6113 } elsif (defined $hash &&
6114 $hash =~ /[0-9a-fA-F]{40}/) {
6115 # try to find filename from $hash
6117 # read filtered raw output
6118 open $fd, "-|", git_cmd
(), "diff-tree", '-r', @diff_opts,
6119 $hash_parent_base, $hash_base, "--"
6120 or die_error
(500, "Open git-diff-tree failed");
6122 # ':100644 100644 03b21826... 3b93d5e7... M ls-files.c'
6124 grep { /^:[0-7]{6} [0-7]{6} [0-9a-fA-F]{40} $hash/ }
6125 map { chomp; $_ } <$fd>;
6127 or die_error
(404, "Reading git-diff-tree failed");
6129 or die_error
(404, "Blob diff not found");
6132 die_error
(400, "Missing one of the blob diff parameters");
6135 if (@difftree > 1) {
6136 die_error
(400, "Ambiguous blob diff specification");
6139 %diffinfo = parse_difftree_raw_line
($difftree[0]);
6140 $file_parent ||= $diffinfo{'from_file'} || $file_name;
6141 $file_name ||= $diffinfo{'to_file'};
6143 $hash_parent ||= $diffinfo{'from_id'};
6144 $hash ||= $diffinfo{'to_id'};
6146 # non-textual hash id's can be cached
6147 if ($hash_base =~ m/^[0-9a-fA-F]{40}$/ &&
6148 $hash_parent_base =~ m/^[0-9a-fA-F]{40}$/) {
6153 open $fd, "-|", git_cmd
(), "diff-tree", '-r', @diff_opts,
6154 '-p', ($format eq 'html' ?
"--full-index" : ()),
6155 $hash_parent_base, $hash_base,
6156 "--", (defined $file_parent ?
$file_parent : ()), $file_name
6157 or die_error
(500, "Open git-diff-tree failed");
6160 # old/legacy style URI -- not generated anymore since 1.4.3.
6162 die_error
('404 Not Found', "Missing one of the blob diff parameters")
6166 if ($format eq 'html') {
6168 $cgi->a({-href
=> href
(action
=>"blobdiff_plain", -replay
=>1)},
6170 git_header_html
(undef, $expires);
6171 if (defined $hash_base && (my %co = parse_commit
($hash_base))) {
6172 git_print_page_nav
('','', $hash_base,$co{'tree'},$hash_base, $formats_nav);
6173 git_print_header_div
('commit', esc_html
($co{'title'}), $hash_base);
6175 print "<div class=\"page_nav\"><br/>$formats_nav<br/></div>\n";
6176 print "<div class=\"title\">$hash vs $hash_parent</div>\n";
6178 if (defined $file_name) {
6179 git_print_page_path
($file_name, "blob", $hash_base);
6181 print "<div class=\"page_path\"></div>\n";
6184 } elsif ($format eq 'plain') {
6186 -type
=> 'text/plain',
6187 -charset
=> 'utf-8',
6188 -expires
=> $expires,
6189 -content_disposition
=> 'inline; filename="' . "$file_name" . '.patch"');
6191 print "X-Git-Url: " . $cgi->self_url() . "\n\n";
6194 die_error
(400, "Unknown blobdiff format");
6198 if ($format eq 'html') {
6199 print "<div class=\"page_body\">\n";
6201 git_patchset_body
($fd, [ \
%diffinfo ], $hash_base, $hash_parent_base);
6204 print "</div>\n"; # class="page_body"
6208 while (my $line = <$fd>) {
6209 $line =~ s!a/($hash|$hash_parent)!'a/'.esc_path($diffinfo{'from_file'})!eg;
6210 $line =~ s!b/($hash|$hash_parent)!'b/'.esc_path($diffinfo{'to_file'})!eg;
6214 last if $line =~ m!^\+\+\+!;
6222 sub git_blobdiff_plain
{
6223 git_blobdiff
('plain');
6226 sub git_commitdiff
{
6228 my $format = $params{-format
} || 'html';
6230 my ($patch_max) = gitweb_get_feature
('patches');
6231 if ($format eq 'patch') {
6232 die_error
(403, "Patch view not allowed") unless $patch_max;
6235 $hash ||= $hash_base || "HEAD";
6236 my %co = parse_commit
($hash)
6237 or die_error
(404, "Unknown commit object");
6239 # choose format for commitdiff for merge
6240 if (! defined $hash_parent && @
{$co{'parents'}} > 1) {
6241 $hash_parent = '--cc';
6243 # we need to prepare $formats_nav before almost any parameter munging
6245 if ($format eq 'html') {
6247 $cgi->a({-href
=> href
(action
=>"commitdiff_plain", -replay
=>1)},
6249 if ($patch_max && @
{$co{'parents'}} <= 1) {
6250 $formats_nav .= " | " .
6251 $cgi->a({-href
=> href
(action
=>"patch", -replay
=>1)},
6255 if (defined $hash_parent &&
6256 $hash_parent ne '-c' && $hash_parent ne '--cc') {
6257 # commitdiff with two commits given
6258 my $hash_parent_short = $hash_parent;
6259 if ($hash_parent =~ m/^[0-9a-fA-F]{40}$/) {
6260 $hash_parent_short = substr($hash_parent, 0, 7);
6264 for (my $i = 0; $i < @
{$co{'parents'}}; $i++) {
6265 if ($co{'parents'}[$i] eq $hash_parent) {
6266 $formats_nav .= ' parent ' . ($i+1);
6270 $formats_nav .= ': ' .
6271 $cgi->a({-href
=> href
(action
=>"commitdiff",
6272 hash
=>$hash_parent)},
6273 esc_html
($hash_parent_short)) .
6275 } elsif (!$co{'parent'}) {
6277 $formats_nav .= ' (initial)';
6278 } elsif (scalar @
{$co{'parents'}} == 1) {
6279 # single parent commit
6282 $cgi->a({-href
=> href
(action
=>"commitdiff",
6283 hash
=>$co{'parent'})},
6284 esc_html
(substr($co{'parent'}, 0, 7))) .
6288 if ($hash_parent eq '--cc') {
6289 $formats_nav .= ' | ' .
6290 $cgi->a({-href
=> href
(action
=>"commitdiff",
6291 hash
=>$hash, hash_parent
=>'-c')},
6293 } else { # $hash_parent eq '-c'
6294 $formats_nav .= ' | ' .
6295 $cgi->a({-href
=> href
(action
=>"commitdiff",
6296 hash
=>$hash, hash_parent
=>'--cc')},
6302 $cgi->a({-href
=> href
(action
=>"commitdiff",
6304 esc_html
(substr($_, 0, 7)));
6305 } @
{$co{'parents'}} ) .
6310 my $hash_parent_param = $hash_parent;
6311 if (!defined $hash_parent_param) {
6312 # --cc for multiple parents, --root for parentless
6313 $hash_parent_param =
6314 @
{$co{'parents'}} > 1 ?
'--cc' : $co{'parent'} || '--root';
6320 if ($format eq 'html') {
6321 open $fd, "-|", git_cmd
(), "diff-tree", '-r', @diff_opts,
6322 "--no-commit-id", "--patch-with-raw", "--full-index",
6323 $hash_parent_param, $hash, "--"
6324 or die_error
(500, "Open git-diff-tree failed");
6326 while (my $line = <$fd>) {
6328 # empty line ends raw part of diff-tree output
6330 push @difftree, scalar parse_difftree_raw_line
($line);
6333 } elsif ($format eq 'plain') {
6334 open $fd, "-|", git_cmd
(), "diff-tree", '-r', @diff_opts,
6335 '-p', $hash_parent_param, $hash, "--"
6336 or die_error
(500, "Open git-diff-tree failed");
6337 } elsif ($format eq 'patch') {
6338 # For commit ranges, we limit the output to the number of
6339 # patches specified in the 'patches' feature.
6340 # For single commits, we limit the output to a single patch,
6341 # diverging from the git-format-patch default.
6342 my @commit_spec = ();
6344 if ($patch_max > 0) {
6345 push @commit_spec, "-$patch_max";
6347 push @commit_spec, '-n', "$hash_parent..$hash";
6349 if ($params{-single
}) {
6350 push @commit_spec, '-1';
6352 if ($patch_max > 0) {
6353 push @commit_spec, "-$patch_max";
6355 push @commit_spec, "-n";
6357 push @commit_spec, '--root', $hash;
6359 open $fd, "-|", git_cmd
(), "format-patch", @diff_opts,
6360 '--encoding=utf8', '--stdout', @commit_spec
6361 or die_error
(500, "Open git-format-patch failed");
6363 die_error
(400, "Unknown commitdiff format");
6366 # non-textual hash id's can be cached
6368 if ($hash =~ m/^[0-9a-fA-F]{40}$/) {
6372 # write commit message
6373 if ($format eq 'html') {
6374 my $refs = git_get_references
();
6375 my $ref = format_ref_marker
($refs, $co{'id'});
6377 git_header_html
(undef, $expires);
6378 git_print_page_nav
('commitdiff','', $hash,$co{'tree'},$hash, $formats_nav);
6379 git_print_header_div
('commit', esc_html
($co{'title'}) . $ref, $hash);
6380 print "<div class=\"title_text\">\n" .
6381 "<table class=\"object_header\">\n";
6382 git_print_authorship_rows
(\
%co);
6385 print "<div class=\"page_body\">\n";
6386 if (@
{$co{'comment'}} > 1) {
6387 print "<div class=\"log\">\n";
6388 git_print_log
($co{'comment'}, -final_empty_line
=> 1, -remove_title
=> 1);
6389 print "</div>\n"; # class="log"
6392 } elsif ($format eq 'plain') {
6393 my $refs = git_get_references
("tags");
6394 my $tagname = git_get_rev_name_tags
($hash);
6395 my $filename = basename
($project) . "-$hash.patch";
6398 -type
=> 'text/plain',
6399 -charset
=> 'utf-8',
6400 -expires
=> $expires,
6401 -content_disposition
=> 'inline; filename="' . "$filename" . '"');
6402 my %ad = parse_date
($co{'author_epoch'}, $co{'author_tz'});
6403 print "From: " . to_utf8
($co{'author'}) . "\n";
6404 print "Date: $ad{'rfc2822'} ($ad{'tz_local'})\n";
6405 print "Subject: " . to_utf8
($co{'title'}) . "\n";
6407 print "X-Git-Tag: $tagname\n" if $tagname;
6408 print "X-Git-Url: " . $cgi->self_url() . "\n\n";
6410 foreach my $line (@
{$co{'comment'}}) {
6411 print to_utf8
($line) . "\n";
6414 } elsif ($format eq 'patch') {
6415 my $filename = basename
($project) . "-$hash.patch";
6418 -type
=> 'text/plain',
6419 -charset
=> 'utf-8',
6420 -expires
=> $expires,
6421 -content_disposition
=> 'inline; filename="' . "$filename" . '"');
6425 if ($format eq 'html') {
6426 my $use_parents = !defined $hash_parent ||
6427 $hash_parent eq '-c' || $hash_parent eq '--cc';
6428 git_difftree_body
(\
@difftree, $hash,
6429 $use_parents ? @
{$co{'parents'}} : $hash_parent);
6432 git_patchset_body
($fd, \
@difftree, $hash,
6433 $use_parents ? @
{$co{'parents'}} : $hash_parent);
6435 print "</div>\n"; # class="page_body"
6438 } elsif ($format eq 'plain') {
6442 or print "Reading git-diff-tree failed\n";
6443 } elsif ($format eq 'patch') {
6447 or print "Reading git-format-patch failed\n";
6451 sub git_commitdiff_plain
{
6452 git_commitdiff
(-format
=> 'plain');
6455 # format-patch-style patches
6457 git_commitdiff
(-format
=> 'patch', -single
=> 1);
6461 git_commitdiff
(-format
=> 'patch');
6465 git_log_generic
('history', \
&git_history_body
,
6466 $hash_base, $hash_parent_base,
6471 gitweb_check_feature
('search') or die_error
(403, "Search is disabled");
6472 if (!defined $searchtext) {
6473 die_error
(400, "Text field is empty");
6475 if (!defined $hash) {
6476 $hash = git_get_head_hash
($project);
6478 my %co = parse_commit
($hash);
6480 die_error
(404, "Unknown commit object");
6482 if (!defined $page) {
6486 $searchtype ||= 'commit';
6487 if ($searchtype eq 'pickaxe') {
6488 # pickaxe may take all resources of your box and run for several minutes
6489 # with every query - so decide by yourself how public you make this feature
6490 gitweb_check_feature
('pickaxe')
6491 or die_error
(403, "Pickaxe is disabled");
6493 if ($searchtype eq 'grep') {
6494 gitweb_check_feature
('grep')
6495 or die_error
(403, "Grep is disabled");
6500 if ($searchtype eq 'commit' or $searchtype eq 'author' or $searchtype eq 'committer') {
6502 if ($searchtype eq 'commit') {
6503 $greptype = "--grep=";
6504 } elsif ($searchtype eq 'author') {
6505 $greptype = "--author=";
6506 } elsif ($searchtype eq 'committer') {
6507 $greptype = "--committer=";
6509 $greptype .= $searchtext;
6510 my @commitlist = parse_commits
($hash, 101, (100 * $page), undef,
6511 $greptype, '--regexp-ignore-case',
6512 $search_use_regexp ?
'--extended-regexp' : '--fixed-strings');
6514 my $paging_nav = '';
6517 $cgi->a({-href
=> href
(action
=>"search", hash
=>$hash,
6518 searchtext
=>$searchtext,
6519 searchtype
=>$searchtype)},
6521 $paging_nav .= " ⋅ " .
6522 $cgi->a({-href
=> href
(-replay
=>1, page
=>$page-1),
6523 -accesskey
=> "p", -title
=> "Alt-p"}, "prev");
6525 $paging_nav .= "first";
6526 $paging_nav .= " ⋅ prev";
6529 if ($#commitlist >= 100) {
6531 $cgi->a({-href
=> href
(-replay
=>1, page
=>$page+1),
6532 -accesskey
=> "n", -title
=> "Alt-n"}, "next");
6533 $paging_nav .= " ⋅ $next_link";
6535 $paging_nav .= " ⋅ next";
6538 git_print_page_nav
('','', $hash,$co{'tree'},$hash, $paging_nav);
6539 git_print_header_div
('commit', esc_html
($co{'title'}), $hash);
6540 if ($page == 0 && !@commitlist) {
6541 print "<p>No match.</p>\n";
6543 git_search_grep_body
(\
@commitlist, 0, 99, $next_link);
6547 if ($searchtype eq 'pickaxe') {
6548 git_print_page_nav
('','', $hash,$co{'tree'},$hash);
6549 git_print_header_div
('commit', esc_html
($co{'title'}), $hash);
6551 print "<table class=\"pickaxe search\">\n";
6554 open my $fd, '-|', git_cmd
(), '--no-pager', 'log', @diff_opts,
6555 '--pretty=format:%H', '--no-abbrev', '--raw', "-S$searchtext",
6556 ($search_use_regexp ?
'--pickaxe-regex' : ());
6559 while (my $line = <$fd>) {
6563 my %set = parse_difftree_raw_line
($line);
6564 if (defined $set{'commit'}) {
6565 # finish previous commit
6568 "<td class=\"link\">" .
6569 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$co{'id'})}, "commit") .
6571 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$co{'tree'}, hash_base
=>$co{'id'})}, "tree");
6577 print "<tr class=\"dark\">\n";
6579 print "<tr class=\"light\">\n";
6582 %co = parse_commit
($set{'commit'});
6583 my $author = chop_and_escape_str
($co{'author_name'}, 15, 5);
6584 print "<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n" .
6585 "<td><i>$author</i></td>\n" .
6587 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$co{'id'}),
6588 -class => "list subject"},
6589 chop_and_escape_str
($co{'title'}, 50) . "<br/>");
6590 } elsif (defined $set{'to_id'}) {
6591 next if ($set{'to_id'} =~ m/^0{40}$/);
6593 print $cgi->a({-href
=> href
(action
=>"blob", hash_base
=>$co{'id'},
6594 hash
=>$set{'to_id'}, file_name
=>$set{'to_file'}),
6596 "<span class=\"match\">" . esc_path
($set{'file'}) . "</span>") .
6602 # finish last commit (warning: repetition!)
6605 "<td class=\"link\">" .
6606 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$co{'id'})}, "commit") .
6608 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$co{'tree'}, hash_base
=>$co{'id'})}, "tree");
6616 if ($searchtype eq 'grep') {
6617 git_print_page_nav
('','', $hash,$co{'tree'},$hash);
6618 git_print_header_div
('commit', esc_html
($co{'title'}), $hash);
6620 print "<table class=\"grep_search\">\n";
6624 open my $fd, "-|", git_cmd
(), 'grep', '-n',
6625 $search_use_regexp ?
('-E', '-i') : '-F',
6626 $searchtext, $co{'tree'};
6628 while (my $line = <$fd>) {
6630 my ($file, $lno, $ltext, $binary);
6631 last if ($matches++ > 1000);
6632 if ($line =~ /^Binary file (.+) matches$/) {
6636 (undef, $file, $lno, $ltext) = split(/:/, $line, 4);
6638 if ($file ne $lastfile) {
6639 $lastfile and print "</td></tr>\n";
6641 print "<tr class=\"dark\">\n";
6643 print "<tr class=\"light\">\n";
6645 print "<td class=\"list\">".
6646 $cgi->a({-href
=> href
(action
=>"blob", hash
=>$co{'hash'},
6647 file_name
=>"$file"),
6648 -class => "list"}, esc_path
($file));
6649 print "</td><td>\n";
6653 print "<div class=\"binary\">Binary file</div>\n";
6655 $ltext = untabify
($ltext);
6656 if ($ltext =~ m/^(.*)($search_regexp)(.*)$/i) {
6657 $ltext = esc_html
($1, -nbsp
=>1);
6658 $ltext .= '<span class="match">';
6659 $ltext .= esc_html
($2, -nbsp
=>1);
6660 $ltext .= '</span>';
6661 $ltext .= esc_html
($3, -nbsp
=>1);
6663 $ltext = esc_html
($ltext, -nbsp
=>1);
6665 print "<div class=\"pre\">" .
6666 $cgi->a({-href
=> href
(action
=>"blob", hash
=>$co{'hash'},
6667 file_name
=>"$file").'#l'.$lno,
6668 -class => "linenr"}, sprintf('%4i', $lno))
6669 . ' ' . $ltext . "</div>\n";
6673 print "</td></tr>\n";
6674 if ($matches > 1000) {
6675 print "<div class=\"diff nodifferences\">Too many matches, listing trimmed</div>\n";
6678 print "<div class=\"diff nodifferences\">No matches found</div>\n";
6687 sub git_search_help
{
6689 git_print_page_nav
('','', $hash,$hash,$hash);
6691 <p><strong>Pattern</strong> is by default a normal string that is matched precisely (but without
6692 regard to case, except in the case of pickaxe). However, when you check the <em>re</em> checkbox,
6693 the pattern entered is recognized as the POSIX extended
6694 <a href="http://en.wikipedia.org/wiki/Regular_expression">regular expression</a> (also case
6697 <dt><b>commit</b></dt>
6698 <dd>The commit messages and authorship information will be scanned for the given pattern.</dd>
6700 my $have_grep = gitweb_check_feature
('grep');
6703 <dt><b>grep</b></dt>
6704 <dd>All files in the currently selected tree (HEAD unless you are explicitly browsing
6705 a different one) are searched for the given pattern. On large trees, this search can take
6706 a while and put some strain on the server, so please use it with some consideration. Note that
6707 due to git-grep peculiarity, currently if regexp mode is turned off, the matches are
6708 case-sensitive.</dd>
6712 <dt><b>author</b></dt>
6713 <dd>Name and e-mail of the change author and date of birth of the patch will be scanned for the given pattern.</dd>
6714 <dt><b>committer</b></dt>
6715 <dd>Name and e-mail of the committer and date of commit will be scanned for the given pattern.</dd>
6717 my $have_pickaxe = gitweb_check_feature
('pickaxe');
6718 if ($have_pickaxe) {
6720 <dt><b>pickaxe</b></dt>
6721 <dd>All commits that caused the string to appear or disappear from any file (changes that
6722 added, removed or "modified" the string) will be listed. This search can take a while and
6723 takes a lot of strain on the server, so please use it wisely. Note that since you may be
6724 interested even in changes just changing the case as well, this search is case sensitive.</dd>
6732 git_log_generic
('shortlog', \
&git_shortlog_body
,
6733 $hash, $hash_parent);
6736 ## ......................................................................
6737 ## feeds (RSS, Atom; OPML)
6740 my $format = shift || 'atom';
6741 my $have_blame = gitweb_check_feature
('blame');
6743 # Atom: http://www.atomenabled.org/developers/syndication/
6744 # RSS: http://www.notestips.com/80256B3A007F2692/1/NAMO5P9UPQ
6745 if ($format ne 'rss' && $format ne 'atom') {
6746 die_error
(400, "Unknown web feed format");
6749 # log/feed of current (HEAD) branch, log of given branch, history of file/directory
6750 my $head = $hash || 'HEAD';
6751 my @commitlist = parse_commits
($head, 150, 0, $file_name);
6755 my $content_type = "application/$format+xml";
6756 if (defined $cgi->http('HTTP_ACCEPT') &&
6757 $cgi->Accept('text/xml') > $cgi->Accept($content_type)) {
6758 # browser (feed reader) prefers text/xml
6759 $content_type = 'text/xml';
6761 if (defined($commitlist[0])) {
6762 %latest_commit = %{$commitlist[0]};
6763 my $latest_epoch = $latest_commit{'committer_epoch'};
6764 %latest_date = parse_date
($latest_epoch);
6765 my $if_modified = $cgi->http('IF_MODIFIED_SINCE');
6766 if (defined $if_modified) {
6768 if (eval { require HTTP
::Date
; 1; }) {
6769 $since = HTTP
::Date
::str2time
($if_modified);
6770 } elsif (eval { require Time
::ParseDate
; 1; }) {
6771 $since = Time
::ParseDate
::parsedate
($if_modified, GMT
=> 1);
6773 if (defined $since && $latest_epoch <= $since) {
6775 -type
=> $content_type,
6776 -charset
=> 'utf-8',
6777 -last_modified
=> $latest_date{'rfc2822'},
6778 -status
=> '304 Not Modified');
6783 -type
=> $content_type,
6784 -charset
=> 'utf-8',
6785 -last_modified
=> $latest_date{'rfc2822'});
6788 -type
=> $content_type,
6789 -charset
=> 'utf-8');
6792 # Optimization: skip generating the body if client asks only
6793 # for Last-Modified date.
6794 return if ($cgi->request_method() eq 'HEAD');
6797 my $title = "$site_name - $project/$action";
6798 my $feed_type = 'log';
6799 if (defined $hash) {
6800 $title .= " - '$hash'";
6801 $feed_type = 'branch log';
6802 if (defined $file_name) {
6803 $title .= " :: $file_name";
6804 $feed_type = 'history';
6806 } elsif (defined $file_name) {
6807 $title .= " - $file_name";
6808 $feed_type = 'history';
6810 $title .= " $feed_type";
6811 my $descr = git_get_project_description
($project);
6812 if (defined $descr) {
6813 $descr = esc_html
($descr);
6815 $descr = "$project " .
6816 ($format eq 'rss' ?
'RSS' : 'Atom') .
6819 my $owner = git_get_project_owner
($project);
6820 $owner = esc_html
($owner);
6824 if (defined $file_name) {
6825 $alt_url = href
(-full
=>1, action
=>"history", hash
=>$hash, file_name
=>$file_name);
6826 } elsif (defined $hash) {
6827 $alt_url = href
(-full
=>1, action
=>"log", hash
=>$hash);
6829 $alt_url = href
(-full
=>1, action
=>"summary");
6831 print qq!<?xml version
="1.0" encoding
="utf-8"?
>\n!;
6832 if ($format eq 'rss') {
6834 <rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/">
6837 print "<title>$title</title>\n" .
6838 "<link>$alt_url</link>\n" .
6839 "<description>$descr</description>\n" .
6840 "<language>en</language>\n" .
6841 # project owner is responsible for 'editorial' content
6842 "<managingEditor>$owner</managingEditor>\n";
6843 if (defined $logo || defined $favicon) {
6844 # prefer the logo to the favicon, since RSS
6845 # doesn't allow both
6846 my $img = esc_url
($logo || $favicon);
6848 "<url>$img</url>\n" .
6849 "<title>$title</title>\n" .
6850 "<link>$alt_url</link>\n" .
6854 print "<pubDate>$latest_date{'rfc2822'}</pubDate>\n";
6855 print "<lastBuildDate>$latest_date{'rfc2822'}</lastBuildDate>\n";
6857 print "<generator>gitweb v.$version/$git_version</generator>\n";
6858 } elsif ($format eq 'atom') {
6860 <feed xmlns="http://www.w3.org/2005/Atom">
6862 print "<title>$title</title>\n" .
6863 "<subtitle>$descr</subtitle>\n" .
6864 '<link rel="alternate" type="text/html" href="' .
6865 $alt_url . '" />' . "\n" .
6866 '<link rel="self" type="' . $content_type . '" href="' .
6867 $cgi->self_url() . '" />' . "\n" .
6868 "<id>" . href
(-full
=>1) . "</id>\n" .
6869 # use project owner for feed author
6870 "<author><name>$owner</name></author>\n";
6871 if (defined $favicon) {
6872 print "<icon>" . esc_url
($favicon) . "</icon>\n";
6874 if (defined $logo_url) {
6875 # not twice as wide as tall: 72 x 27 pixels
6876 print "<logo>" . esc_url
($logo) . "</logo>\n";
6878 if (! %latest_date) {
6879 # dummy date to keep the feed valid until commits trickle in:
6880 print "<updated>1970-01-01T00:00:00Z</updated>\n";
6882 print "<updated>$latest_date{'iso-8601'}</updated>\n";
6884 print "<generator version='$version/$git_version'>gitweb</generator>\n";
6888 for (my $i = 0; $i <= $#commitlist; $i++) {
6889 my %co = %{$commitlist[$i]};
6890 my $commit = $co{'id'};
6891 # we read 150, we always show 30 and the ones more recent than 48 hours
6892 if (($i >= 20) && ((time - $co{'author_epoch'}) > 48*60*60)) {
6895 my %cd = parse_date
($co{'author_epoch'});
6897 # get list of changed files
6898 open my $fd, "-|", git_cmd
(), "diff-tree", '-r', @diff_opts,
6899 $co{'parent'} || "--root",
6900 $co{'id'}, "--", (defined $file_name ?
$file_name : ())
6902 my @difftree = map { chomp; $_ } <$fd>;
6906 # print element (entry, item)
6907 my $co_url = href
(-full
=>1, action
=>"commitdiff", hash
=>$commit);
6908 if ($format eq 'rss') {
6910 "<title>" . esc_html
($co{'title'}) . "</title>\n" .
6911 "<author>" . esc_html
($co{'author'}) . "</author>\n" .
6912 "<pubDate>$cd{'rfc2822'}</pubDate>\n" .
6913 "<guid isPermaLink=\"true\">$co_url</guid>\n" .
6914 "<link>$co_url</link>\n" .
6915 "<description>" . esc_html
($co{'title'}) . "</description>\n" .
6916 "<content:encoded>" .
6918 } elsif ($format eq 'atom') {
6920 "<title type=\"html\">" . esc_html
($co{'title'}) . "</title>\n" .
6921 "<updated>$cd{'iso-8601'}</updated>\n" .
6923 " <name>" . esc_html
($co{'author_name'}) . "</name>\n";
6924 if ($co{'author_email'}) {
6925 print " <email>" . esc_html
($co{'author_email'}) . "</email>\n";
6927 print "</author>\n" .
6928 # use committer for contributor
6930 " <name>" . esc_html
($co{'committer_name'}) . "</name>\n";
6931 if ($co{'committer_email'}) {
6932 print " <email>" . esc_html
($co{'committer_email'}) . "</email>\n";
6934 print "</contributor>\n" .
6935 "<published>$cd{'iso-8601'}</published>\n" .
6936 "<link rel=\"alternate\" type=\"text/html\" href=\"$co_url\" />\n" .
6937 "<id>$co_url</id>\n" .
6938 "<content type=\"xhtml\" xml:base=\"" . esc_url
($my_url) . "\">\n" .
6939 "<div xmlns=\"http://www.w3.org/1999/xhtml\">\n";
6941 my $comment = $co{'comment'};
6943 foreach my $line (@
$comment) {
6944 $line = esc_html
($line);
6947 print "</pre><ul>\n";
6948 foreach my $difftree_line (@difftree) {
6949 my %difftree = parse_difftree_raw_line
($difftree_line);
6950 next if !$difftree{'from_id'};
6952 my $file = $difftree{'file'} || $difftree{'to_file'};
6956 $cgi->a({-href
=> href
(-full
=>1, action
=>"blobdiff",
6957 hash
=>$difftree{'to_id'}, hash_parent
=>$difftree{'from_id'},
6958 hash_base
=>$co{'id'}, hash_parent_base
=>$co{'parent'},
6959 file_name
=>$file, file_parent
=>$difftree{'from_file'}),
6960 -title
=> "diff"}, 'D');
6962 print $cgi->a({-href
=> href
(-full
=>1, action
=>"blame",
6963 file_name
=>$file, hash_base
=>$commit),
6964 -title
=> "blame"}, 'B');
6966 # if this is not a feed of a file history
6967 if (!defined $file_name || $file_name ne $file) {
6968 print $cgi->a({-href
=> href
(-full
=>1, action
=>"history",
6969 file_name
=>$file, hash
=>$commit),
6970 -title
=> "history"}, 'H');
6972 $file = esc_path
($file);
6976 if ($format eq 'rss') {
6977 print "</ul>]]>\n" .
6978 "</content:encoded>\n" .
6980 } elsif ($format eq 'atom') {
6981 print "</ul>\n</div>\n" .
6988 if ($format eq 'rss') {
6989 print "</channel>\n</rss>\n";
6990 } elsif ($format eq 'atom') {
7004 my @list = git_get_projects_list
();
7007 -type
=> 'text/xml',
7008 -charset
=> 'utf-8',
7009 -content_disposition
=> 'inline; filename="opml.xml"');
7012 <?xml version="1.0" encoding="utf-8"?>
7013 <opml version="1.0">
7015 <title>$site_name OPML Export</title>
7018 <outline text="git RSS feeds">
7021 foreach my $pr (@list) {
7023 my $head = git_get_head_hash
($proj{'path'});
7024 if (!defined $head) {
7027 $git_dir = "$projectroot/$proj{'path'}";
7028 my %co = parse_commit
($head);
7033 my $path = esc_html
(chop_str
($proj{'path'}, 25, 5));
7034 my $rss = href
('project' => $proj{'path'}, 'action' => 'rss', -full
=> 1);
7035 my $html = href
('project' => $proj{'path'}, 'action' => 'summary', -full
=> 1);
7036 print "<outline type=\"rss\" text=\"$path\" title=\"$path\" xmlUrl=\"$rss\" htmlUrl=\"$html\"/>\n";