diff options
author | Luben Tuikov <ltuikov@yahoo.com> | 2006-10-04 00:13:38 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-10-04 14:56:50 -0700 |
commit | c8aeaaf7fc7dd93a284218e6a2b6e96b90e3100c (patch) | |
tree | 4757c3220fef3f66b11268aa9166aaf0863e3105 /gitweb | |
parent | 9dc5f8c9c2a10f77ecfa448c93da6ceec759df73 (diff) | |
download | git-c8aeaaf7fc7dd93a284218e6a2b6e96b90e3100c.tar.gz git-c8aeaaf7fc7dd93a284218e6a2b6e96b90e3100c.tar.xz |
gitweb: blame: Mouse-over commit-8 shows author and date
Signed-off-by: Luben Tuikov <ltuikov@yahoo.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'gitweb')
-rwxr-xr-x | gitweb/gitweb.perl | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl index dc21cd647..a99fabf4a 100755 --- a/gitweb/gitweb.perl +++ b/gitweb/gitweb.perl @@ -2490,11 +2490,9 @@ sub git_blame2 { <tr><th>Commit</th><th>Line</th><th>Data</th></tr> HTML while (<$fd>) { - /^([0-9a-fA-F]{40}).*?(\d+)\)\s{1}(\s*.*)/; - my $full_rev = $1; + my ($full_rev, $author, $date, $lineno, $data) = + /^([0-9a-f]{40}).*?\s\((.*?)\s+([-\d]+ [:\d]+ [-+\d]+)\s+(\d+)\)\s(.*)/; my $rev = substr($full_rev, 0, 8); - my $lineno = $2; - my $data = $3; my $print_c8 = 0; if (!defined $last_rev) { @@ -2506,7 +2504,11 @@ HTML $print_c8 = 1; } print "<tr class=\"$rev_color[$current_color]\">\n"; - print "<td class=\"sha1\">"; + print "<td class=\"sha1\""; + if ($print_c8 == 1) { + print " title=\"$author, $date\""; + } + print ">"; if ($print_c8 == 1) { print $cgi->a({-href => href(action=>"commit", hash=>$full_rev, file_name=>$file_name)}, esc_html($rev)); |