add project count
authorStricted <Stricted@nexus-irc.de>
Fri, 14 Sep 2012 21:13:07 +0000 (23:13 +0200)
committerStricted <Stricted@nexus-irc.de>
Fri, 14 Sep 2012 21:13:07 +0000 (23:13 +0200)
index.cgi

index 97deaa8e9c432511568528371f147e59dd8f732b..55ca54e197493f22950ad8b0a77080179d73602e 100644 (file)
--- a/index.cgi
+++ b/index.cgi
@@ -4637,7 +4637,7 @@ sub git_project_list_body {
 
        my $check_forks = gitweb_check_feature('forks');
        my @projects = fill_project_list_info($projlist, $check_forks);
-
+       my $count;
        $order ||= $default_projects_order;
        $from = 0 unless defined $from;
        $to = $#projects if (!defined $to || $#projects < $to);
@@ -4682,6 +4682,7 @@ sub git_project_list_body {
        my $alternate = 1;
        my $tagfilter = $cgi->param('by_tag');
        for (my $i = $from; $i <= $to; $i++) {
+               $count++;
                my $pr = $projects[$i];
 
                next if $tagfilter and $show_ctags and not grep { lc $_ eq lc $tagfilter } keys %{$pr->{'ctags'}};
@@ -4727,6 +4728,7 @@ sub git_project_list_body {
                      "</td>\n" .
                      "</tr>\n";
        }
+       print "<tr><td>&nbsp;</td><td>&nbsp;</td><td>".$count." projects found</td><td>&nbsp;</td><td>&nbsp;</td></tr>";
        if (defined $extra) {
                print "<tr>\n";
                if ($check_forks) {