Skip to content

Commit

Permalink
gitweb: add a "string" variant of print_sort_th
Browse files Browse the repository at this point in the history
Add a function (named format_sort_th) that returns the string that
print_sort_th would print.

Signed-off-by: John 'Warthog9' Hawley <warthog9@kernel.org>
Signed-off-by: Jakub Narebski <jnareb@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
John 'Warthog9' Hawley authored and Junio C Hamano committed Jan 30, 2010
1 parent 0cf207f commit 1ee4b4e
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions gitweb/gitweb.perl
Original file line number Diff line number Diff line change
Expand Up @@ -4347,17 +4347,24 @@ sub fill_project_list_info {
# print 'sort by' <th> element, generating 'sort by $name' replay link
# if that order is not selected
sub print_sort_th {
print format_sort_th(@_);
}

sub format_sort_th {
my ($name, $order, $header) = @_;
my $sort_th = "";
$header ||= ucfirst($name);

if ($order eq $name) {
print "<th>$header</th>\n";
$sort_th .= "<th>$header</th>\n";
} else {
print "<th>" .
$cgi->a({-href => href(-replay=>1, order=>$name),
-class => "header"}, $header) .
"</th>\n";
$sort_th .= "<th>" .
$cgi->a({-href => href(-replay=>1, order=>$name),
-class => "header"}, $header) .
"</th>\n";
}

return $sort_th;
}

sub git_project_list_body {
Expand Down

0 comments on commit 1ee4b4e

Please sign in to comment.