]> git.ipfire.org Git - thirdparty/git.git/commitdiff
v021
authorKay Sievers <kay.sievers@suse.de>
Sun, 7 Aug 2005 18:03:14 +0000 (20:03 +0200)
committerKay Sievers <kay.sievers@suse.de>
Sun, 7 Aug 2005 18:03:14 +0000 (20:03 +0200)
gitweb.pl

index dd5fbdc2a8aa4cef297dc464a0e5e1e9ec9a8962..6d604d732e1e9440f929a6d2541b20f1d17a93b4 100755 (executable)
--- a/gitweb.pl
+++ b/gitweb.pl
@@ -157,6 +157,47 @@ sub git_head {
        return $head;
 }
 
+sub git_commit {
+       my $commit = shift;
+       my %co;
+       my @parents;
+
+       open my $fd, "-|", "$gitbin/cat-file", "commit", $commit;
+       while (my $line = <$fd>) {
+               chomp($line);
+               last if $line eq "";
+               if ($line =~ m/^tree (.*)$/) {
+                       $co{'tree'} = $1;
+               } elsif ($line =~ m/^parent (.*)$/) {
+                       push @parents, $1;
+               } elsif ($line =~ m/^committer (.*>) ([0-9]+) (.*)$/) {
+                       $co{'committer'} = $1;
+                       $co{'committer_time'} = $2;
+                       $co{'committer_timezone'} = $3;
+               } elsif ($line =~ m/^author (.*>) ([0-9]+) (.*)$/) {
+                       $co{'$author'} = $1;
+                       $co{'$author_time'} = $2;
+                       $co{'$author_timezone'} = $3;
+               }
+       }
+       my $shortlog = <$fd>;
+       chomp($shortlog);
+       $co{'shortlog'} = escapeHTML($shortlog);
+       my $comment = $shortlog . "<br/>";
+       while (my $line = <$fd>) {
+                       chomp($line);
+                       if ($line =~ m/signed-off-by:/i) {
+                               $comment .= '<div class="signed_off">' . escapeHTML($line) . "<br/></div>\n";
+                       } else {
+                               $comment .= escapeHTML($line) . "<br/>\n";
+                       }
+       }
+       $co{'comment'} = $comment;
+       close $fd;
+
+       return %co;
+}
+
 sub git_diff {
        my $old_name = shift || "/dev/null";
        my $new_name = shift || "/dev/null";
@@ -408,11 +449,10 @@ if ($action eq "blob") {
                        print "</td>";
                        print "</tr>\n";
                } elsif ($action eq "rss") {
-                       if ($i < 12) {
-                               print "<item>\n\t<title>$age_string: $shortlog</title>\n";
-                               print "\t<link> " . $cgi->url() . "/$project/commit/$commit</link>\n";
-                               print "</item>\n";
-                       }
+                       last if ($i >= 12);
+                       print "<item>\n\t<title>$age_string: $shortlog</title>\n";
+                       print "\t<link> " . $cgi->url() . "/$project/commit/$commit</link>\n";
+                       print "</item>\n";
                }
        }
        if ($action eq "log") {