]> Lady’s Gitweb - Gitweb/commitdiff
gitweb: Add author information to commitdiff view
authorJakub Narebski <redacted>
Mon, 28 Aug 2006 12:48:12 +0000 (14:48 +0200)
committerLady <redacted>
Mon, 6 Apr 2026 04:07:10 +0000 (00:07 -0400)
Add subroutine git_print_authorship to print author and date of
commit, div.author_date style to CSS, and use them in git_commitdiff.

Signed-off-by: Jakub Narebski <redacted>
Signed-off-by: Junio C Hamano <redacted>
gitweb.css
gitweb.perl

index 39cc157f53c108aeb39a16363b27df1183df917aae22e125d77be181a33c4d35..27f66a1c51d69db62600c09c958382a0acd693ea8ebf08ac9f4b6901d931763a 100644 (file)
@@ -116,6 +116,13 @@ div.list_head {
        font-style: italic;
 }
 
        font-style: italic;
 }
 
+div.author_date {
+       padding: 8px;
+       border: solid #d9d8d1;
+       border-width: 0px 0px 1px 0px;
+       font-style: italic;
+}
+
 a.list {
        text-decoration: none;
        color: #000000;
 a.list {
        text-decoration: none;
        color: #000000;
index 39678ecf82b6129644719980e8d3321c59211f2569c6bf84bdbf10150acdff41..1cc130ff9305deb5c084db8b50d68e8d595ddd74254263a82936c716bc6573a6 100755 (executable)
@@ -1354,6 +1354,16 @@ sub git_print_header_div {
              "\n</div>\n";
 }
 
              "\n</div>\n";
 }
 
+#sub git_print_authorship (\%) {
+sub git_print_authorship {
+       my $co = shift;
+
+       my %ad = parse_date($co->{'author_epoch'});
+       print "<div class=\"author_date\">" .
+             esc_html($co->{'author_name'}) .
+             " [$ad{'rfc2822'}]</div>\n";
+}
+
 sub git_print_page_path {
        my $name = shift;
        my $type = shift;
 sub git_print_page_path {
        my $name = shift;
        my $type = shift;
@@ -2933,6 +2943,7 @@ sub git_commitdiff {
                git_header_html(undef, $expires);
                git_print_page_nav('commitdiff','', $hash,$co{'tree'},$hash, $formats_nav);
                git_print_header_div('commit', esc_html($co{'title'}) . $ref, $hash);
                git_header_html(undef, $expires);
                git_print_page_nav('commitdiff','', $hash,$co{'tree'},$hash, $formats_nav);
                git_print_header_div('commit', esc_html($co{'title'}) . $ref, $hash);
+               git_print_authorship(\%co);
                print "<div class=\"page_body\">\n";
                print "<div class=\"log\">\n";
                git_print_simplified_log($co{'comment'}, 1); # skip title
                print "<div class=\"page_body\">\n";
                print "<div class=\"log\">\n";
                git_print_simplified_log($co{'comment'}, 1); # skip title
This page took 0.271134 seconds and 4 git commands to generate.