gitweb: Fix fixed string (non-regexp) project search

Use $search_regexp, where regex metacharacters are quoted, for
searching projects list, rather than $searchtext, which contains
original search term.

Reported-by: Ramsay Jones <ramsay@ramsay1.demon.co.uk>
Signed-off-by: Jakub Narebski <jnareb@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Jakub Narebski 2012-03-02 23:34:24 +01:00 committed by Junio C Hamano
parent f174a2583c
commit e65ceb61cd

View File

@ -2905,10 +2905,10 @@ sub filter_forks_from_projects_list {
sub search_projects_list { sub search_projects_list {
my ($projlist, %opts) = @_; my ($projlist, %opts) = @_;
my $tagfilter = $opts{'tagfilter'}; my $tagfilter = $opts{'tagfilter'};
my $searchtext = $opts{'searchtext'}; my $search_re = $opts{'search_regexp'};
return @$projlist return @$projlist
unless ($tagfilter || $searchtext); unless ($tagfilter || $search_re);
my @projects; my @projects;
PROJECT: PROJECT:
@ -2920,10 +2920,10 @@ sub search_projects_list {
grep { lc($_) eq lc($tagfilter) } keys %{$pr->{'ctags'}}; grep { lc($_) eq lc($tagfilter) } keys %{$pr->{'ctags'}};
} }
if ($searchtext) { if ($search_re) {
next unless next unless
$pr->{'path'} =~ /$searchtext/ || $pr->{'path'} =~ /$search_re/ ||
$pr->{'descr_long'} =~ /$searchtext/; $pr->{'descr_long'} =~ /$search_re/;
} }
push @projects, $pr; push @projects, $pr;
@ -5089,7 +5089,7 @@ sub git_project_list_body {
my $show_ctags = gitweb_check_feature('ctags'); my $show_ctags = gitweb_check_feature('ctags');
my $tagfilter = $show_ctags ? $cgi->param('by_tag') : undef; my $tagfilter = $show_ctags ? $cgi->param('by_tag') : undef;
$check_forks = undef $check_forks = undef
if ($tagfilter || $searchtext); if ($tagfilter || $search_regexp);
# filtering out forks before filling info allows to do less work # filtering out forks before filling info allows to do less work
@projects = filter_forks_from_projects_list(\@projects) @projects = filter_forks_from_projects_list(\@projects)
@ -5097,9 +5097,9 @@ sub git_project_list_body {
@projects = fill_project_list_info(\@projects); @projects = fill_project_list_info(\@projects);
# searching projects require filling to be run before it # searching projects require filling to be run before it
@projects = search_projects_list(\@projects, @projects = search_projects_list(\@projects,
'searchtext' => $searchtext, 'search_regexp' => $search_regexp,
'tagfilter' => $tagfilter) 'tagfilter' => $tagfilter)
if ($tagfilter || $searchtext); if ($tagfilter || $search_regexp);
$order ||= $default_projects_order; $order ||= $default_projects_order;
$from = 0 unless defined $from; $from = 0 unless defined $from;