diff options
author | Jakub Narebski <jnareb@gmail.com> | 2008-12-09 23:46:16 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-12-09 22:09:11 -0800 |
commit | 4a24bfc22081a6c2771b62d464222f81c470192c (patch) | |
tree | 586758a831991288df8c03d38657ae24c0f5ff07 /gitweb | |
parent | f371d3ea3ca7933df787230f2eb9b67901bde9d3 (diff) | |
download | git-4a24bfc22081a6c2771b62d464222f81c470192c.tar.gz git-4a24bfc22081a6c2771b62d464222f81c470192c.tar.xz |
gitweb: Move 'lineno' id from link to row element in git_blame
Move l<line number> ID from <a> link element inside table row (inside
cell element for column with line numbers), to encompassing <tr> table
row element. It was done to make it easier to manipulate result HTML
with DOM, and to be able write 'blame_incremental' view with the same,
or nearly the same result.
Signed-off-by: Jakub Narebski <jnareb@gmail.com>
Acked-by: Luben Tuikov <ltuikov@yahoo.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'gitweb')
-rwxr-xr-x | gitweb/gitweb.perl | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl index 951739210..e01e1afe9 100755 --- a/gitweb/gitweb.perl +++ b/gitweb/gitweb.perl @@ -4645,7 +4645,7 @@ HTML if ($group_size) { $current_color = ++$current_color % $num_colors; } - print "<tr class=\"$rev_color[$current_color]\">\n"; + print "<tr id=\"l$lineno\" class=\"$rev_color[$current_color]\">\n"; if ($group_size) { print "<td class=\"sha1\""; print " title=\"". esc_html($author) . ", $date\""; @@ -4667,7 +4667,6 @@ HTML hash_base => $parent_commit); print "<td class=\"linenr\">"; print $cgi->a({ -href => "$blamed#l$orig_lineno", - -id => "l$lineno", -class => "linenr" }, esc_html($lineno)); print "</td>"; |