summaryrefslogtreecommitdiff
path: root/gitweb
diff options
context:
space:
mode:
authorJakub Narebski <jnareb@gmail.com>2012-02-27 01:55:20 (GMT)
committerJunio C Hamano <gitster@pobox.com>2012-02-27 06:02:56 (GMT)
commit07a40062aebc184f5aa1d6750fe80ab6fe120cc8 (patch)
treeab901ae5ce8409a80212c4f175aad21cd7ec58e9 /gitweb
parent337da8d2b0b8a8a86f0aa969bba2756126d6c090 (diff)
downloadgit-07a40062aebc184f5aa1d6750fe80ab6fe120cc8.zip
git-07a40062aebc184f5aa1d6750fe80ab6fe120cc8.tar.gz
git-07a40062aebc184f5aa1d6750fe80ab6fe120cc8.tar.bz2
gitweb: Highlight matched part of project name when searching projects
Use esc_html_match_hl() introduced in previous commit to escape HTML and mark match, using span element with 'match' class. Currently only the 'path' part (i.e. the project name) is highlighted; match might be on the project description. Highlighting match in description is left for next commit. The code makes use of the fact that defined $search_regexp means that there was search going on. Signed-off-by: Jakub Narebski <jnareb@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'gitweb')
-rwxr-xr-xgitweb/gitweb.perl4
1 files changed, 3 insertions, 1 deletions
diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl
index f8c5b6a..a0c6a9b 100755
--- a/gitweb/gitweb.perl
+++ b/gitweb/gitweb.perl
@@ -5400,7 +5400,9 @@ sub git_project_list_rows {
print "</td>\n";
}
print "<td>" . $cgi->a({-href => href(project=>$pr->{'path'}, action=>"summary"),
- -class => "list"}, esc_html($pr->{'path'})) . "</td>\n" .
+ -class => "list"},
+ esc_html_match_hl($pr->{'path'}, $search_regexp)) .
+ "</td>\n" .
"<td>" . $cgi->a({-href => href(project=>$pr->{'path'}, action=>"summary"),
-class => "list", -title => $pr->{'descr_long'}},
esc_html($pr->{'descr'})) . "</td>\n" .