3 # gitweb - simple web interface to track changes in git repositories
5 # (C) 2005-2006, Kay Sievers <kay.sievers@vrfy.org>
6 # (C) 2005, Christian Gierke
8 # This program is licensed under the GPLv2
12 use CGI
qw(:standard :escapeHTML -nosticky);
13 use CGI
::Util
qw(unescape);
14 use CGI
::Carp
qw(fatalsToBrowser);
18 use File
::Basename
qw(basename);
19 binmode STDOUT
, ':utf8';
22 our $version = "++GIT_VERSION++";
23 our $my_url = $cgi->url();
24 our $my_uri = $cgi->url(-absolute
=> 1);
26 # core git executable to use
27 # this can just be "git" if your webserver has a sensible PATH
28 our $GIT = "++GIT_BINDIR++/git";
30 # absolute fs-path which will be prepended to the project path
31 #our $projectroot = "/pub/scm";
32 our $projectroot = "++GITWEB_PROJECTROOT++";
34 # target of the home link on top of all pages
35 our $home_link = $my_uri || "/";
37 # string of the home link on top of all pages
38 our $home_link_str = "++GITWEB_HOME_LINK_STR++";
40 # name of your site or organization to appear in page titles
41 # replace this with something more descriptive for clearer bookmarks
42 our $site_name = "++GITWEB_SITENAME++"
43 || ($ENV{'SERVER_NAME'} || "Untitled") . " Git";
45 # filename of html text to include at top of each page
46 our $site_header = "++GITWEB_SITE_HEADER++";
47 # html text to include at home page
48 our $home_text = "++GITWEB_HOMETEXT++";
49 # filename of html text to include at bottom of each page
50 our $site_footer = "++GITWEB_SITE_FOOTER++";
53 our @stylesheets = ("++GITWEB_CSS++");
55 # default is not to define style sheet, but it can be overwritten later
58 # URI of GIT logo (72x27 size)
59 our $logo = "++GITWEB_LOGO++";
60 # URI of GIT favicon, assumed to be image/png type
61 our $favicon = "++GITWEB_FAVICON++";
63 # URI and label (title) of GIT logo link
64 #our $logo_url = "http://www.kernel.org/pub/software/scm/git/docs/";
65 #our $logo_label = "git documentation";
66 our $logo_url = "http://git.or.cz/";
67 our $logo_label = "git homepage";
69 # source of projects list
70 our $projects_list = "++GITWEB_LIST++";
72 # show repository only if this file exists
73 # (only effective if this variable evaluates to true)
74 our $export_ok = "++GITWEB_EXPORT_OK++";
76 # only allow viewing of repositories also shown on the overview page
77 our $strict_export = "++GITWEB_STRICT_EXPORT++";
79 # list of git base URLs used for URL to where fetch project from,
80 # i.e. full URL is "$git_base_url/$project"
81 our @git_base_url_list = ("++GITWEB_BASE_URL++");
83 # default blob_plain mimetype and default charset for text/plain blob
84 our $default_blob_plain_mimetype = 'text/plain';
85 our $default_text_plain_charset = undef;
87 # file to use for guessing MIME types before trying /etc/mime.types
88 # (relative to the current git repository)
89 our $mimetypes_file = undef;
91 # You define site-wide feature defaults here; override them with
92 # $GITWEB_CONFIG as necessary.
95 # 'sub' => feature-sub (subroutine),
96 # 'override' => allow-override (boolean),
97 # 'default' => [ default options...] (array reference)}
99 # if feature is overridable (it means that allow-override has true value,
100 # then feature-sub will be called with default options as parameters;
101 # return value of feature-sub indicates if to enable specified feature
103 # use gitweb_check_feature(<feature>) to check if <feature> is enabled
105 # Enable the 'blame' blob view, showing the last commit that modified
106 # each line in the file. This can be very CPU-intensive.
108 # To enable system wide have in $GITWEB_CONFIG
109 # $feature{'blame'}{'default'} = [1];
110 # To have project specific config enable override in $GITWEB_CONFIG
111 # $feature{'blame'}{'override'} = 1;
112 # and in project config gitweb.blame = 0|1;
114 'sub' => \
&feature_blame
,
118 # Enable the 'snapshot' link, providing a compressed tarball of any
119 # tree. This can potentially generate high traffic if you have large
122 # To disable system wide have in $GITWEB_CONFIG
123 # $feature{'snapshot'}{'default'} = [undef];
124 # To have project specific config enable override in $GITWEB_CONFIG
125 # $feature{'blame'}{'override'} = 1;
126 # and in project config gitweb.snapshot = none|gzip|bzip2;
128 'sub' => \
&feature_snapshot
,
130 # => [content-encoding, suffix, program]
131 'default' => ['x-gzip', 'gz', 'gzip']},
133 # Enable the pickaxe search, which will list the commits that modified
134 # a given string in a file. This can be practical and quite faster
135 # alternative to 'blame', but still potentially CPU-intensive.
137 # To enable system wide have in $GITWEB_CONFIG
138 # $feature{'pickaxe'}{'default'} = [1];
139 # To have project specific config enable override in $GITWEB_CONFIG
140 # $feature{'pickaxe'}{'override'} = 1;
141 # and in project config gitweb.pickaxe = 0|1;
143 'sub' => \
&feature_pickaxe
,
147 # Make gitweb use an alternative format of the URLs which can be
148 # more readable and natural-looking: project name is embedded
149 # directly in the path and the query string contains other
150 # auxiliary information. All gitweb installations recognize
151 # URL in either format; this configures in which formats gitweb
154 # To enable system wide have in $GITWEB_CONFIG
155 # $feature{'pathinfo'}{'default'} = [1];
156 # Project specific override is not supported.
158 # Note that you will need to change the default location of CSS,
159 # favicon, logo and possibly other files to an absolute URL. Also,
160 # if gitweb.cgi serves as your indexfile, you will need to force
161 # $my_uri to contain the script name in your $GITWEB_CONFIG.
167 sub gitweb_check_feature
{
169 return unless exists $feature{$name};
170 my ($sub, $override, @defaults) = (
171 $feature{$name}{'sub'},
172 $feature{$name}{'override'},
173 @{$feature{$name}{'default'}});
174 if (!$override) { return @defaults; }
176 warn "feature $name is not overrideable";
179 return $sub->(@defaults);
183 my ($val) = git_get_project_config
('blame', '--bool');
185 if ($val eq 'true') {
187 } elsif ($val eq 'false') {
194 sub feature_snapshot
{
195 my ($ctype, $suffix, $command) = @_;
197 my ($val) = git_get_project_config
('snapshot');
199 if ($val eq 'gzip') {
200 return ('x-gzip', 'gz', 'gzip');
201 } elsif ($val eq 'bzip2') {
202 return ('x-bzip2', 'bz2', 'bzip2');
203 } elsif ($val eq 'none') {
207 return ($ctype, $suffix, $command);
210 sub gitweb_have_snapshot
{
211 my ($ctype, $suffix, $command) = gitweb_check_feature
('snapshot');
212 my $have_snapshot = (defined $ctype && defined $suffix);
214 return $have_snapshot;
217 sub feature_pickaxe
{
218 my ($val) = git_get_project_config
('pickaxe', '--bool');
220 if ($val eq 'true') {
222 } elsif ($val eq 'false') {
229 # checking HEAD file with -e is fragile if the repository was
230 # initialized long time ago (i.e. symlink HEAD) and was pack-ref'ed
232 sub check_head_link
{
234 my $headfile = "$dir/HEAD";
235 return ((-e
$headfile) ||
236 (-l
$headfile && readlink($headfile) =~ /^refs\/heads\
//));
239 sub check_export_ok
{
241 return (check_head_link
($dir) &&
242 (!$export_ok || -e
"$dir/$export_ok"));
245 # rename detection options for git-diff and git-diff-tree
246 # - default is '-M', with the cost proportional to
247 # (number of removed files) * (number of new files).
248 # - more costly is '-C' (or '-C', '-M'), with the cost proportional to
249 # (number of changed files + number of removed files) * (number of new files)
250 # - even more costly is '-C', '--find-copies-harder' with cost
251 # (number of files in the original tree) * (number of new files)
252 # - one might want to include '-B' option, e.g. '-B', '-M'
253 our @diff_opts = ('-M'); # taken from git_commit
255 our $GITWEB_CONFIG = $ENV{'GITWEB_CONFIG'} || "++GITWEB_CONFIG++";
256 do $GITWEB_CONFIG if -e
$GITWEB_CONFIG;
258 # version of the core git binary
259 our $git_version = qx($GIT --version) =~ m/git version (.*)$/ ? $1 : "unknown";
261 $projects_list ||= $projectroot;
263 # ======================================================================
264 # input validation and dispatch
265 our $action = $cgi->param('a');
266 if (defined $action) {
267 if ($action =~ m/[^0-9a-zA-Z\.\-_]/) {
268 die_error
(undef, "Invalid action parameter");
272 # parameters which are pathnames
273 our $project = $cgi->param('p');
274 if (defined $project) {
275 if (!validate_pathname
($project) ||
276 !(-d
"$projectroot/$project") ||
277 !check_head_link
("$projectroot/$project") ||
278 ($export_ok && !(-e
"$projectroot/$project/$export_ok")) ||
279 ($strict_export && !project_in_list
($project))) {
281 die_error
(undef, "No such project");
285 our $file_name = $cgi->param('f');
286 if (defined $file_name) {
287 if (!validate_pathname
($file_name)) {
288 die_error
(undef, "Invalid file parameter");
292 our $file_parent = $cgi->param('fp');
293 if (defined $file_parent) {
294 if (!validate_pathname
($file_parent)) {
295 die_error
(undef, "Invalid file parent parameter");
299 # parameters which are refnames
300 our $hash = $cgi->param('h');
302 if (!validate_refname
($hash)) {
303 die_error
(undef, "Invalid hash parameter");
307 our $hash_parent = $cgi->param('hp');
308 if (defined $hash_parent) {
309 if (!validate_refname
($hash_parent)) {
310 die_error
(undef, "Invalid hash parent parameter");
314 our $hash_base = $cgi->param('hb');
315 if (defined $hash_base) {
316 if (!validate_refname
($hash_base)) {
317 die_error
(undef, "Invalid hash base parameter");
321 our $hash_parent_base = $cgi->param('hpb');
322 if (defined $hash_parent_base) {
323 if (!validate_refname
($hash_parent_base)) {
324 die_error
(undef, "Invalid hash parent base parameter");
329 our $page = $cgi->param('pg');
331 if ($page =~ m/[^0-9]/) {
332 die_error
(undef, "Invalid page parameter");
336 our $searchtext = $cgi->param('s');
337 if (defined $searchtext) {
338 if ($searchtext =~ m/[^a-zA-Z0-9_\.\/\
-\
+\
:\
@ ]/) {
339 die_error
(undef, "Invalid search parameter");
341 $searchtext = quotemeta $searchtext;
344 our $searchtype = $cgi->param('st');
345 if (defined $searchtype) {
346 if ($searchtype =~ m/[^a-z]/) {
347 die_error
(undef, "Invalid searchtype parameter");
351 # now read PATH_INFO and use it as alternative to parameters
352 sub evaluate_path_info
{
353 return if defined $project;
354 my $path_info = $ENV{"PATH_INFO"};
355 return if !$path_info;
356 $path_info =~ s
,^/+,,;
357 return if !$path_info;
358 # find which part of PATH_INFO is project
359 $project = $path_info;
361 while ($project && !check_head_link
("$projectroot/$project")) {
362 $project =~ s
,/*[^/]*$,,;
365 $project = validate_pathname
($project);
367 ($export_ok && !-e
"$projectroot/$project/$export_ok") ||
368 ($strict_export && !project_in_list
($project))) {
372 # do not change any parameters if an action is given using the query string
374 $path_info =~ s
,^$project/*,,;
375 my ($refname, $pathname) = split(/:/, $path_info, 2);
376 if (defined $pathname) {
377 # we got "project.git/branch:filename" or "project.git/branch:dir/"
378 # we could use git_get_type(branch:pathname), but it needs $git_dir
379 $pathname =~ s
,^/+,,;
380 if (!$pathname || substr($pathname, -1) eq "/") {
384 $action ||= "blob_plain";
386 $hash_base ||= validate_refname
($refname);
387 $file_name ||= validate_pathname
($pathname);
388 } elsif (defined $refname) {
389 # we got "project.git/branch"
390 $action ||= "shortlog";
391 $hash ||= validate_refname
($refname);
394 evaluate_path_info
();
396 # path to the current git repository
398 $git_dir = "$projectroot/$project" if $project;
402 "blame" => \
&git_blame2
,
403 "blobdiff" => \
&git_blobdiff
,
404 "blobdiff_plain" => \
&git_blobdiff_plain
,
405 "blob" => \
&git_blob
,
406 "blob_plain" => \
&git_blob_plain
,
407 "commitdiff" => \
&git_commitdiff
,
408 "commitdiff_plain" => \
&git_commitdiff_plain
,
409 "commit" => \
&git_commit
,
410 "heads" => \
&git_heads
,
411 "history" => \
&git_history
,
414 "search" => \
&git_search
,
415 "search_help" => \
&git_search_help
,
416 "shortlog" => \
&git_shortlog
,
417 "summary" => \
&git_summary
,
419 "tags" => \
&git_tags
,
420 "tree" => \
&git_tree
,
421 "snapshot" => \
&git_snapshot
,
422 # those below don't need $project
423 "opml" => \
&git_opml
,
424 "project_list" => \
&git_project_list
,
425 "project_index" => \
&git_project_index
,
428 if (defined $project) {
429 $action ||= 'summary';
431 $action ||= 'project_list';
433 if (!defined($actions{$action})) {
434 die_error
(undef, "Unknown action");
436 if ($action !~ m/^(opml|project_list|project_index)$/ &&
438 die_error
(undef, "Project needed");
440 $actions{$action}->();
443 ## ======================================================================
450 # XXX: Warning: If you touch this, check the search form for updating,
461 hash_parent_base
=> "hpb",
467 my %mapping = @mapping;
469 $params{'project'} = $project unless exists $params{'project'};
471 my ($use_pathinfo) = gitweb_check_feature
('pathinfo');
473 # use PATH_INFO for project name
474 $href .= "/$params{'project'}" if defined $params{'project'};
475 delete $params{'project'};
477 # Summary just uses the project path URL
478 if (defined $params{'action'} && $params{'action'} eq 'summary') {
479 delete $params{'action'};
483 # now encode the parameters explicitly
485 for (my $i = 0; $i < @mapping; $i += 2) {
486 my ($name, $symbol) = ($mapping[$i], $mapping[$i+1]);
487 if (defined $params{$name}) {
488 push @result, $symbol . "=" . esc_param
($params{$name});
491 $href .= "?" . join(';', @result) if scalar @result;
497 ## ======================================================================
498 ## validation, quoting/unquoting and escaping
500 sub validate_pathname
{
501 my $input = shift || return undef;
503 # no '.' or '..' as elements of path, i.e. no '.' nor '..'
504 # at the beginning, at the end, and between slashes.
505 # also this catches doubled slashes
506 if ($input =~ m!(^|/)(|\.|\.\.)(/|$)!) {
510 if ($input =~ m!\0!) {
516 sub validate_refname
{
517 my $input = shift || return undef;
519 # textual hashes are O.K.
520 if ($input =~ m/^[0-9a-fA-F]{40}$/) {
523 # it must be correct pathname
524 $input = validate_pathname
($input)
526 # restrictions on ref name according to git-check-ref-format
527 if ($input =~ m!(/\.|\.\.|[\000-\040\177 ~^:?*\[]|/$)!) {
533 # very thin wrapper for decode("utf8", $str, Encode::FB_DEFAULT);
536 return decode
("utf8", $str, Encode
::FB_DEFAULT
);
539 # quote unsafe chars, but keep the slash, even when it's not
540 # correct, but quoted slashes look too horrible in bookmarks
543 $str =~ s/([^A-Za-z0-9\-_.~()\/:@])/sprintf
("%%%02X", ord($1))/eg
;
549 # quote unsafe chars in whole URL, so some charactrs cannot be quoted
552 $str =~ s/([^A-Za-z0-9\-_.~();\/;?:@&=])/sprintf
("%%%02X", ord($1))/eg
;
558 # replace invalid utf8 character with SUBSTITUTION sequence
561 $str = to_utf8
($str);
562 $str = escapeHTML
($str);
563 $str =~ s/\014/^L/g; # escape FORM FEED (FF) character (e.g. in COPYING file)
564 $str =~ s/\033/^[/g; # "escape" ESCAPE (\e) character (e.g. commit 20a3847d8a5032ce41f90dcc68abfb36e6fee9b1)
568 # git may return quoted and escaped filenames
571 if ($str =~ m/^"(.*)"$/) {
573 $str =~ s/\\([0-7]{1,3})/chr(oct($1))/eg;
578 # escape tabs (convert tabs to spaces)
582 while ((my $pos = index($line, "\t")) != -1) {
583 if (my $count = (8 - ($pos % 8))) {
584 my $spaces = ' ' x
$count;
585 $line =~ s/\t/$spaces/;
592 sub project_in_list
{
594 my @list = git_get_projects_list
();
595 return @list && scalar(grep { $_->{'path'} eq $project } @list);
598 ## ----------------------------------------------------------------------
599 ## HTML aware string manipulation
604 my $add_len = shift || 10;
606 # allow only $len chars, but don't cut a word if it would fit in $add_len
607 # if it doesn't fit, cut it if it's still longer than the dots we would add
608 $str =~ m/^(.{0,$len}[^ \/\
-_
:\
.@]{0,$add_len})(.*)/;
611 if (length($tail) > 4) {
613 $body =~ s/&[^;]*$//; # remove chopped character entities
618 ## ----------------------------------------------------------------------
619 ## functions returning short strings
621 # CSS class for given age value (in seconds)
625 if ($age < 60*60*2) {
627 } elsif ($age < 60*60*24*2) {
634 # convert age in seconds to "nn units ago" string
639 if ($age > 60*60*24*365*2) {
640 $age_str = (int $age/60/60/24/365);
641 $age_str .= " years ago";
642 } elsif ($age > 60*60*24*(365/12)*2) {
643 $age_str = int $age/60/60/24/(365/12);
644 $age_str .= " months ago";
645 } elsif ($age > 60*60*24*7*2) {
646 $age_str = int $age/60/60/24/7;
647 $age_str .= " weeks ago";
648 } elsif ($age > 60*60*24*2) {
649 $age_str = int $age/60/60/24;
650 $age_str .= " days ago";
651 } elsif ($age > 60*60*2) {
652 $age_str = int $age/60/60;
653 $age_str .= " hours ago";
654 } elsif ($age > 60*2) {
655 $age_str = int $age/60;
656 $age_str .= " min ago";
659 $age_str .= " sec ago";
661 $age_str .= " right now";
666 # convert file mode in octal to symbolic file mode string
668 my $mode = oct shift;
670 if (S_ISDIR
($mode & S_IFMT
)) {
672 } elsif (S_ISLNK
($mode)) {
674 } elsif (S_ISREG
($mode)) {
675 # git cares only about the executable bit
676 if ($mode & S_IXUSR
) {
686 # convert file mode in octal to file type string
690 if ($mode !~ m/^[0-7]+$/) {
696 if (S_ISDIR
($mode & S_IFMT
)) {
698 } elsif (S_ISLNK
($mode)) {
700 } elsif (S_ISREG
($mode)) {
707 ## ----------------------------------------------------------------------
708 ## functions returning short HTML fragments, or transforming HTML fragments
709 ## which don't beling to other sections
711 # format line of commit message or tag comment
712 sub format_log_line_html
{
715 $line = esc_html
($line);
716 $line =~ s/ / /g;
717 if ($line =~ m/([0-9a-fA-F]{40})/) {
719 if (git_get_type
($hash_text) eq "commit") {
721 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$hash_text),
722 -class => "text"}, $hash_text);
723 $line =~ s/$hash_text/$link/;
729 # format marker of refs pointing to given object
730 sub format_ref_marker
{
731 my ($refs, $id) = @_;
734 if (defined $refs->{$id}) {
735 foreach my $ref (@{$refs->{$id}}) {
736 my ($type, $name) = qw();
737 # e.g. tags/v2.6.11 or heads/next
738 if ($ref =~ m!^(.*?)s?/(.*)$!) {
746 $markers .= " <span class=\"$type\">" . esc_html
($name) . "</span>";
751 return ' <span class="refs">'. $markers . '</span>';
757 # format, perhaps shortened and with markers, title line
758 sub format_subject_html
{
759 my ($long, $short, $href, $extra) = @_;
760 $extra = '' unless defined($extra);
762 if (length($short) < length($long)) {
763 return $cgi->a({-href
=> $href, -class => "list subject",
764 -title
=> to_utf8
($long)},
765 esc_html
($short) . $extra);
767 return $cgi->a({-href
=> $href, -class => "list subject"},
768 esc_html
($long) . $extra);
772 sub format_diff_line
{
774 my $char = substr($line, 0, 1);
780 $diff_class = " add";
781 } elsif ($char eq "-") {
782 $diff_class = " rem";
783 } elsif ($char eq "@") {
784 $diff_class = " chunk_header";
785 } elsif ($char eq "\\") {
786 $diff_class = " incomplete";
788 $line = untabify
($line);
789 return "<div class=\"diff$diff_class\">" . esc_html
($line) . "</div>\n";
792 ## ----------------------------------------------------------------------
793 ## git utility subroutines, invoking git commands
795 # returns path to the core git executable and the --git-dir parameter as list
797 return $GIT, '--git-dir='.$git_dir;
800 # returns path to the core git executable and the --git-dir parameter as string
802 return join(' ', git_cmd
());
805 # get HEAD ref of given project as hash
806 sub git_get_head_hash
{
808 my $o_git_dir = $git_dir;
810 $git_dir = "$projectroot/$project";
811 if (open my $fd, "-|", git_cmd
(), "rev-parse", "--verify", "HEAD") {
814 if (defined $head && $head =~ /^([0-9a-fA-F]{40})$/) {
818 if (defined $o_git_dir) {
819 $git_dir = $o_git_dir;
824 # get type of given object
828 open my $fd, "-|", git_cmd
(), "cat-file", '-t', $hash or return;
835 sub git_get_project_config
{
836 my ($key, $type) = @_;
838 return unless ($key);
839 $key =~ s/^gitweb\.//;
840 return if ($key =~ m/\W/);
842 my @x = (git_cmd
(), 'repo-config');
843 if (defined $type) { push @x, $type; }
845 push @x, "gitweb.$key";
851 # get hash of given path at given ref
852 sub git_get_hash_by_path
{
854 my $path = shift || return undef;
859 open my $fd, "-|", git_cmd
(), "ls-tree", $base, "--", $path
860 or die_error
(undef, "Open git-ls-tree failed");
862 close $fd or return undef;
864 #'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'
865 $line =~ m/^([0-9]+) (.+) ([0-9a-fA-F]{40})\t(.+)$/;
866 if (defined $type && $type ne $2) {
873 ## ......................................................................
874 ## git utility functions, directly accessing git repository
876 sub git_get_project_description
{
879 open my $fd, "$projectroot/$path/description" or return undef;
886 sub git_get_project_url_list
{
889 open my $fd, "$projectroot/$path/cloneurl" or return;
890 my @git_project_url_list = map { chomp; $_ } <$fd>;
893 return wantarray ? @git_project_url_list : \
@git_project_url_list;
896 sub git_get_projects_list
{
899 if (-d
$projects_list) {
900 # search in directory
901 my $dir = $projects_list;
902 my $pfxlen = length("$dir");
905 follow_fast
=> 1, # follow symbolic links
906 dangling_symlinks
=> 0, # ignore dangling symlinks, silently
908 # skip project-list toplevel, if we get it.
909 return if (m!^[/.]$!);
910 # only directories can be git repositories
911 return unless (-d
$_);
913 my $subdir = substr($File::Find
::name
, $pfxlen + 1);
914 # we check related file in $projectroot
915 if (check_export_ok
("$projectroot/$subdir")) {
916 push @list, { path
=> $subdir };
917 $File::Find
::prune
= 1;
922 } elsif (-f
$projects_list) {
923 # read from file(url-encoded):
924 # 'git%2Fgit.git Linus+Torvalds'
925 # 'libs%2Fklibc%2Fklibc.git H.+Peter+Anvin'
926 # 'linux%2Fhotplug%2Fudev.git Greg+Kroah-Hartman'
927 open my ($fd), $projects_list or return;
928 while (my $line = <$fd>) {
930 my ($path, $owner) = split ' ', $line;
931 $path = unescape
($path);
932 $owner = unescape
($owner);
933 if (!defined $path) {
936 if (check_export_ok
("$projectroot/$path")) {
939 owner
=> to_utf8
($owner),
946 @list = sort {$a->{'path'} cmp $b->{'path'}} @list;
950 sub git_get_project_owner
{
954 return undef unless $project;
956 # read from file (url-encoded):
957 # 'git%2Fgit.git Linus+Torvalds'
958 # 'libs%2Fklibc%2Fklibc.git H.+Peter+Anvin'
959 # 'linux%2Fhotplug%2Fudev.git Greg+Kroah-Hartman'
960 if (-f
$projects_list) {
961 open (my $fd , $projects_list);
962 while (my $line = <$fd>) {
964 my ($pr, $ow) = split ' ', $line;
967 if ($pr eq $project) {
968 $owner = to_utf8
($ow);
974 if (!defined $owner) {
975 $owner = get_file_owner
("$projectroot/$project");
981 sub git_get_references
{
982 my $type = shift || "";
984 # 5dc01c595e6c6ec9ccda4f6f69c131c0dd945f8c refs/tags/v2.6.11
985 # c39ae07f393806ccf406ef966e9a15afc43cc36a refs/tags/v2.6.11^{}
986 open my $fd, "-|", $GIT, "peek-remote", "$projectroot/$project/"
989 while (my $line = <$fd>) {
991 if ($line =~ m/^([0-9a-fA-F]{40})\trefs\/($type\
/?[^\^]+)/) {
992 if (defined $refs{$1}) {
993 push @{$refs{$1}}, $2;
1003 sub git_get_rev_name_tags
{
1004 my $hash = shift || return undef;
1006 open my $fd, "-|", git_cmd
(), "name-rev", "--tags", $hash
1008 my $name_rev = <$fd>;
1011 if ($name_rev =~ m
|^$hash tags
/(.*)$|) {
1014 # catches also '$hash undefined' output
1019 ## ----------------------------------------------------------------------
1020 ## parse to hash functions
1024 my $tz = shift || "-0000";
1027 my @months = ("Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec");
1028 my @days = ("Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat");
1029 my ($sec, $min, $hour, $mday, $mon, $year, $wday, $yday) = gmtime($epoch);
1030 $date{'hour'} = $hour;
1031 $date{'minute'} = $min;
1032 $date{'mday'} = $mday;
1033 $date{'day'} = $days[$wday];
1034 $date{'month'} = $months[$mon];
1035 $date{'rfc2822'} = sprintf "%s, %d %s %4d %02d:%02d:%02d +0000",
1036 $days[$wday], $mday, $months[$mon], 1900+$year, $hour ,$min, $sec;
1037 $date{'mday-time'} = sprintf "%d %s %02d:%02d",
1038 $mday, $months[$mon], $hour ,$min;
1040 $tz =~ m/^([+\-][0-9][0-9])([0-9][0-9])$/;
1041 my $local = $epoch + ((int $1 + ($2/60)) * 3600);
1042 ($sec, $min, $hour, $mday, $mon, $year, $wday, $yday) = gmtime($local);
1043 $date{'hour_local'} = $hour;
1044 $date{'minute_local'} = $min;
1045 $date{'tz_local'} = $tz;
1046 $date{'iso-tz'} = sprintf ("%04d-%02d-%02d %02d:%02d:%02d %s",
1047 1900+$year, $mon+1, $mday,
1048 $hour, $min, $sec, $tz);
1057 open my $fd, "-|", git_cmd
(), "cat-file", "tag", $tag_id or return;
1058 $tag{'id'} = $tag_id;
1059 while (my $line = <$fd>) {
1061 if ($line =~ m/^object ([0-9a-fA-F]{40})$/) {
1062 $tag{'object'} = $1;
1063 } elsif ($line =~ m/^type (.+)$/) {
1065 } elsif ($line =~ m/^tag (.+)$/) {
1067 } elsif ($line =~ m/^tagger (.*) ([0-9]+) (.*)$/) {
1068 $tag{'author'} = $1;
1071 } elsif ($line =~ m/--BEGIN/) {
1072 push @comment, $line;
1074 } elsif ($line eq "") {
1078 push @comment, <$fd>;
1079 $tag{'comment'} = \
@comment;
1080 close $fd or return;
1081 if (!defined $tag{'name'}) {
1087 sub git_get_last_activity
{
1091 $git_dir = "$projectroot/$path";
1092 open($fd, "-|", git_cmd
(), 'for-each-ref',
1093 '--format=%(refname) %(committer)',
1094 '--sort=-committerdate',
1095 'refs/heads') or return;
1096 my $most_recent = <$fd>;
1097 close $fd or return;
1098 if ($most_recent =~ / (\d+) [-+][01]\d\d\d$/) {
1100 my $age = time - $timestamp;
1101 return ($age, age_string
($age));
1106 my $commit_id = shift;
1107 my $commit_text = shift;
1112 if (defined $commit_text) {
1113 @commit_lines = @$commit_text;
1116 open my $fd, "-|", git_cmd
(), "rev-list", "--header", "--parents", "--max-count=1", $commit_id
1118 @commit_lines = split '\n', <$fd>;
1119 close $fd or return;
1122 my $header = shift @commit_lines;
1123 if (!($header =~ m/^[0-9a-fA-F]{40}/)) {
1126 ($co{'id'}, my @parents) = split ' ', $header;
1127 $co{'parents'} = \
@parents;
1128 $co{'parent'} = $parents[0];
1129 while (my $line = shift @commit_lines) {
1130 last if $line eq "\n";
1131 if ($line =~ m/^tree ([0-9a-fA-F]{40})$/) {
1133 } elsif ($line =~ m/^author (.*) ([0-9]+) (.*)$/) {
1135 $co{'author_epoch'} = $2;
1136 $co{'author_tz'} = $3;
1137 if ($co{'author'} =~ m/^([^<]+) </) {
1138 $co{'author_name'} = $1;
1140 $co{'author_name'} = $co{'author'};
1142 } elsif ($line =~ m/^committer (.*) ([0-9]+) (.*)$/) {
1143 $co{'committer'} = $1;
1144 $co{'committer_epoch'} = $2;
1145 $co{'committer_tz'} = $3;
1146 $co{'committer_name'} = $co{'committer'};
1147 $co{'committer_name'} =~ s/ <.*//;
1150 if (!defined $co{'tree'}) {
1154 foreach my $title (@commit_lines) {
1157 $co{'title'} = chop_str
($title, 80, 5);
1158 # remove leading stuff of merges to make the interesting part visible
1159 if (length($title) > 50) {
1160 $title =~ s/^Automatic //;
1161 $title =~ s/^merge (of|with) /Merge ... /i;
1162 if (length($title) > 50) {
1163 $title =~ s/(http|rsync):\/\///;
1165 if (length($title) > 50) {
1166 $title =~ s/(master|www|rsync)\.//;
1168 if (length($title) > 50) {
1169 $title =~ s/kernel.org:?//;
1171 if (length($title) > 50) {
1172 $title =~ s/\/pub\/scm//;
1175 $co{'title_short'} = chop_str
($title, 50, 5);
1179 if ($co{'title'} eq "") {
1180 $co{'title'} = $co{'title_short'} = '(no commit message)';
1182 # remove added spaces
1183 foreach my $line (@commit_lines) {
1186 $co{'comment'} = \
@commit_lines;
1188 my $age = time - $co{'committer_epoch'};
1190 $co{'age_string'} = age_string
($age);
1191 my ($sec, $min, $hour, $mday, $mon, $year, $wday, $yday) = gmtime($co{'committer_epoch'});
1192 if ($age > 60*60*24*7*2) {
1193 $co{'age_string_date'} = sprintf "%4i-%02u-%02i", 1900 + $year, $mon+1, $mday;
1194 $co{'age_string_age'} = $co{'age_string'};
1196 $co{'age_string_date'} = $co{'age_string'};
1197 $co{'age_string_age'} = sprintf "%4i-%02u-%02i", 1900 + $year, $mon+1, $mday;
1202 # parse ref from ref_file, given by ref_id, with given type
1204 my $ref_file = shift;
1206 my $type = shift || git_get_type
($ref_id);
1209 $ref_item{'type'} = $type;
1210 $ref_item{'id'} = $ref_id;
1211 $ref_item{'epoch'} = 0;
1212 $ref_item{'age'} = "unknown";
1213 if ($type eq "tag") {
1214 my %tag = parse_tag
($ref_id);
1215 $ref_item{'comment'} = $tag{'comment'};
1216 if ($tag{'type'} eq "commit") {
1217 my %co = parse_commit
($tag{'object'});
1218 $ref_item{'epoch'} = $co{'committer_epoch'};
1219 $ref_item{'age'} = $co{'age_string'};
1220 } elsif (defined($tag{'epoch'})) {
1221 my $age = time - $tag{'epoch'};
1222 $ref_item{'epoch'} = $tag{'epoch'};
1223 $ref_item{'age'} = age_string
($age);
1225 $ref_item{'reftype'} = $tag{'type'};
1226 $ref_item{'name'} = $tag{'name'};
1227 $ref_item{'refid'} = $tag{'object'};
1228 } elsif ($type eq "commit"){
1229 my %co = parse_commit
($ref_id);
1230 $ref_item{'reftype'} = "commit";
1231 $ref_item{'name'} = $ref_file;
1232 $ref_item{'title'} = $co{'title'};
1233 $ref_item{'refid'} = $ref_id;
1234 $ref_item{'epoch'} = $co{'committer_epoch'};
1235 $ref_item{'age'} = $co{'age_string'};
1237 $ref_item{'reftype'} = $type;
1238 $ref_item{'name'} = $ref_file;
1239 $ref_item{'refid'} = $ref_id;
1245 # parse line of git-diff-tree "raw" output
1246 sub parse_difftree_raw_line
{
1250 # ':100644 100644 03b218260e99b78c6df0ed378e59ed9205ccc96d 3b93d5e7cc7f7dd4ebed13a5cc1a4ad976fc94d8 M ls-files.c'
1251 # ':100644 100644 7f9281985086971d3877aca27704f2aaf9c448ce bc190ebc71bbd923f2b728e505408f5e54bd073a M rev-tree.c'
1252 if ($line =~ m/^:([0-7]{6}) ([0-7]{6}) ([0-9a-fA-F]{40}) ([0-9a-fA-F]{40}) (.)([0-9]{0,3})\t(.*)$/) {
1253 $res{'from_mode'} = $1;
1254 $res{'to_mode'} = $2;
1255 $res{'from_id'} = $3;
1257 $res{'status'} = $5;
1258 $res{'similarity'} = $6;
1259 if ($res{'status'} eq 'R' || $res{'status'} eq 'C') { # renamed or copied
1260 ($res{'from_file'}, $res{'to_file'}) = map { unquote
($_) } split("\t", $7);
1262 $res{'file'} = unquote
($7);
1265 # 'c512b523472485aef4fff9e57b229d9d243c967f'
1266 elsif ($line =~ m/^([0-9a-fA-F]{40})$/) {
1267 $res{'commit'} = $1;
1270 return wantarray ? %res : \
%res;
1273 # parse line of git-ls-tree output
1274 sub parse_ls_tree_line
($;%) {
1279 #'100644 blob 0fa3f3a66fb6a137f6ec2c19351ed4d807070ffa panic.c'
1280 $line =~ m/^([0-9]+) (.+) ([0-9a-fA-F]{40})\t(.+)$/;
1288 $res{'name'} = unquote
($4);
1291 return wantarray ? %res : \
%res;
1294 ## ......................................................................
1295 ## parse to array of hashes functions
1297 sub git_get_refs_list
{
1298 my $type = shift || "";
1303 open my $fd, "-|", $GIT, "peek-remote", "$projectroot/$project/"
1305 while (my $line = <$fd>) {
1307 if ($line =~ m/^([0-9a-fA-F]{40})\trefs\/($type\
/?([^\^]+))(\^\{\})?$/) {
1308 if (defined $refs{$1}) {
1309 push @{$refs{$1}}, $2;
1314 if (! $4) { # unpeeled, direct reference
1315 push @refs, { hash
=> $1, name
=> $3 }; # without type
1316 } elsif ($3 eq $refs[-1]{'name'}) {
1317 # most likely a tag is followed by its peeled
1318 # (deref) one, and when that happens we know the
1319 # previous one was of type 'tag'.
1320 $refs[-1]{'type'} = "tag";
1326 foreach my $ref (@refs) {
1327 my $ref_file = $ref->{'name'};
1328 my $ref_id = $ref->{'hash'};
1330 my $type = $ref->{'type'} || git_get_type
($ref_id) || next;
1331 my %ref_item = parse_ref
($ref_file, $ref_id, $type);
1333 push @reflist, \
%ref_item;
1336 @reflist = sort {$b->{'epoch'} <=> $a->{'epoch'}} @reflist;
1337 return (\
@reflist, \
%refs);
1340 ## ----------------------------------------------------------------------
1341 ## filesystem-related functions
1343 sub get_file_owner
{
1346 my ($dev, $ino, $mode, $nlink, $st_uid, $st_gid, $rdev, $size) = stat($path);
1347 my ($name, $passwd, $uid, $gid, $quota, $comment, $gcos, $dir, $shell) = getpwuid($st_uid);
1348 if (!defined $gcos) {
1352 $owner =~ s/[,;].*$//;
1353 return to_utf8
($owner);
1356 ## ......................................................................
1357 ## mimetype related functions
1359 sub mimetype_guess_file
{
1360 my $filename = shift;
1361 my $mimemap = shift;
1362 -r
$mimemap or return undef;
1365 open(MIME
, $mimemap) or return undef;
1367 next if m/^#/; # skip comments
1368 my ($mime, $exts) = split(/\t+/);
1369 if (defined $exts) {
1370 my @exts = split(/\s+/, $exts);
1371 foreach my $ext (@exts) {
1372 $mimemap{$ext} = $mime;
1378 $filename =~ /\.([^.]*)$/;
1379 return $mimemap{$1};
1382 sub mimetype_guess
{
1383 my $filename = shift;
1385 $filename =~ /\./ or return undef;
1387 if ($mimetypes_file) {
1388 my $file = $mimetypes_file;
1389 if ($file !~ m!^/!) { # if it is relative path
1390 # it is relative to project
1391 $file = "$projectroot/$project/$file";
1393 $mime = mimetype_guess_file
($filename, $file);
1395 $mime ||= mimetype_guess_file
($filename, '/etc/mime.types');
1401 my $filename = shift;
1404 my $mime = mimetype_guess
($filename);
1405 $mime and return $mime;
1409 return $default_blob_plain_mimetype unless $fd;
1412 return 'text/plain' .
1413 ($default_text_plain_charset ? '; charset='.$default_text_plain_charset : '');
1414 } elsif (! $filename) {
1415 return 'application/octet-stream';
1416 } elsif ($filename =~ m/\.png$/i) {
1418 } elsif ($filename =~ m/\.gif$/i) {
1420 } elsif ($filename =~ m/\.jpe?g$/i) {
1421 return 'image/jpeg';
1423 return 'application/octet-stream';
1427 ## ======================================================================
1428 ## functions printing HTML: header, footer, error page
1430 sub git_header_html
{
1431 my $status = shift || "200 OK";
1432 my $expires = shift;
1434 my $title = "$site_name";
1435 if (defined $project) {
1436 $title .= " - $project";
1437 if (defined $action) {
1438 $title .= "/$action";
1439 if (defined $file_name) {
1440 $title .= " - " . esc_html
($file_name);
1441 if ($action eq "tree" && $file_name !~ m
|/$|) {
1448 # require explicit support from the UA if we are to send the page as
1449 # 'application/xhtml+xml', otherwise send it as plain old 'text/html'.
1450 # we have to do this because MSIE sometimes globs '*/*', pretending to
1451 # support xhtml+xml but choking when it gets what it asked for.
1452 if (defined $cgi->http('HTTP_ACCEPT') &&
1453 $cgi->http('HTTP_ACCEPT') =~ m/(,|;|\s|^)application\/xhtml\
+xml
(,|;|\s
|$)/ &&
1454 $cgi->Accept('application/xhtml+xml') != 0) {
1455 $content_type = 'application/xhtml+xml';
1457 $content_type = 'text/html';
1459 print $cgi->header(-type
=>$content_type, -charset
=> 'utf-8',
1460 -status
=> $status, -expires
=> $expires);
1462 <?xml version="1.0" encoding="utf-8"?>
1463 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
1464 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" lang="en-US">
1465 <!-- git web interface version $version, (C) 2005-2006, Kay Sievers <kay.sievers\@vrfy.org>, Christian Gierke -->
1466 <!-- git core binaries version $git_version -->
1468 <meta http-equiv="content-type" content="$content_type; charset=utf-8"/>
1469 <meta name="generator" content="gitweb/$version git/$git_version"/>
1470 <meta name="robots" content="index, nofollow"/>
1471 <title>$title</title>
1473 # print out each stylesheet that exist
1474 if (defined $stylesheet) {
1475 #provides backwards capability for those people who define style sheet in a config file
1476 print '<link rel="stylesheet" type="text/css" href="'.$stylesheet.'"/>'."\n";
1478 foreach my $stylesheet (@stylesheets) {
1479 next unless $stylesheet;
1480 print '<link rel="stylesheet" type="text/css" href="'.$stylesheet.'"/>'."\n";
1483 if (defined $project) {
1484 printf('<link rel="alternate" title="%s log" '.
1485 'href="%s" type="application/rss+xml"/>'."\n",
1486 esc_param
($project), href
(action
=>"rss"));
1488 printf('<link rel="alternate" title="%s projects list" '.
1489 'href="%s" type="text/plain; charset=utf-8"/>'."\n",
1490 $site_name, href
(project
=>undef, action
=>"project_index"));
1491 printf('<link rel="alternate" title="%s projects logs" '.
1492 'href="%s" type="text/x-opml"/>'."\n",
1493 $site_name, href
(project
=>undef, action
=>"opml"));
1495 if (defined $favicon) {
1496 print qq(<link rel="shortcut icon" href="$favicon" type="image/png"/>\n);
1502 if (-f
$site_header) {
1503 open (my $fd, $site_header);
1508 print "<div class=\"page_header\">\n" .
1509 $cgi->a({-href
=> esc_url
($logo_url),
1510 -title
=> $logo_label},
1511 qq(<img src="$logo" width="72" height="27" alt="git" class="logo"/>));
1512 print $cgi->a({-href
=> esc_url
($home_link)}, $home_link_str) . " / ";
1513 if (defined $project) {
1514 print $cgi->a({-href
=> href
(action
=>"summary")}, esc_html
($project));
1515 if (defined $action) {
1519 if (!defined $searchtext) {
1523 if (defined $hash_base) {
1524 $search_hash = $hash_base;
1525 } elsif (defined $hash) {
1526 $search_hash = $hash;
1528 $search_hash = "HEAD";
1530 $cgi->param("a", "search");
1531 $cgi->param("h", $search_hash);
1532 $cgi->param("p", $project);
1533 print $cgi->startform(-method => "get", -action
=> $my_uri) .
1534 "<div class=\"search\">\n" .
1535 $cgi->hidden(-name
=> "p") . "\n" .
1536 $cgi->hidden(-name
=> "a") . "\n" .
1537 $cgi->hidden(-name
=> "h") . "\n" .
1538 $cgi->popup_menu(-name
=> 'st', -default => 'commit',
1539 -values => ['commit', 'author', 'committer', 'pickaxe']) .
1540 $cgi->sup($cgi->a({-href
=> href
(action
=>"search_help")}, "?")) .
1542 $cgi->textfield(-name
=> "s", -value
=> $searchtext) . "\n" .
1544 $cgi->end_form() . "\n";
1549 sub git_footer_html
{
1550 print "<div class=\"page_footer\">\n";
1551 if (defined $project) {
1552 my $descr = git_get_project_description
($project);
1553 if (defined $descr) {
1554 print "<div class=\"page_footer_text\">" . esc_html
($descr) . "</div>\n";
1556 print $cgi->a({-href
=> href
(action
=>"rss"),
1557 -class => "rss_logo"}, "RSS") . "\n";
1559 print $cgi->a({-href
=> href
(project
=>undef, action
=>"opml"),
1560 -class => "rss_logo"}, "OPML") . " ";
1561 print $cgi->a({-href
=> href
(project
=>undef, action
=>"project_index"),
1562 -class => "rss_logo"}, "TXT") . "\n";
1566 if (-f
$site_footer) {
1567 open (my $fd, $site_footer);
1577 my $status = shift || "403 Forbidden";
1578 my $error = shift || "Malformed query, file missing or permission denied";
1580 git_header_html
($status);
1582 <div class="page_body">
1592 ## ----------------------------------------------------------------------
1593 ## functions printing or outputting HTML: navigation
1595 sub git_print_page_nav
{
1596 my ($current, $suppress, $head, $treehead, $treebase, $extra) = @_;
1597 $extra = '' if !defined $extra; # pager or formats
1599 my @navs = qw(summary shortlog log commit commitdiff tree);
1601 @navs = grep { $_ ne $suppress } @navs;
1604 my %arg = map { $_ => {action
=>$_} } @navs;
1605 if (defined $head) {
1606 for (qw(commit commitdiff)) {
1607 $arg{$_}{hash
} = $head;
1609 if ($current =~ m/^(tree | log | shortlog | commit | commitdiff | search)$/x) {
1610 for (qw(shortlog log)) {
1611 $arg{$_}{hash
} = $head;
1615 $arg{tree
}{hash
} = $treehead if defined $treehead;
1616 $arg{tree
}{hash_base
} = $treebase if defined $treebase;
1618 print "<div class=\"page_nav\">\n" .
1620 map { $_ eq $current ?
1621 $_ : $cgi->a({-href
=> href
(%{$arg{$_}})}, "$_")
1623 print "<br/>\n$extra<br/>\n" .
1627 sub format_paging_nav
{
1628 my ($action, $hash, $head, $page, $nrevs) = @_;
1632 if ($hash ne $head || $page) {
1633 $paging_nav .= $cgi->a({-href
=> href
(action
=>$action)}, "HEAD");
1635 $paging_nav .= "HEAD";
1639 $paging_nav .= " ⋅ " .
1640 $cgi->a({-href
=> href
(action
=>$action, hash
=>$hash, page
=>$page-1),
1641 -accesskey
=> "p", -title
=> "Alt-p"}, "prev");
1643 $paging_nav .= " ⋅ prev";
1646 if ($nrevs >= (100 * ($page+1)-1)) {
1647 $paging_nav .= " ⋅ " .
1648 $cgi->a({-href
=> href
(action
=>$action, hash
=>$hash, page
=>$page+1),
1649 -accesskey
=> "n", -title
=> "Alt-n"}, "next");
1651 $paging_nav .= " ⋅ next";
1657 ## ......................................................................
1658 ## functions printing or outputting HTML: div
1660 sub git_print_header_div
{
1661 my ($action, $title, $hash, $hash_base) = @_;
1664 $args{action
} = $action;
1665 $args{hash
} = $hash if $hash;
1666 $args{hash_base
} = $hash_base if $hash_base;
1668 print "<div class=\"header\">\n" .
1669 $cgi->a({-href
=> href
(%args), -class => "title"},
1670 $title ? $title : $action) .
1674 #sub git_print_authorship (\%) {
1675 sub git_print_authorship
{
1678 my %ad = parse_date
($co->{'author_epoch'}, $co->{'author_tz'});
1679 print "<div class=\"author_date\">" .
1680 esc_html
($co->{'author_name'}) .
1682 if ($ad{'hour_local'} < 6) {
1683 printf(" (<span class=\"atnight\">%02d:%02d</span> %s)",
1684 $ad{'hour_local'}, $ad{'minute_local'}, $ad{'tz_local'});
1686 printf(" (%02d:%02d %s)",
1687 $ad{'hour_local'}, $ad{'minute_local'}, $ad{'tz_local'});
1692 sub git_print_page_path
{
1698 print "<div class=\"page_path\">";
1699 print $cgi->a({-href
=> href
(action
=>"tree", hash_base
=>$hb),
1700 -title
=> 'tree root'}, "[$project]");
1702 if (defined $name) {
1703 my @dirname = split '/', $name;
1704 my $basename = pop @dirname;
1707 foreach my $dir (@dirname) {
1708 $fullname .= ($fullname ? '/' : '') . $dir;
1709 print $cgi->a({-href
=> href
(action
=>"tree", file_name
=>$fullname,
1711 -title
=> $fullname}, esc_html
($dir));
1714 if (defined $type && $type eq 'blob') {
1715 print $cgi->a({-href
=> href
(action
=>"blob_plain", file_name
=>$file_name,
1717 -title
=> $name}, esc_html
($basename));
1718 } elsif (defined $type && $type eq 'tree') {
1719 print $cgi->a({-href
=> href
(action
=>"tree", file_name
=>$file_name,
1721 -title
=> $name}, esc_html
($basename));
1724 print esc_html
($basename);
1727 print "<br/></div>\n";
1730 # sub git_print_log (\@;%) {
1731 sub git_print_log
($;%) {
1735 if ($opts{'-remove_title'}) {
1736 # remove title, i.e. first line of log
1739 # remove leading empty lines
1740 while (defined $log->[0] && $log->[0] eq "") {
1747 foreach my $line (@$log) {
1748 if ($line =~ m/^ *(signed[ \-]off[ \-]by[ :]|acked[ \-]by[ :]|cc[ :])/i) {
1751 if (! $opts{'-remove_signoff'}) {
1752 print "<span class=\"signoff\">" . esc_html
($line) . "</span><br/>\n";
1755 # remove signoff lines
1762 # print only one empty line
1763 # do not print empty line after signoff
1765 next if ($empty || $signoff);
1771 print format_log_line_html
($line) . "<br/>\n";
1774 if ($opts{'-final_empty_line'}) {
1775 # end with single empty line
1776 print "<br/>\n" unless $empty;
1780 # print tree entry (row of git_tree), but without encompassing <tr> element
1781 sub git_print_tree_entry
{
1782 my ($t, $basedir, $hash_base, $have_blame) = @_;
1785 $base_key{hash_base
} = $hash_base if defined $hash_base;
1787 # The format of a table row is: mode list link. Where mode is
1788 # the mode of the entry, list is the name of the entry, an href,
1789 # and link is the action links of the entry.
1791 print "<td class=\"mode\">" . mode_str
($t->{'mode'}) . "</td>\n";
1792 if ($t->{'type'} eq "blob") {
1793 print "<td class=\"list\">" .
1794 $cgi->a({-href
=> href
(action
=>"blob", hash
=>$t->{'hash'},
1795 file_name
=>"$basedir$t->{'name'}", %base_key),
1796 -class => "list"}, esc_html
($t->{'name'})) . "</td>\n";
1797 print "<td class=\"link\">";
1798 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$t->{'hash'},
1799 file_name
=>"$basedir$t->{'name'}", %base_key)},
1803 $cgi->a({-href
=> href
(action
=>"blame", hash
=>$t->{'hash'},
1804 file_name
=>"$basedir$t->{'name'}", %base_key)},
1807 if (defined $hash_base) {
1809 $cgi->a({-href
=> href
(action
=>"history", hash_base
=>$hash_base,
1810 hash
=>$t->{'hash'}, file_name
=>"$basedir$t->{'name'}")},
1814 $cgi->a({-href
=> href
(action
=>"blob_plain", hash_base
=>$hash_base,
1815 file_name
=>"$basedir$t->{'name'}")},
1819 } elsif ($t->{'type'} eq "tree") {
1820 print "<td class=\"list\">";
1821 print $cgi->a({-href
=> href
(action
=>"tree", hash
=>$t->{'hash'},
1822 file_name
=>"$basedir$t->{'name'}", %base_key)},
1823 esc_html
($t->{'name'}));
1825 print "<td class=\"link\">";
1826 print $cgi->a({-href
=> href
(action
=>"tree", hash
=>$t->{'hash'},
1827 file_name
=>"$basedir$t->{'name'}", %base_key)},
1829 if (defined $hash_base) {
1831 $cgi->a({-href
=> href
(action
=>"history", hash_base
=>$hash_base,
1832 file_name
=>"$basedir$t->{'name'}")},
1839 ## ......................................................................
1840 ## functions printing large fragments of HTML
1842 sub git_difftree_body
{
1843 my ($difftree, $hash, $parent) = @_;
1845 print "<div class=\"list_head\">\n";
1846 if ($#{$difftree} > 10) {
1847 print(($#{$difftree} + 1) . " files changed:\n");
1851 print "<table class=\"diff_tree\">\n";
1854 foreach my $line (@{$difftree}) {
1855 my %diff = parse_difftree_raw_line
($line);
1858 print "<tr class=\"dark\">\n";
1860 print "<tr class=\"light\">\n";
1864 my ($to_mode_oct, $to_mode_str, $to_file_type);
1865 my ($from_mode_oct, $from_mode_str, $from_file_type);
1866 if ($diff{'to_mode'} ne ('0' x
6)) {
1867 $to_mode_oct = oct $diff{'to_mode'};
1868 if (S_ISREG
($to_mode_oct)) { # only for regular file
1869 $to_mode_str = sprintf("%04o", $to_mode_oct & 0777); # permission bits
1871 $to_file_type = file_type
($diff{'to_mode'});
1873 if ($diff{'from_mode'} ne ('0' x
6)) {
1874 $from_mode_oct = oct $diff{'from_mode'};
1875 if (S_ISREG
($to_mode_oct)) { # only for regular file
1876 $from_mode_str = sprintf("%04o", $from_mode_oct & 0777); # permission bits
1878 $from_file_type = file_type
($diff{'from_mode'});
1881 if ($diff{'status'} eq "A") { # created
1882 my $mode_chng = "<span class=\"file_status new\">[new $to_file_type";
1883 $mode_chng .= " with mode: $to_mode_str" if $to_mode_str;
1884 $mode_chng .= "]</span>";
1886 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff{'to_id'},
1887 hash_base
=>$hash, file_name
=>$diff{'file'}),
1888 -class => "list"}, esc_html
($diff{'file'}));
1890 print "<td>$mode_chng</td>\n";
1891 print "<td class=\"link\">";
1892 if ($action eq 'commitdiff') {
1895 print $cgi->a({-href
=> "#patch$patchno"}, "patch");
1899 } elsif ($diff{'status'} eq "D") { # deleted
1900 my $mode_chng = "<span class=\"file_status deleted\">[deleted $from_file_type]</span>";
1902 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff{'from_id'},
1903 hash_base
=>$parent, file_name
=>$diff{'file'}),
1904 -class => "list"}, esc_html
($diff{'file'}));
1906 print "<td>$mode_chng</td>\n";
1907 print "<td class=\"link\">";
1908 if ($action eq 'commitdiff') {
1911 print $cgi->a({-href
=> "#patch$patchno"}, "patch");
1914 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff{'from_id'},
1915 hash_base
=>$parent, file_name
=>$diff{'file'})},
1917 print $cgi->a({-href
=> href
(action
=>"blame", hash_base
=>$parent,
1918 file_name
=>$diff{'file'})},
1920 print $cgi->a({-href
=> href
(action
=>"history", hash_base
=>$parent,
1921 file_name
=>$diff{'file'})},
1925 } elsif ($diff{'status'} eq "M" || $diff{'status'} eq "T") { # modified, or type changed
1926 my $mode_chnge = "";
1927 if ($diff{'from_mode'} != $diff{'to_mode'}) {
1928 $mode_chnge = "<span class=\"file_status mode_chnge\">[changed";
1929 if ($from_file_type != $to_file_type) {
1930 $mode_chnge .= " from $from_file_type to $to_file_type";
1932 if (($from_mode_oct & 0777) != ($to_mode_oct & 0777)) {
1933 if ($from_mode_str && $to_mode_str) {
1934 $mode_chnge .= " mode: $from_mode_str->$to_mode_str";
1935 } elsif ($to_mode_str) {
1936 $mode_chnge .= " mode: $to_mode_str";
1939 $mode_chnge .= "]</span>\n";
1942 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff{'to_id'},
1943 hash_base
=>$hash, file_name
=>$diff{'file'}),
1944 -class => "list"}, esc_html
($diff{'file'}));
1946 print "<td>$mode_chnge</td>\n";
1947 print "<td class=\"link\">";
1948 if ($diff{'to_id'} ne $diff{'from_id'}) { # modified
1949 if ($action eq 'commitdiff') {
1952 print $cgi->a({-href
=> "#patch$patchno"}, "patch");
1954 print $cgi->a({-href
=> href
(action
=>"blobdiff",
1955 hash
=>$diff{'to_id'}, hash_parent
=>$diff{'from_id'},
1956 hash_base
=>$hash, hash_parent_base
=>$parent,
1957 file_name
=>$diff{'file'})},
1962 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff{'to_id'},
1963 hash_base
=>$hash, file_name
=>$diff{'file'})},
1965 print $cgi->a({-href
=> href
(action
=>"blame", hash_base
=>$hash,
1966 file_name
=>$diff{'file'})},
1968 print $cgi->a({-href
=> href
(action
=>"history", hash_base
=>$hash,
1969 file_name
=>$diff{'file'})},
1973 } elsif ($diff{'status'} eq "R" || $diff{'status'} eq "C") { # renamed or copied
1974 my %status_name = ('R' => 'moved', 'C' => 'copied');
1975 my $nstatus = $status_name{$diff{'status'}};
1977 if ($diff{'from_mode'} != $diff{'to_mode'}) {
1978 # mode also for directories, so we cannot use $to_mode_str
1979 $mode_chng = sprintf(", mode: %04o", $to_mode_oct & 0777);
1982 $cgi->a({-href
=> href
(action
=>"blob", hash_base
=>$hash,
1983 hash
=>$diff{'to_id'}, file_name
=>$diff{'to_file'}),
1984 -class => "list"}, esc_html
($diff{'to_file'})) . "</td>\n" .
1985 "<td><span class=\"file_status $nstatus\">[$nstatus from " .
1986 $cgi->a({-href
=> href
(action
=>"blob", hash_base
=>$parent,
1987 hash
=>$diff{'from_id'}, file_name
=>$diff{'from_file'}),
1988 -class => "list"}, esc_html
($diff{'from_file'})) .
1989 " with " . (int $diff{'similarity'}) . "% similarity$mode_chng]</span></td>\n" .
1990 "<td class=\"link\">";
1991 if ($diff{'to_id'} ne $diff{'from_id'}) {
1992 if ($action eq 'commitdiff') {
1995 print $cgi->a({-href
=> "#patch$patchno"}, "patch");
1997 print $cgi->a({-href
=> href
(action
=>"blobdiff",
1998 hash
=>$diff{'to_id'}, hash_parent
=>$diff{'from_id'},
1999 hash_base
=>$hash, hash_parent_base
=>$parent,
2000 file_name
=>$diff{'to_file'}, file_parent
=>$diff{'from_file'})},
2005 print $cgi->a({-href
=> href
(action
=>"blob", hash
=>$diff{'from_id'},
2006 hash_base
=>$parent, file_name
=>$diff{'from_file'})},
2008 print $cgi->a({-href
=> href
(action
=>"blame", hash_base
=>$parent,
2009 file_name
=>$diff{'from_file'})},
2011 print $cgi->a({-href
=> href
(action
=>"history", hash_base
=>$parent,
2012 file_name
=>$diff{'from_file'})},
2016 } # we should not encounter Unmerged (U) or Unknown (X) status
2022 sub git_patchset_body
{
2023 my ($fd, $difftree, $hash, $hash_parent) = @_;
2027 my $patch_found = 0;
2030 print "<div class=\"patchset\">\n";
2033 while (my $patch_line = <$fd>) {
2036 if ($patch_line =~ m/^diff /) { # "git diff" header
2037 # beginning of patch (in patchset)
2039 # close previous patch
2040 print "</div>\n"; # class="patch"
2042 # first patch in patchset
2045 print "<div class=\"patch\" id=\"patch". ($patch_idx+1) ."\">\n";
2047 if (ref($difftree->[$patch_idx]) eq "HASH") {
2048 $diffinfo = $difftree->[$patch_idx];
2050 $diffinfo = parse_difftree_raw_line
($difftree->[$patch_idx]);
2054 # for now, no extended header, hence we skip empty patches
2055 # companion to next LINE if $in_header;
2056 if ($diffinfo->{'from_id'} eq $diffinfo->{'to_id'}) { # no change
2061 if ($diffinfo->{'status'} eq "A") { # added
2062 print "<div class=\"diff_info\">" . file_type
($diffinfo->{'to_mode'}) . ":" .
2063 $cgi->a({-href
=> href
(action
=>"blob", hash_base
=>$hash,
2064 hash
=>$diffinfo->{'to_id'}, file_name
=>$diffinfo->{'file'})},
2065 $diffinfo->{'to_id'}) . " (new)" .
2066 "</div>\n"; # class="diff_info"
2068 } elsif ($diffinfo->{'status'} eq "D") { # deleted
2069 print "<div class=\"diff_info\">" . file_type
($diffinfo->{'from_mode'}) . ":" .
2070 $cgi->a({-href
=> href
(action
=>"blob", hash_base
=>$hash_parent,
2071 hash
=>$diffinfo->{'from_id'}, file_name
=>$diffinfo->{'file'})},
2072 $diffinfo->{'from_id'}) . " (deleted)" .
2073 "</div>\n"; # class="diff_info"
2075 } elsif ($diffinfo->{'status'} eq "R" || # renamed
2076 $diffinfo->{'status'} eq "C" || # copied
2077 $diffinfo->{'status'} eq "2") { # with two filenames (from git_blobdiff)
2078 print "<div class=\"diff_info\">" .
2079 file_type
($diffinfo->{'from_mode'}) . ":" .
2080 $cgi->a({-href
=> href
(action
=>"blob", hash_base
=>$hash_parent,
2081 hash
=>$diffinfo->{'from_id'}, file_name
=>$diffinfo->{'from_file'})},
2082 $diffinfo->{'from_id'}) .
2084 file_type
($diffinfo->{'to_mode'}) . ":" .
2085 $cgi->a({-href
=> href
(action
=>"blob", hash_base
=>$hash,
2086 hash
=>$diffinfo->{'to_id'}, file_name
=>$diffinfo->{'to_file'})},
2087 $diffinfo->{'to_id'});
2088 print "</div>\n"; # class="diff_info"
2090 } else { # modified, mode changed, ...
2091 print "<div class=\"diff_info\">" .
2092 file_type
($diffinfo->{'from_mode'}) . ":" .
2093 $cgi->a({-href
=> href
(action
=>"blob", hash_base
=>$hash_parent,
2094 hash
=>$diffinfo->{'from_id'}, file_name
=>$diffinfo->{'file'})},
2095 $diffinfo->{'from_id'}) .
2097 file_type
($diffinfo->{'to_mode'}) . ":" .
2098 $cgi->a({-href
=> href
(action
=>"blob", hash_base
=>$hash,
2099 hash
=>$diffinfo->{'to_id'}, file_name
=>$diffinfo->{'file'})},
2100 $diffinfo->{'to_id'});
2101 print "</div>\n"; # class="diff_info"
2104 #print "<div class=\"diff extended_header\">\n";
2107 } # start of patch in patchset
2110 if ($in_header && $patch_line =~ m/^---/) {
2111 #print "</div>\n"; # class="diff extended_header"
2114 my $file = $diffinfo->{'from_file'};
2115 $file ||= $diffinfo->{'file'};
2116 $file = $cgi->a({-href
=> href
(action
=>"blob", hash_base
=>$hash_parent,
2117 hash
=>$diffinfo->{'from_id'}, file_name
=>$file),
2118 -class => "list"}, esc_html
($file));
2119 $patch_line =~ s
|a
/.*$|a/$file|g
;
2120 print "<div class=\"diff from_file\">$patch_line</div>\n";
2122 $patch_line = <$fd>;
2125 #$patch_line =~ m/^+++/;
2126 $file = $diffinfo->{'to_file'};
2127 $file ||= $diffinfo->{'file'};
2128 $file = $cgi->a({-href
=> href
(action
=>"blob", hash_base
=>$hash,
2129 hash
=>$diffinfo->{'to_id'}, file_name
=>$file),
2130 -class => "list"}, esc_html
($file));
2131 $patch_line =~ s
|b
/.*|b/$file|g
;
2132 print "<div class=\"diff to_file\">$patch_line</div>\n";
2136 next LINE
if $in_header;
2138 print format_diff_line
($patch_line);
2140 print "</div>\n" if $patch_found; # class="patch"
2142 print "</div>\n"; # class="patchset"
2145 # . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
2147 sub git_shortlog_body
{
2148 # uses global variable $project
2149 my ($revlist, $from, $to, $refs, $extra) = @_;
2151 $from = 0 unless defined $from;
2152 $to = $#{$revlist} if (!defined $to || $#{$revlist} < $to);
2154 print "<table class=\"shortlog\" cellspacing=\"0\">\n";
2156 for (my $i = $from; $i <= $to; $i++) {
2157 my $commit = $revlist->[$i];
2158 #my $ref = defined $refs ? format_ref_marker($refs, $commit) : '';
2159 my $ref = format_ref_marker
($refs, $commit);
2160 my %co = parse_commit
($commit);
2162 print "<tr class=\"dark\">\n";
2164 print "<tr class=\"light\">\n";
2167 # git_summary() used print "<td><i>$co{'age_string'}</i></td>\n" .
2168 print "<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n" .
2169 "<td><i>" . esc_html
(chop_str
($co{'author_name'}, 10)) . "</i></td>\n" .
2171 print format_subject_html
($co{'title'}, $co{'title_short'},
2172 href
(action
=>"commit", hash
=>$commit), $ref);
2174 "<td class=\"link\">" .
2175 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$commit)}, "commit") . " | " .
2176 $cgi->a({-href
=> href
(action
=>"commitdiff", hash
=>$commit)}, "commitdiff") . " | " .
2177 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$commit, hash_base
=>$commit)}, "tree");
2178 if (gitweb_have_snapshot
()) {
2179 print " | " . $cgi->a({-href
=> href
(action
=>"snapshot", hash
=>$commit)}, "snapshot");
2184 if (defined $extra) {
2186 "<td colspan=\"4\">$extra</td>\n" .
2192 sub git_history_body
{
2193 # Warning: assumes constant type (blob or tree) during history
2194 my ($revlist, $from, $to, $refs, $hash_base, $ftype, $extra) = @_;
2196 $from = 0 unless defined $from;
2197 $to = $#{$revlist} unless (defined $to && $to <= $#{$revlist});
2199 print "<table class=\"history\" cellspacing=\"0\">\n";
2201 for (my $i = $from; $i <= $to; $i++) {
2202 if ($revlist->[$i] !~ m/^([0-9a-fA-F]{40})/) {
2207 my %co = parse_commit
($commit);
2212 my $ref = format_ref_marker
($refs, $commit);
2215 print "<tr class=\"dark\">\n";
2217 print "<tr class=\"light\">\n";
2220 print "<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n" .
2221 # shortlog uses chop_str($co{'author_name'}, 10)
2222 "<td><i>" . esc_html
(chop_str
($co{'author_name'}, 15, 3)) . "</i></td>\n" .
2224 # originally git_history used chop_str($co{'title'}, 50)
2225 print format_subject_html
($co{'title'}, $co{'title_short'},
2226 href
(action
=>"commit", hash
=>$commit), $ref);
2228 "<td class=\"link\">" .
2229 $cgi->a({-href
=> href
(action
=>$ftype, hash_base
=>$commit, file_name
=>$file_name)}, $ftype) . " | " .
2230 $cgi->a({-href
=> href
(action
=>"commitdiff", hash
=>$commit)}, "commitdiff");
2232 if ($ftype eq 'blob') {
2233 my $blob_current = git_get_hash_by_path
($hash_base, $file_name);
2234 my $blob_parent = git_get_hash_by_path
($commit, $file_name);
2235 if (defined $blob_current && defined $blob_parent &&
2236 $blob_current ne $blob_parent) {
2238 $cgi->a({-href
=> href
(action
=>"blobdiff",
2239 hash
=>$blob_current, hash_parent
=>$blob_parent,
2240 hash_base
=>$hash_base, hash_parent_base
=>$commit,
2241 file_name
=>$file_name)},
2248 if (defined $extra) {
2250 "<td colspan=\"4\">$extra</td>\n" .
2257 # uses global variable $project
2258 my ($taglist, $from, $to, $extra) = @_;
2259 $from = 0 unless defined $from;
2260 $to = $#{$taglist} if (!defined $to || $#{$taglist} < $to);
2262 print "<table class=\"tags\" cellspacing=\"0\">\n";
2264 for (my $i = $from; $i <= $to; $i++) {
2265 my $entry = $taglist->[$i];
2267 my $comment_lines = $tag{'comment'};
2268 my $comment = shift @$comment_lines;
2270 if (defined $comment) {
2271 $comment_short = chop_str
($comment, 30, 5);
2274 print "<tr class=\"dark\">\n";
2276 print "<tr class=\"light\">\n";
2279 print "<td><i>$tag{'age'}</i></td>\n" .
2281 $cgi->a({-href
=> href
(action
=>$tag{'reftype'}, hash
=>$tag{'refid'}),
2282 -class => "list name"}, esc_html
($tag{'name'})) .
2285 if (defined $comment) {
2286 print format_subject_html
($comment, $comment_short,
2287 href
(action
=>"tag", hash
=>$tag{'id'}));
2290 "<td class=\"selflink\">";
2291 if ($tag{'type'} eq "tag") {
2292 print $cgi->a({-href
=> href
(action
=>"tag", hash
=>$tag{'id'})}, "tag");
2297 "<td class=\"link\">" . " | " .
2298 $cgi->a({-href
=> href
(action
=>$tag{'reftype'}, hash
=>$tag{'refid'})}, $tag{'reftype'});
2299 if ($tag{'reftype'} eq "commit") {
2300 print " | " . $cgi->a({-href
=> href
(action
=>"shortlog", hash
=>$tag{'name'})}, "shortlog") .
2301 " | " . $cgi->a({-href
=> href
(action
=>"log", hash
=>$tag{'refid'})}, "log");
2302 } elsif ($tag{'reftype'} eq "blob") {
2303 print " | " . $cgi->a({-href
=> href
(action
=>"blob_plain", hash
=>$tag{'refid'})}, "raw");
2308 if (defined $extra) {
2310 "<td colspan=\"5\">$extra</td>\n" .
2316 sub git_heads_body
{
2317 # uses global variable $project
2318 my ($headlist, $head, $from, $to, $extra) = @_;
2319 $from = 0 unless defined $from;
2320 $to = $#{$headlist} if (!defined $to || $#{$headlist} < $to);
2322 print "<table class=\"heads\" cellspacing=\"0\">\n";
2324 for (my $i = $from; $i <= $to; $i++) {
2325 my $entry = $headlist->[$i];
2327 my $curr = $tag{'id'} eq $head;
2329 print "<tr class=\"dark\">\n";
2331 print "<tr class=\"light\">\n";
2334 print "<td><i>$tag{'age'}</i></td>\n" .
2335 ($tag{'id'} eq $head ? "<td class=\"current_head\">" : "<td>") .
2336 $cgi->a({-href
=> href
(action
=>"shortlog", hash
=>$tag{'name'}),
2337 -class => "list name"},esc_html
($tag{'name'})) .
2339 "<td class=\"link\">" .
2340 $cgi->a({-href
=> href
(action
=>"shortlog", hash
=>$tag{'name'})}, "shortlog") . " | " .
2341 $cgi->a({-href
=> href
(action
=>"log", hash
=>$tag{'name'})}, "log") . " | " .
2342 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$tag{'name'}, hash_base
=>$tag{'name'})}, "tree") .
2346 if (defined $extra) {
2348 "<td colspan=\"3\">$extra</td>\n" .
2354 ## ======================================================================
2355 ## ======================================================================
2358 sub git_project_list
{
2359 my $order = $cgi->param('o');
2360 if (defined $order && $order !~ m/project|descr|owner|age/) {
2361 die_error
(undef, "Unknown order parameter");
2364 my @list = git_get_projects_list
();
2367 die_error
(undef, "No projects found");
2369 foreach my $pr (@list) {
2370 my (@aa) = git_get_last_activity
($pr->{'path'});
2374 ($pr->{'age'}, $pr->{'age_string'}) = @aa;
2375 if (!defined $pr->{'descr'}) {
2376 my $descr = git_get_project_description
($pr->{'path'}) || "";
2377 $pr->{'descr'} = chop_str
($descr, 25, 5);
2379 if (!defined $pr->{'owner'}) {
2380 $pr->{'owner'} = get_file_owner
("$projectroot/$pr->{'path'}") || "";
2382 push @projects, $pr;
2386 if (-f
$home_text) {
2387 print "<div class=\"index_include\">\n";
2388 open (my $fd, $home_text);
2393 print "<table class=\"project_list\">\n" .
2395 $order ||= "project";
2396 if ($order eq "project") {
2397 @projects = sort {$a->{'path'} cmp $b->{'path'}} @projects;
2398 print "<th>Project</th>\n";
2401 $cgi->a({-href
=> href
(project
=>undef, order
=>'project'),
2402 -class => "header"}, "Project") .
2405 if ($order eq "descr") {
2406 @projects = sort {$a->{'descr'} cmp $b->{'descr'}} @projects;
2407 print "<th>Description</th>\n";
2410 $cgi->a({-href
=> href
(project
=>undef, order
=>'descr'),
2411 -class => "header"}, "Description") .
2414 if ($order eq "owner") {
2415 @projects = sort {$a->{'owner'} cmp $b->{'owner'}} @projects;
2416 print "<th>Owner</th>\n";
2419 $cgi->a({-href
=> href
(project
=>undef, order
=>'owner'),
2420 -class => "header"}, "Owner") .
2423 if ($order eq "age") {
2424 @projects = sort {$a->{'age'} <=> $b->{'age'}} @projects;
2425 print "<th>Last Change</th>\n";
2428 $cgi->a({-href
=> href
(project
=>undef, order
=>'age'),
2429 -class => "header"}, "Last Change") .
2432 print "<th></th>\n" .
2435 foreach my $pr (@projects) {
2437 print "<tr class=\"dark\">\n";
2439 print "<tr class=\"light\">\n";
2442 print "<td>" . $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"summary"),
2443 -class => "list"}, esc_html
($pr->{'path'})) . "</td>\n" .
2444 "<td>" . esc_html
($pr->{'descr'}) . "</td>\n" .
2445 "<td><i>" . chop_str
($pr->{'owner'}, 15) . "</i></td>\n";
2446 print "<td class=\"". age_class
($pr->{'age'}) . "\">" .
2447 $pr->{'age_string'} . "</td>\n" .
2448 "<td class=\"link\">" .
2449 $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"summary")}, "summary") . " | " .
2450 $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"shortlog")}, "shortlog") . " | " .
2451 $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"log")}, "log") . " | " .
2452 $cgi->a({-href
=> href
(project
=>$pr->{'path'}, action
=>"tree")}, "tree") .
2460 sub git_project_index
{
2461 my @projects = git_get_projects_list
();
2464 -type
=> 'text/plain',
2465 -charset
=> 'utf-8',
2466 -content_disposition
=> 'inline; filename="index.aux"');
2468 foreach my $pr (@projects) {
2469 if (!exists $pr->{'owner'}) {
2470 $pr->{'owner'} = get_file_owner
("$projectroot/$project");
2473 my ($path, $owner) = ($pr->{'path'}, $pr->{'owner'});
2474 # quote as in CGI::Util::encode, but keep the slash, and use '+' for ' '
2475 $path =~ s/([^a-zA-Z0-9_.\-\/ ])/sprintf
("%%%02X", ord($1))/eg
;
2476 $owner =~ s/([^a-zA-Z0-9_.\-\/ ])/sprintf
("%%%02X", ord($1))/eg
;
2480 print "$path $owner\n";
2485 my $descr = git_get_project_description
($project) || "none";
2486 my $head = git_get_head_hash
($project);
2487 my %co = parse_commit
($head);
2488 my %cd = parse_date
($co{'committer_epoch'}, $co{'committer_tz'});
2490 my $owner = git_get_project_owner
($project);
2492 my ($reflist, $refs) = git_get_refs_list
();
2496 foreach my $ref (@$reflist) {
2497 if ($ref->{'name'} =~ s!^heads/!!) {
2498 push @headlist, $ref;
2500 $ref->{'name'} =~ s!^tags/!!;
2501 push @taglist, $ref;
2506 git_print_page_nav
('summary','', $head);
2508 print "<div class=\"title\"> </div>\n";
2509 print "<table cellspacing=\"0\">\n" .
2510 "<tr><td>description</td><td>" . esc_html
($descr) . "</td></tr>\n" .
2511 "<tr><td>owner</td><td>$owner</td></tr>\n" .
2512 "<tr><td>last change</td><td>$cd{'rfc2822'}</td></tr>\n";
2513 # use per project git URL list in $projectroot/$project/cloneurl
2514 # or make project git URL from git base URL and project name
2515 my $url_tag = "URL";
2516 my @url_list = git_get_project_url_list
($project);
2517 @url_list = map { "$_/$project" } @git_base_url_list unless @url_list;
2518 foreach my $git_url (@url_list) {
2519 next unless $git_url;
2520 print "<tr><td>$url_tag</td><td>$git_url</td></tr>\n";
2525 if (-s
"$projectroot/$project/README.html") {
2526 if (open my $fd, "$projectroot/$project/README.html") {
2527 print "<div class=\"title\">readme</div>\n";
2528 print $_ while (<$fd>);
2533 open my $fd, "-|", git_cmd
(), "rev-list", "--max-count=17",
2534 git_get_head_hash
($project)
2535 or die_error
(undef, "Open git-rev-list failed");
2536 my @revlist = map { chomp; $_ } <$fd>;
2538 git_print_header_div
('shortlog');
2539 git_shortlog_body
(\
@revlist, 0, 15, $refs,
2540 $cgi->a({-href
=> href
(action
=>"shortlog")}, "..."));
2543 git_print_header_div
('tags');
2544 git_tags_body
(\
@taglist, 0, 15,
2545 $cgi->a({-href
=> href
(action
=>"tags")}, "..."));
2549 git_print_header_div
('heads');
2550 git_heads_body
(\
@headlist, $head, 0, 15,
2551 $cgi->a({-href
=> href
(action
=>"heads")}, "..."));
2558 my $head = git_get_head_hash
($project);
2560 git_print_page_nav
('','', $head,undef,$head);
2561 my %tag = parse_tag
($hash);
2562 git_print_header_div
('commit', esc_html
($tag{'name'}), $hash);
2563 print "<div class=\"title_text\">\n" .
2564 "<table cellspacing=\"0\">\n" .
2566 "<td>object</td>\n" .
2567 "<td>" . $cgi->a({-class => "list", -href
=> href
(action
=>$tag{'type'}, hash
=>$tag{'object'})},
2568 $tag{'object'}) . "</td>\n" .
2569 "<td class=\"link\">" . $cgi->a({-href
=> href
(action
=>$tag{'type'}, hash
=>$tag{'object'})},
2570 $tag{'type'}) . "</td>\n" .
2572 if (defined($tag{'author'})) {
2573 my %ad = parse_date
($tag{'epoch'}, $tag{'tz'});
2574 print "<tr><td>author</td><td>" . esc_html
($tag{'author'}) . "</td></tr>\n";
2575 print "<tr><td></td><td>" . $ad{'rfc2822'} .
2576 sprintf(" (%02d:%02d %s)", $ad{'hour_local'}, $ad{'minute_local'}, $ad{'tz_local'}) .
2579 print "</table>\n\n" .
2581 print "<div class=\"page_body\">";
2582 my $comment = $tag{'comment'};
2583 foreach my $line (@$comment) {
2584 print esc_html
($line) . "<br/>\n";
2594 my ($have_blame) = gitweb_check_feature
('blame');
2596 die_error
('403 Permission denied', "Permission denied");
2598 die_error
('404 Not Found', "File name not defined") if (!$file_name);
2599 $hash_base ||= git_get_head_hash
($project);
2600 die_error
(undef, "Couldn't find base commit") unless ($hash_base);
2601 my %co = parse_commit
($hash_base)
2602 or die_error
(undef, "Reading commit failed");
2603 if (!defined $hash) {
2604 $hash = git_get_hash_by_path
($hash_base, $file_name, "blob")
2605 or die_error
(undef, "Error looking up file");
2607 $ftype = git_get_type
($hash);
2608 if ($ftype !~ "blob") {
2609 die_error
("400 Bad Request", "Object is not a blob");
2611 open ($fd, "-|", git_cmd
(), "blame", '-p', '--',
2612 $file_name, $hash_base)
2613 or die_error
(undef, "Open git-blame failed");
2616 $cgi->a({-href
=> href
(action
=>"blob", hash
=>$hash, hash_base
=>$hash_base, file_name
=>$file_name)},
2619 $cgi->a({-href
=> href
(action
=>"history", hash
=>$hash, hash_base
=>$hash_base, file_name
=>$file_name)},
2622 $cgi->a({-href
=> href
(action
=>"blame", file_name
=>$file_name)},
2624 git_print_page_nav
('','', $hash_base,$co{'tree'},$hash_base, $formats_nav);
2625 git_print_header_div
('commit', esc_html
($co{'title'}), $hash_base);
2626 git_print_page_path
($file_name, $ftype, $hash_base);
2627 my @rev_color = (qw(light2 dark2));
2628 my $num_colors = scalar(@rev_color);
2629 my $current_color = 0;
2632 <div class="page_body">
2633 <table class="blame">
2634 <tr><th>Commit</th><th>Line</th><th>Data</th></tr>
2639 last unless defined $_;
2640 my ($full_rev, $orig_lineno, $lineno, $group_size) =
2641 /^([0-9a-f]{40}) (\d+) (\d+)(?: (\d+))?$/;
2642 if (!exists $metainfo{$full_rev}) {
2643 $metainfo{$full_rev} = {};
2645 my $meta = $metainfo{$full_rev};
2648 if (/^(\S+) (.*)$/) {
2653 my $rev = substr($full_rev, 0, 8);
2654 my $author = $meta->{'author'};
2655 my %date = parse_date
($meta->{'author-time'},
2656 $meta->{'author-tz'});
2657 my $date = $date{'iso-tz'};
2659 $current_color = ++$current_color % $num_colors;
2661 print "<tr class=\"$rev_color[$current_color]\">\n";
2663 print "<td class=\"sha1\"";
2664 print " title=\"$author, $date\"";
2665 print " rowspan=\"$group_size\"" if ($group_size > 1);
2667 print $cgi->a({-href
=> href
(action
=>"commit",
2669 file_name
=>$file_name)},
2673 my $blamed = href
(action
=> 'blame',
2674 file_name
=> $meta->{'filename'},
2675 hash_base
=> $full_rev);
2676 print "<td class=\"linenr\">";
2677 print $cgi->a({ -href
=> "$blamed#l$orig_lineno",
2679 -class => "linenr" },
2682 print "<td class=\"pre\">" . esc_html
($data) . "</td>\n";
2688 or print "Reading blob failed\n";
2695 my ($have_blame) = gitweb_check_feature
('blame');
2697 die_error
('403 Permission denied', "Permission denied");
2699 die_error
('404 Not Found', "File name not defined") if (!$file_name);
2700 $hash_base ||= git_get_head_hash
($project);
2701 die_error
(undef, "Couldn't find base commit") unless ($hash_base);
2702 my %co = parse_commit
($hash_base)
2703 or die_error
(undef, "Reading commit failed");
2704 if (!defined $hash) {
2705 $hash = git_get_hash_by_path
($hash_base, $file_name, "blob")
2706 or die_error
(undef, "Error lookup file");
2708 open ($fd, "-|", git_cmd
(), "annotate", '-l', '-t', '-r', $file_name, $hash_base)
2709 or die_error
(undef, "Open git-annotate failed");
2712 $cgi->a({-href
=> href
(action
=>"blob", hash
=>$hash, hash_base
=>$hash_base, file_name
=>$file_name)},
2715 $cgi->a({-href
=> href
(action
=>"history", hash
=>$hash, hash_base
=>$hash_base, file_name
=>$file_name)},
2718 $cgi->a({-href
=> href
(action
=>"blame", file_name
=>$file_name)},
2720 git_print_page_nav
('','', $hash_base,$co{'tree'},$hash_base, $formats_nav);
2721 git_print_header_div
('commit', esc_html
($co{'title'}), $hash_base);
2722 git_print_page_path
($file_name, 'blob', $hash_base);
2723 print "<div class=\"page_body\">\n";
2725 <table class="blame">
2734 my @line_class = (qw(light dark));
2735 my $line_class_len = scalar (@line_class);
2736 my $line_class_num = $#line_class;
2737 while (my $line = <$fd>) {
2749 $line_class_num = ($line_class_num + 1) % $line_class_len;
2751 if ($line =~ m/^([0-9a-fA-F]{40})\t\(\s*([^\t]+)\t(\d+) [+-]\d\d\d\d\t(\d+)\)(.*)$/) {
2758 print qq( <tr><td colspan="5" class="error">Unable to parse: $line</td></tr>\n);
2761 $short_rev = substr ($long_rev, 0, 8);
2762 $age = time () - $time;
2763 $age_str = age_string
($age);
2764 $age_str =~ s/ / /g;
2765 $age_class = age_class
($age);
2766 $author = esc_html
($author);
2767 $author =~ s/ / /g;
2769 $data = untabify
($data);
2770 $data = esc_html
($data);
2773 <tr class="$line_class[$line_class_num]">
2774 <td class="sha1"><a href="${\href (action=>"commit", hash=>$long_rev)}" class="text">$short_rev..</a></td>
2775 <td class="$age_class">$age_str</td>
2777 <td class="linenr"><a id="$lineno" href="#$lineno" class="linenr">$lineno</a></td>
2778 <td class="pre">$data</td>
2781 } # while (my $line = <$fd>)
2782 print "</table>\n\n";
2784 or print "Reading blob failed.\n";
2790 my $head = git_get_head_hash
($project);
2792 git_print_page_nav
('','', $head,undef,$head);
2793 git_print_header_div
('summary', $project);
2795 my ($taglist) = git_get_refs_list
("tags");
2797 git_tags_body
($taglist);
2803 my $head = git_get_head_hash
($project);
2805 git_print_page_nav
('','', $head,undef,$head);
2806 git_print_header_div
('summary', $project);
2808 my ($headlist) = git_get_refs_list
("heads");
2810 git_heads_body
($headlist, $head);
2815 sub git_blob_plain
{
2818 if (!defined $hash) {
2819 if (defined $file_name) {
2820 my $base = $hash_base || git_get_head_hash
($project);
2821 $hash = git_get_hash_by_path
($base, $file_name, "blob")
2822 or die_error
(undef, "Error lookup file");
2824 die_error
(undef, "No file name defined");
2826 } elsif ($hash =~ m/^[0-9a-fA-F]{40}$/) {
2827 # blobs defined by non-textual hash id's can be cached
2832 open my $fd, "-|", git_cmd
(), "cat-file", "blob", $hash
2833 or die_error
(undef, "Couldn't cat $file_name, $hash");
2835 $type ||= blob_mimetype
($fd, $file_name);
2837 # save as filename, even when no $file_name is given
2838 my $save_as = "$hash";
2839 if (defined $file_name) {
2840 $save_as = $file_name;
2841 } elsif ($type =~ m/^text\//) {
2848 -content_disposition
=> 'inline; filename="' . "$save_as" . '"');
2850 binmode STDOUT
, ':raw';
2852 binmode STDOUT
, ':utf8'; # as set at the beginning of gitweb.cgi
2860 if (!defined $hash) {
2861 if (defined $file_name) {
2862 my $base = $hash_base || git_get_head_hash
($project);
2863 $hash = git_get_hash_by_path
($base, $file_name, "blob")
2864 or die_error
(undef, "Error lookup file");
2866 die_error
(undef, "No file name defined");
2868 } elsif ($hash =~ m/^[0-9a-fA-F]{40}$/) {
2869 # blobs defined by non-textual hash id's can be cached
2873 my ($have_blame) = gitweb_check_feature
('blame');
2874 open my $fd, "-|", git_cmd
(), "cat-file", "blob", $hash
2875 or die_error
(undef, "Couldn't cat $file_name, $hash");
2876 my $mimetype = blob_mimetype
($fd, $file_name);
2877 if ($mimetype !~ m/^text\//) {
2879 return git_blob_plain
($mimetype);
2881 git_header_html
(undef, $expires);
2882 my $formats_nav = '';
2883 if (defined $hash_base && (my %co = parse_commit
($hash_base))) {
2884 if (defined $file_name) {
2887 $cgi->a({-href
=> href
(action
=>"blame", hash_base
=>$hash_base,
2888 hash
=>$hash, file_name
=>$file_name)},
2893 $cgi->a({-href
=> href
(action
=>"history", hash_base
=>$hash_base,
2894 hash
=>$hash, file_name
=>$file_name)},
2897 $cgi->a({-href
=> href
(action
=>"blob_plain",
2898 hash
=>$hash, file_name
=>$file_name)},
2901 $cgi->a({-href
=> href
(action
=>"blob",
2902 hash_base
=>"HEAD", file_name
=>$file_name)},
2906 $cgi->a({-href
=> href
(action
=>"blob_plain", hash
=>$hash)}, "raw");
2908 git_print_page_nav
('','', $hash_base,$co{'tree'},$hash_base, $formats_nav);
2909 git_print_header_div
('commit', esc_html
($co{'title'}), $hash_base);
2911 print "<div class=\"page_nav\">\n" .
2912 "<br/><br/></div>\n" .
2913 "<div class=\"title\">$hash</div>\n";
2915 git_print_page_path
($file_name, "blob", $hash_base);
2916 print "<div class=\"page_body\">\n";
2918 while (my $line = <$fd>) {
2921 $line = untabify
($line);
2922 printf "<div class=\"pre\"><a id=\"l%i\" href=\"#l%i\" class=\"linenr\">%4i</a> %s</div>\n",
2923 $nr, $nr, $nr, esc_html
($line);
2926 or print "Reading blob failed.\n";
2932 my $have_snapshot = gitweb_have_snapshot
();
2934 if (!defined $hash_base) {
2935 $hash_base = "HEAD";
2937 if (!defined $hash) {
2938 if (defined $file_name) {
2939 $hash = git_get_hash_by_path
($hash_base, $file_name, "tree");
2945 open my $fd, "-|", git_cmd
(), "ls-tree", '-z', $hash
2946 or die_error
(undef, "Open git-ls-tree failed");
2947 my @entries = map { chomp; $_ } <$fd>;
2948 close $fd or die_error
(undef, "Reading tree failed");
2951 my $refs = git_get_references
();
2952 my $ref = format_ref_marker
($refs, $hash_base);
2955 my ($have_blame) = gitweb_check_feature
('blame');
2956 if (defined $hash_base && (my %co = parse_commit
($hash_base))) {
2958 if (defined $file_name) {
2960 $cgi->a({-href
=> href
(action
=>"history", hash_base
=>$hash_base,
2961 hash
=>$hash, file_name
=>$file_name)},
2963 $cgi->a({-href
=> href
(action
=>"tree",
2964 hash_base
=>"HEAD", file_name
=>$file_name)},
2967 if ($have_snapshot) {
2968 # FIXME: Should be available when we have no hash base as well.
2970 $cgi->a({-href
=> href
(action
=>"snapshot", hash
=>$hash)},
2973 git_print_page_nav
('tree','', $hash_base, undef, undef, join(' | ', @views_nav));
2974 git_print_header_div
('commit', esc_html
($co{'title'}) . $ref, $hash_base);
2977 print "<div class=\"page_nav\">\n";
2978 print "<br/><br/></div>\n";
2979 print "<div class=\"title\">$hash</div>\n";
2981 if (defined $file_name) {
2982 $basedir = $file_name;
2983 if ($basedir ne '' && substr($basedir, -1) ne '/') {
2987 git_print_page_path
($file_name, 'tree', $hash_base);
2988 print "<div class=\"page_body\">\n";
2989 print "<table cellspacing=\"0\">\n";
2991 # '..' (top directory) link if possible
2992 if (defined $hash_base &&
2993 defined $file_name && $file_name =~ m![^/]+$!) {
2995 print "<tr class=\"dark\">\n";
2997 print "<tr class=\"light\">\n";
3001 my $up = $file_name;
3002 $up =~ s!/?[^/]+$!!;
3003 undef $up unless $up;
3004 # based on git_print_tree_entry
3005 print '<td class="mode">' . mode_str
('040000') . "</td>\n";
3006 print '<td class="list">';
3007 print $cgi->a({-href
=> href
(action
=>"tree", hash_base
=>$hash_base,
3011 print "<td class=\"link\"></td>\n";
3015 foreach my $line (@entries) {
3016 my %t = parse_ls_tree_line
($line, -z
=> 1);
3019 print "<tr class=\"dark\">\n";
3021 print "<tr class=\"light\">\n";
3025 git_print_tree_entry
(\
%t, $basedir, $hash_base, $have_blame);
3029 print "</table>\n" .
3035 my ($ctype, $suffix, $command) = gitweb_check_feature
('snapshot');
3036 my $have_snapshot = (defined $ctype && defined $suffix);
3037 if (!$have_snapshot) {
3038 die_error
('403 Permission denied', "Permission denied");
3041 if (!defined $hash) {
3042 $hash = git_get_head_hash
($project);
3045 my $filename = basename
($project) . "-$hash.tar.$suffix";
3048 -type
=> 'application/x-tar',
3049 -content_encoding
=> $ctype,
3050 -content_disposition
=> 'inline; filename="' . "$filename" . '"',
3051 -status
=> '200 OK');
3053 my $git = git_cmd_str
();
3054 my $name = $project;
3055 $name =~ s/\047/\047\\\047\047/g;
3057 "$git archive --format=tar --prefix=\'$name\'/ $hash | $command"
3058 or die_error
(undef, "Execute git-tar-tree failed.");
3059 binmode STDOUT
, ':raw';
3061 binmode STDOUT
, ':utf8'; # as set at the beginning of gitweb.cgi
3067 my $head = git_get_head_hash
($project);
3068 if (!defined $hash) {
3071 if (!defined $page) {
3074 my $refs = git_get_references
();
3076 my $limit = sprintf("--max-count=%i", (100 * ($page+1)));
3077 open my $fd, "-|", git_cmd
(), "rev-list", $limit, $hash
3078 or die_error
(undef, "Open git-rev-list failed");
3079 my @revlist = map { chomp; $_ } <$fd>;
3082 my $paging_nav = format_paging_nav
('log', $hash, $head, $page, $#revlist);
3085 git_print_page_nav
('log','', $hash,undef,undef, $paging_nav);
3088 my %co = parse_commit
($hash);
3090 git_print_header_div
('summary', $project);
3091 print "<div class=\"page_body\"> Last change $co{'age_string'}.<br/><br/></div>\n";
3093 for (my $i = ($page * 100); $i <= $#revlist; $i++) {
3094 my $commit = $revlist[$i];
3095 my $ref = format_ref_marker
($refs, $commit);
3096 my %co = parse_commit
($commit);
3098 my %ad = parse_date
($co{'author_epoch'});
3099 git_print_header_div
('commit',
3100 "<span class=\"age\">$co{'age_string'}</span>" .
3101 esc_html
($co{'title'}) . $ref,
3103 print "<div class=\"title_text\">\n" .
3104 "<div class=\"log_link\">\n" .
3105 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$commit)}, "commit") .
3107 $cgi->a({-href
=> href
(action
=>"commitdiff", hash
=>$commit)}, "commitdiff") .
3109 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$commit, hash_base
=>$commit)}, "tree") .
3112 "<i>" . esc_html
($co{'author_name'}) . " [$ad{'rfc2822'}]</i><br/>\n" .
3115 print "<div class=\"log_body\">\n";
3116 git_print_log
($co{'comment'}, -final_empty_line
=> 1);
3123 my %co = parse_commit
($hash);
3125 die_error
(undef, "Unknown commit object");
3127 my %ad = parse_date
($co{'author_epoch'}, $co{'author_tz'});
3128 my %cd = parse_date
($co{'committer_epoch'}, $co{'committer_tz'});
3130 my $parent = $co{'parent'};
3131 if (!defined $parent) {
3134 open my $fd, "-|", git_cmd
(), "diff-tree", '-r', @diff_opts, $parent, $hash
3135 or die_error
(undef, "Open git-diff-tree failed");
3136 my @difftree = map { chomp; $_ } <$fd>;
3137 close $fd or die_error
(undef, "Reading git-diff-tree failed");
3139 # filter out commit ID output
3140 @difftree = grep(!/^[0-9a-fA-F]{40}$/, @difftree);
3142 # non-textual hash id's can be cached
3144 if ($hash =~ m/^[0-9a-fA-F]{40}$/) {
3147 my $refs = git_get_references
();
3148 my $ref = format_ref_marker
($refs, $co{'id'});
3150 my $have_snapshot = gitweb_have_snapshot
();
3153 if (defined $file_name && defined $co{'parent'}) {
3155 $cgi->a({-href
=> href
(action
=>"blame", hash_parent
=>$parent, file_name
=>$file_name)},
3158 git_header_html
(undef, $expires);
3159 git_print_page_nav
('commit', '',
3160 $hash, $co{'tree'}, $hash,
3161 join (' | ', @views_nav));
3163 if (defined $co{'parent'}) {
3164 git_print_header_div
('commitdiff', esc_html
($co{'title'}) . $ref, $hash);
3166 git_print_header_div
('tree', esc_html
($co{'title'}) . $ref, $co{'tree'}, $hash);
3168 print "<div class=\"title_text\">\n" .
3169 "<table cellspacing=\"0\">\n";
3170 print "<tr><td>author</td><td>" . esc_html
($co{'author'}) . "</td></tr>\n".
3172 "<td></td><td> $ad{'rfc2822'}";
3173 if ($ad{'hour_local'} < 6) {
3174 printf(" (<span class=\"atnight\">%02d:%02d</span> %s)",
3175 $ad{'hour_local'}, $ad{'minute_local'}, $ad{'tz_local'});
3177 printf(" (%02d:%02d %s)",
3178 $ad{'hour_local'}, $ad{'minute_local'}, $ad{'tz_local'});
3182 print "<tr><td>committer</td><td>" . esc_html
($co{'committer'}) . "</td></tr>\n";
3183 print "<tr><td></td><td> $cd{'rfc2822'}" .
3184 sprintf(" (%02d:%02d %s)", $cd{'hour_local'}, $cd{'minute_local'}, $cd{'tz_local'}) .
3186 print "<tr><td>commit</td><td class=\"sha1\">$co{'id'}</td></tr>\n";
3189 "<td class=\"sha1\">" .
3190 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$co{'tree'}, hash_base
=>$hash),
3191 class => "list"}, $co{'tree'}) .
3193 "<td class=\"link\">" .
3194 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$co{'tree'}, hash_base
=>$hash)},
3196 if ($have_snapshot) {
3198 $cgi->a({-href
=> href
(action
=>"snapshot", hash
=>$hash)}, "snapshot");
3202 my $parents = $co{'parents'};
3203 foreach my $par (@$parents) {
3206 "<td class=\"sha1\">" .
3207 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$par),
3208 class => "list"}, $par) .
3210 "<td class=\"link\">" .
3211 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$par)}, "commit") .
3213 $cgi->a({-href
=> href
(action
=>"commitdiff", hash
=>$hash, hash_parent
=>$par)}, "diff") .
3220 print "<div class=\"page_body\">\n";
3221 git_print_log
($co{'comment'});
3224 git_difftree_body
(\
@difftree, $hash, $parent);
3230 my $format = shift || 'html';
3237 # preparing $fd and %diffinfo for git_patchset_body
3239 if (defined $hash_base && defined $hash_parent_base) {
3240 if (defined $file_name) {
3242 open $fd, "-|", git_cmd
(), "diff-tree", '-r', @diff_opts, $hash_parent_base, $hash_base,
3244 or die_error
(undef, "Open git-diff-tree failed");
3245 @difftree = map { chomp; $_ } <$fd>;
3247 or die_error
(undef, "Reading git-diff-tree failed");
3249 or die_error
('404 Not Found', "Blob diff not found");
3251 } elsif (defined $hash &&
3252 $hash =~ /[0-9a-fA-F]{40}/) {
3253 # try to find filename from $hash
3255 # read filtered raw output
3256 open $fd, "-|", git_cmd
(), "diff-tree", '-r', @diff_opts, $hash_parent_base, $hash_base
3257 or die_error
(undef, "Open git-diff-tree failed");
3259 # ':100644 100644 03b21826... 3b93d5e7... M ls-files.c'
3261 grep { /^:[0-7]{6} [0-7]{6} [0-9a-fA-F]{40} $hash/ }
3262 map { chomp; $_ } <$fd>;
3264 or die_error
(undef, "Reading git-diff-tree failed");
3266 or die_error
('404 Not Found', "Blob diff not found");
3269 die_error
('404 Not Found', "Missing one of the blob diff parameters");
3272 if (@difftree > 1) {
3273 die_error
('404 Not Found', "Ambiguous blob diff specification");
3276 %diffinfo = parse_difftree_raw_line
($difftree[0]);
3277 $file_parent ||= $diffinfo{'from_file'} || $file_name || $diffinfo{'file'};
3278 $file_name ||= $diffinfo{'to_file'} || $diffinfo{'file'};
3280 $hash_parent ||= $diffinfo{'from_id'};
3281 $hash ||= $diffinfo{'to_id'};
3283 # non-textual hash id's can be cached
3284 if ($hash_base =~ m/^[0-9a-fA-F]{40}$/ &&
3285 $hash_parent_base =~ m/^[0-9a-fA-F]{40}$/) {
3290 open $fd, "-|", git_cmd
(), "diff-tree", '-r', @diff_opts,
3291 '-p', $hash_parent_base, $hash_base,
3293 or die_error
(undef, "Open git-diff-tree failed");
3296 # old/legacy style URI
3297 if (!%diffinfo && # if new style URI failed
3298 defined $hash && defined $hash_parent) {
3299 # fake git-diff-tree raw output
3300 $diffinfo{'from_mode'} = $diffinfo{'to_mode'} = "blob";
3301 $diffinfo{'from_id'} = $hash_parent;
3302 $diffinfo{'to_id'} = $hash;
3303 if (defined $file_name) {
3304 if (defined $file_parent) {
3305 $diffinfo{'status'} = '2';
3306 $diffinfo{'from_file'} = $file_parent;
3307 $diffinfo{'to_file'} = $file_name;
3308 } else { # assume not renamed
3309 $diffinfo{'status'} = '1';
3310 $diffinfo{'from_file'} = $file_name;
3311 $diffinfo{'to_file'} = $file_name;
3313 } else { # no filename given
3314 $diffinfo{'status'} = '2';
3315 $diffinfo{'from_file'} = $hash_parent;
3316 $diffinfo{'to_file'} = $hash;
3319 # non-textual hash id's can be cached
3320 if ($hash =~ m/^[0-9a-fA-F]{40}$/ &&
3321 $hash_parent =~ m/^[0-9a-fA-F]{40}$/) {
3326 open $fd, "-|", git_cmd
(), "diff", '-p', @diff_opts, $hash_parent, $hash
3327 or die_error
(undef, "Open git-diff failed");
3329 die_error
('404 Not Found', "Missing one of the blob diff parameters")
3334 if ($format eq 'html') {
3336 $cgi->a({-href
=> href
(action
=>"blobdiff_plain",
3337 hash
=>$hash, hash_parent
=>$hash_parent,
3338 hash_base
=>$hash_base, hash_parent_base
=>$hash_parent_base,
3339 file_name
=>$file_name, file_parent
=>$file_parent)},
3341 git_header_html
(undef, $expires);
3342 if (defined $hash_base && (my %co = parse_commit
($hash_base))) {
3343 git_print_page_nav
('','', $hash_base,$co{'tree'},$hash_base, $formats_nav);
3344 git_print_header_div
('commit', esc_html
($co{'title'}), $hash_base);
3346 print "<div class=\"page_nav\"><br/>$formats_nav<br/></div>\n";
3347 print "<div class=\"title\">$hash vs $hash_parent</div>\n";
3349 if (defined $file_name) {
3350 git_print_page_path
($file_name, "blob", $hash_base);
3352 print "<div class=\"page_path\"></div>\n";
3355 } elsif ($format eq 'plain') {
3357 -type
=> 'text/plain',
3358 -charset
=> 'utf-8',
3359 -expires
=> $expires,
3360 -content_disposition
=> 'inline; filename="' . "$file_name" . '.patch"');
3362 print "X-Git-Url: " . $cgi->self_url() . "\n\n";
3365 die_error
(undef, "Unknown blobdiff format");
3369 if ($format eq 'html') {
3370 print "<div class=\"page_body\">\n";
3372 git_patchset_body
($fd, [ \
%diffinfo ], $hash_base, $hash_parent_base);
3375 print "</div>\n"; # class="page_body"
3379 while (my $line = <$fd>) {
3380 $line =~ s!a/($hash|$hash_parent)!'a/'.esc_html($diffinfo{'from_file'})!eg;
3381 $line =~ s!b/($hash|$hash_parent)!'b/'.esc_html($diffinfo{'to_file'})!eg;
3385 last if $line =~ m!^\+\+\+!;
3393 sub git_blobdiff_plain
{
3394 git_blobdiff
('plain');
3397 sub git_commitdiff
{
3398 my $format = shift || 'html';
3399 my %co = parse_commit
($hash);
3401 die_error
(undef, "Unknown commit object");
3403 if (!defined $hash_parent) {
3404 $hash_parent = $co{'parent'} || '--root';
3410 if ($format eq 'html') {
3411 open $fd, "-|", git_cmd
(), "diff-tree", '-r', @diff_opts,
3412 "--patch-with-raw", "--full-index", $hash_parent, $hash
3413 or die_error
(undef, "Open git-diff-tree failed");
3415 while (chomp(my $line = <$fd>)) {
3416 # empty line ends raw part of diff-tree output
3418 # filter out commit ID output
3419 push @difftree, $line
3420 unless $line =~ m/^[0-9a-fA-F]{40}$/;
3423 } elsif ($format eq 'plain') {
3424 open $fd, "-|", git_cmd
(), "diff-tree", '-r', @diff_opts,
3425 '-p', $hash_parent, $hash
3426 or die_error
(undef, "Open git-diff-tree failed");
3429 die_error
(undef, "Unknown commitdiff format");
3432 # non-textual hash id's can be cached
3434 if ($hash =~ m/^[0-9a-fA-F]{40}$/) {
3438 # write commit message
3439 if ($format eq 'html') {
3440 my $refs = git_get_references
();
3441 my $ref = format_ref_marker
($refs, $co{'id'});
3443 $cgi->a({-href
=> href
(action
=>"commitdiff_plain",
3444 hash
=>$hash, hash_parent
=>$hash_parent)},
3447 git_header_html
(undef, $expires);
3448 git_print_page_nav
('commitdiff','', $hash,$co{'tree'},$hash, $formats_nav);
3449 git_print_header_div
('commit', esc_html
($co{'title'}) . $ref, $hash);
3450 git_print_authorship
(\
%co);
3451 print "<div class=\"page_body\">\n";
3452 print "<div class=\"log\">\n";
3453 git_print_log
($co{'comment'}, -final_empty_line
=> 1, -remove_title
=> 1);
3454 print "</div>\n"; # class="log"
3456 } elsif ($format eq 'plain') {
3457 my $refs = git_get_references
("tags");
3458 my $tagname = git_get_rev_name_tags
($hash);
3459 my $filename = basename
($project) . "-$hash.patch";
3462 -type
=> 'text/plain',
3463 -charset
=> 'utf-8',
3464 -expires
=> $expires,
3465 -content_disposition
=> 'inline; filename="' . "$filename" . '"');
3466 my %ad = parse_date
($co{'author_epoch'}, $co{'author_tz'});
3469 Date: $ad{'rfc2822'} ($ad{'tz_local'})
3470 Subject: $co{'title'}
3472 print "X-Git-Tag: $tagname\n" if $tagname;
3473 print "X-Git-Url: " . $cgi->self_url() . "\n\n";
3475 foreach my $line (@{$co{'comment'}}) {
3482 if ($format eq 'html') {
3483 git_difftree_body
(\
@difftree, $hash, $hash_parent);
3486 git_patchset_body
($fd, \
@difftree, $hash, $hash_parent);
3488 print "</div>\n"; # class="page_body"
3491 } elsif ($format eq 'plain') {
3495 or print "Reading git-diff-tree failed\n";
3499 sub git_commitdiff_plain
{
3500 git_commitdiff
('plain');
3504 if (!defined $hash_base) {
3505 $hash_base = git_get_head_hash
($project);
3507 if (!defined $page) {
3511 my %co = parse_commit
($hash_base);
3513 die_error
(undef, "Unknown commit object");
3516 my $refs = git_get_references
();
3517 my $limit = sprintf("--max-count=%i", (100 * ($page+1)));
3519 if (!defined $hash && defined $file_name) {
3520 $hash = git_get_hash_by_path
($hash_base, $file_name);
3522 if (defined $hash) {
3523 $ftype = git_get_type
($hash);
3527 git_cmd
(), "rev-list", $limit, "--full-history", $hash_base, "--", $file_name
3528 or die_error
(undef, "Open git-rev-list-failed");
3529 my @revlist = map { chomp; $_ } <$fd>;
3531 or die_error
(undef, "Reading git-rev-list failed");
3533 my $paging_nav = '';
3536 $cgi->a({-href
=> href
(action
=>"history", hash
=>$hash, hash_base
=>$hash_base,
3537 file_name
=>$file_name)},
3539 $paging_nav .= " ⋅ " .
3540 $cgi->a({-href
=> href
(action
=>"history", hash
=>$hash, hash_base
=>$hash_base,
3541 file_name
=>$file_name, page
=>$page-1),
3542 -accesskey
=> "p", -title
=> "Alt-p"}, "prev");
3544 $paging_nav .= "first";
3545 $paging_nav .= " ⋅ prev";
3547 if ($#revlist >= (100 * ($page+1)-1)) {
3548 $paging_nav .= " ⋅ " .
3549 $cgi->a({-href
=> href
(action
=>"history", hash
=>$hash, hash_base
=>$hash_base,
3550 file_name
=>$file_name, page
=>$page+1),
3551 -accesskey
=> "n", -title
=> "Alt-n"}, "next");
3553 $paging_nav .= " ⋅ next";
3556 if ($#revlist >= (100 * ($page+1)-1)) {
3558 $cgi->a({-href
=> href
(action
=>"history", hash
=>$hash, hash_base
=>$hash_base,
3559 file_name
=>$file_name, page
=>$page+1),
3560 -title
=> "Alt-n"}, "next");
3564 git_print_page_nav
('history','', $hash_base,$co{'tree'},$hash_base, $paging_nav);
3565 git_print_header_div
('commit', esc_html
($co{'title'}), $hash_base);
3566 git_print_page_path
($file_name, $ftype, $hash_base);
3568 git_history_body
(\
@revlist, ($page * 100), $#revlist,
3569 $refs, $hash_base, $ftype, $next_link);
3575 if (!defined $searchtext) {
3576 die_error
(undef, "Text field empty");
3578 if (!defined $hash) {
3579 $hash = git_get_head_hash
($project);
3581 my %co = parse_commit
($hash);
3583 die_error
(undef, "Unknown commit object");
3586 $searchtype ||= 'commit';
3587 if ($searchtype eq 'pickaxe') {
3588 # pickaxe may take all resources of your box and run for several minutes
3589 # with every query - so decide by yourself how public you make this feature
3590 my ($have_pickaxe) = gitweb_check_feature
('pickaxe');
3591 if (!$have_pickaxe) {
3592 die_error
('403 Permission denied', "Permission denied");
3597 git_print_page_nav
('','', $hash,$co{'tree'},$hash);
3598 git_print_header_div
('commit', esc_html
($co{'title'}), $hash);
3600 print "<table cellspacing=\"0\">\n";
3602 if ($searchtype eq 'commit' or $searchtype eq 'author' or $searchtype eq 'committer') {
3604 open my $fd, "-|", git_cmd
(), "rev-list", "--header", "--parents", $hash or next;
3605 while (my $commit_text = <$fd>) {
3606 if (!grep m/$searchtext/i, $commit_text) {
3609 if ($searchtype eq 'author' && !grep m/\nauthor .*$searchtext/i, $commit_text) {
3612 if ($searchtype eq 'committer' && !grep m/\ncommitter .*$searchtext/i, $commit_text) {
3615 my @commit_lines = split "\n", $commit_text;
3616 my %co = parse_commit
(undef, \
@commit_lines);
3621 print "<tr class=\"dark\">\n";
3623 print "<tr class=\"light\">\n";
3626 print "<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n" .
3627 "<td><i>" . esc_html
(chop_str
($co{'author_name'}, 15, 5)) . "</i></td>\n" .
3629 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$co{'id'}), -class => "list subject"},
3630 esc_html
(chop_str
($co{'title'}, 50)) . "<br/>");
3631 my $comment = $co{'comment'};
3632 foreach my $line (@$comment) {
3633 if ($line =~ m/^(.*)($searchtext)(.*)$/i) {
3634 my $lead = esc_html
($1) || "";
3635 $lead = chop_str
($lead, 30, 10);
3636 my $match = esc_html
($2) || "";
3637 my $trail = esc_html
($3) || "";
3638 $trail = chop_str
($trail, 30, 10);
3639 my $text = "$lead<span class=\"match\">$match</span>$trail";
3640 print chop_str
($text, 80, 5) . "<br/>\n";
3644 "<td class=\"link\">" .
3645 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$co{'id'})}, "commit") .
3647 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$co{'tree'}, hash_base
=>$co{'id'})}, "tree");
3654 if ($searchtype eq 'pickaxe') {
3656 my $git_command = git_cmd_str
();
3657 open my $fd, "-|", "$git_command rev-list $hash | " .
3658 "$git_command diff-tree -r --stdin -S\'$searchtext\'";
3661 while (my $line = <$fd>) {
3662 if (%co && $line =~ m/^:([0-7]{6}) ([0-7]{6}) ([0-9a-fA-F]{40}) ([0-9a-fA-F]{40}) (.)\t(.*)$/) {
3665 $set{'from_id'} = $3;
3667 $set{'id'} = $set{'to_id'};
3668 if ($set{'id'} =~ m/0{40}/) {
3669 $set{'id'} = $set{'from_id'};
3671 if ($set{'id'} =~ m/0{40}/) {
3675 } elsif ($line =~ m/^([0-9a-fA-F]{40})$/){
3678 print "<tr class=\"dark\">\n";
3680 print "<tr class=\"light\">\n";
3683 print "<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n" .
3684 "<td><i>" . esc_html
(chop_str
($co{'author_name'}, 15, 5)) . "</i></td>\n" .
3686 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$co{'id'}),
3687 -class => "list subject"},
3688 esc_html
(chop_str
($co{'title'}, 50)) . "<br/>");
3689 while (my $setref = shift @files) {
3691 print $cgi->a({-href
=> href
(action
=>"blob", hash_base
=>$co{'id'},
3692 hash
=>$set{'id'}, file_name
=>$set{'file'}),
3694 "<span class=\"match\">" . esc_html
($set{'file'}) . "</span>") .
3698 "<td class=\"link\">" .
3699 $cgi->a({-href
=> href
(action
=>"commit", hash
=>$co{'id'})}, "commit") .
3701 $cgi->a({-href
=> href
(action
=>"tree", hash
=>$co{'tree'}, hash_base
=>$co{'id'})}, "tree");
3705 %co = parse_commit
($1);
3714 sub git_search_help
{
3716 git_print_page_nav
('','', $hash,$hash,$hash);
3719 <dt><b>commit</b></dt>
3720 <dd>The commit messages and authorship information will be scanned for the given string.</dd>
3721 <dt><b>author</b></dt>
3722 <dd>Name and e-mail of the change author and date of birth of the patch will be scanned for the given string.</dd>
3723 <dt><b>committer</b></dt>
3724 <dd>Name and e-mail of the committer and date of commit will be scanned for the given string.</dd>
3726 my ($have_pickaxe) = gitweb_check_feature
('pickaxe');
3727 if ($have_pickaxe) {
3729 <dt><b>pickaxe</b></dt>
3730 <dd>All commits that caused the string to appear or disappear from any file (changes that
3731 added, removed or "modified" the string) will be listed. This search can take a while and
3732 takes a lot of strain on the server, so please use it wisely.</dd>
3740 my $head = git_get_head_hash
($project);
3741 if (!defined $hash) {
3744 if (!defined $page) {
3747 my $refs = git_get_references
();
3749 my $limit = sprintf("--max-count=%i", (100 * ($page+1)));
3750 open my $fd, "-|", git_cmd
(), "rev-list", $limit, $hash
3751 or die_error
(undef, "Open git-rev-list failed");
3752 my @revlist = map { chomp; $_ } <$fd>;
3755 my $paging_nav = format_paging_nav
('shortlog', $hash, $head, $page, $#revlist);
3757 if ($#revlist >= (100 * ($page+1)-1)) {
3759 $cgi->a({-href
=> href
(action
=>"shortlog", hash
=>$hash, page
=>$page+1),
3760 -title
=> "Alt-n"}, "next");
3765 git_print_page_nav
('shortlog','', $hash,$hash,$hash, $paging_nav);
3766 git_print_header_div
('summary', $project);
3768 git_shortlog_body
(\
@revlist, ($page * 100), $#revlist, $refs, $next_link);
3773 ## ......................................................................
3774 ## feeds (RSS, OPML)
3777 # http://www.notestips.com/80256B3A007F2692/1/NAMO5P9UPQ
3778 open my $fd, "-|", git_cmd
(), "rev-list", "--max-count=150", git_get_head_hash
($project)
3779 or die_error
(undef, "Open git-rev-list failed");
3780 my @revlist = map { chomp; $_ } <$fd>;
3781 close $fd or die_error
(undef, "Reading git-rev-list failed");
3782 print $cgi->header(-type
=> 'text/xml', -charset
=> 'utf-8');
3784 <?xml version="1.0" encoding="utf-8"?>
3785 <rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/">
3787 <title>$project $my_uri $my_url</title>
3788 <link>${\esc_html("$my_url?p=$project;a=summary")}</link>
3789 <description>$project log</description>
3790 <language>en</language>
3793 for (my $i = 0; $i <= $#revlist; $i++) {
3794 my $commit = $revlist[$i];
3795 my %co = parse_commit
($commit);
3796 # we read 150, we always show 30 and the ones more recent than 48 hours
3797 if (($i >= 20) && ((time - $co{'committer_epoch'}) > 48*60*60)) {
3800 my %cd = parse_date
($co{'committer_epoch'});
3801 open $fd, "-|", git_cmd
(), "diff-tree", '-r', @diff_opts,
3802 $co{'parent'}, $co{'id'}
3804 my @difftree = map { chomp; $_ } <$fd>;
3809 sprintf("%d %s %02d:%02d", $cd{'mday'}, $cd{'month'}, $cd{'hour'}, $cd{'minute'}) . " - " . esc_html
($co{'title'}) .
3811 "<author>" . esc_html
($co{'author'}) . "</author>\n" .
3812 "<pubDate>$cd{'rfc2822'}</pubDate>\n" .
3813 "<guid isPermaLink=\"true\">" . esc_html
("$my_url?p=$project;a=commit;h=$commit") . "</guid>\n" .
3814 "<link>" . esc_html
("$my_url?p=$project;a=commit;h=$commit") . "</link>\n" .
3815 "<description>" . esc_html
($co{'title'}) . "</description>\n" .
3816 "<content:encoded>" .
3818 my $comment = $co{'comment'};
3819 foreach my $line (@$comment) {
3820 $line = to_utf8
($line);
3821 print "$line<br/>\n";
3824 foreach my $line (@difftree) {
3825 if (!($line =~ m/^:([0-7]{6}) ([0-7]{6}) ([0-9a-fA-F]{40}) ([0-9a-fA-F]{40}) (.)([0-9]{0,3})\t(.*)$/)) {
3828 my $file = esc_html
(unquote
($7));
3829 $file = to_utf8
($file);
3830 print "$file<br/>\n";
3833 "</content:encoded>\n" .
3836 print "</channel></rss>";
3840 my @list = git_get_projects_list
();
3842 print $cgi->header(-type
=> 'text/xml', -charset
=> 'utf-8');
3844 <?xml version="1.0" encoding="utf-8"?>
3845 <opml version="1.0">
3847 <title>$site_name OPML Export</title>
3850 <outline text="git RSS feeds">
3853 foreach my $pr (@list) {
3855 my $head = git_get_head_hash
($proj{'path'});
3856 if (!defined $head) {
3859 $git_dir = "$projectroot/$proj{'path'}";
3860 my %co = parse_commit
($head);
3865 my $path = esc_html
(chop_str
($proj{'path'}, 25, 5));
3866 my $rss = "$my_url?p=$proj{'path'};a=rss";
3867 my $html = "$my_url?p=$proj{'path'};a=summary";
3868 print "<outline type=\"rss\" text=\"$path\" title=\"$path\" xmlUrl=\"$rss\" htmlUrl=\"$html\"/>\n";