Uses ugly workaround with $bold argument because style is not set via CSS, but via presentation element <b>...</b>. Signed-off-by: Jakub Narebski <jnareb@xxxxxxxxx> --- Probably needs better name, too gitweb/gitweb.perl | 39 +++++++++++++++++++++++---------------- 1 files changed, 23 insertions(+), 16 deletions(-) diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl index f402c8f..7ea52b1 100755 --- a/gitweb/gitweb.perl +++ b/gitweb/gitweb.perl @@ -1062,6 +1062,27 @@ sub git_print_page_path { } ## ...................................................................... +## functions printing or outputting HTML: inline elements + +# print, perhaps shortened and with markers, title line +sub print_title_html { + # $bold argument is workaround until style will be set via CSS + my ($long, $short, $query, $bold, $extra) = @_; + $extra = '' unless defined($extra); + + if (length($short) < length($long)) { + print $cgi->a({-href => "$my_uri?" . esc_param($query), + -class => "list", -title => $long}, + ($bold ? "<b>" : "") . esc_html($short) . $extra . ($bold ? "</b>" : "")); + } else { + print $cgi->a({-href => "$my_uri?" . esc_param($query), + -class => "list"}, + ($bold ? "<b>" : "") . esc_html($long) . $extra . ($bold ? "</b>" : "")); + } +} + + +## ...................................................................... ## functions printing large fragments of HTML sub git_shortlog_body { @@ -1087,15 +1108,7 @@ sub git_shortlog_body { print "<td title=\"$co{'age_string_age'}\"><i>$co{'age_string_date'}</i></td>\n" . "<td><i>" . esc_html(chop_str($co{'author_name'}, 10)) . "</i></td>\n" . "<td>"; - if (length($co{'title_short'}) < length($co{'title'})) { - print $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=commit;h=$commit"), - -class => "list", -title => "$co{'title'}"}, - "<b>" . esc_html($co{'title_short'}) . "$ref</b>"); - } else { - print $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=commit;h=$commit"), - -class => "list"}, - "<b>" . esc_html($co{'title'}) . "$ref</b>"); - } + print_title_html($co{'title'}, $co{'title_short'}, "p=$project;a=commit;h=$commit", 1, $ref); print "</td>\n" . "<td class=\"link\">" . $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=commit;h=$commit")}, "commit") . " | " . @@ -1141,13 +1154,7 @@ sub git_tags_body { "</td>\n" . "<td>"; if (defined $comment) { - if (length($comment_short) < length($comment)) { - print $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=tag;h=$tag{'id'}"), - -class => "list", -title => $comment}, $comment_short); - } else { - print $cgi->a({-href => "$my_uri?" . esc_param("p=$project;a=tag;h=$tag{'id'}"), - -class => "list"}, $comment); - } + print_title_html($comment, $comment_short, "p=$project;a=tag;h=$tag{'id'}"); } print "</td>\n" . "<td class=\"selflink\">"; -- 1.4.1.1 - : send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html