summaryrefslogtreecommitdiffstats
path: root/buglist.cgi
diff options
context:
space:
mode:
authorterry%mozilla.org <>2000-01-23 02:50:00 +0100
committerterry%mozilla.org <>2000-01-23 02:50:00 +0100
commit2181b1425ce5acd7dd491a8ec60b51153c0580c3 (patch)
tree9075b654efd73c89b3c7fac99d5fecf4aa8590b0 /buglist.cgi
parent91f9bc0ff29f70e6eb610415c3c05848c765b683 (diff)
downloadbugzilla-2181b1425ce5acd7dd491a8ec60b51153c0580c3.tar.gz
bugzilla-2181b1425ce5acd7dd491a8ec60b51153c0580c3.tar.xz
Patch by Christine Begle <cbegle@mozilla.org>>, with heavy
modifications by me -- let you query for "any words" and "all words", as well as the existing substring and regexp stuff.
Diffstat (limited to 'buglist.cgi')
-rwxr-xr-xbuglist.cgi37
1 files changed, 32 insertions, 5 deletions
diff --git a/buglist.cgi b/buglist.cgi
index 7b53b9a15..6f791a6df 100755
--- a/buglist.cgi
+++ b/buglist.cgi
@@ -475,13 +475,36 @@ if (defined $ref && 0 < @$ref) {
}
}
+sub GetByWordList {
+ my ($field, $strs, $verb) = (@_);
+ my @list;
+
+ foreach my $w (split(/[\s,]+/, $strs)) {
+ my $word = $w;
+ if ($word ne "") {
+ $word =~ tr/A-Z/a-z/;
+ $word = SqlQuote(quotemeta($word));
+ $word =~ s/^'//;
+ $word =~ s/'$//;
+ $word = '(^|[^a-z0-9])' . $word . '($|[^a-z0-9])';
+ push(@list, "lower($field) regexp '$word'");
+ }
+ }
+
+ if (0 == @list) {
+ return "";
+ }
+
+ return "and (" . join(" $verb ", @list) . ")\n";
+}
+
foreach my $f ("short_desc", "long_desc", "bug_file_loc",
"status_whiteboard") {
if (defined $::FORM{$f}) {
my $s = trim($::FORM{$f});
if ($s ne "") {
my $n = $f;
- $s = SqlQuote($s);
+ my $q = SqlQuote($s);
my $type = $::FORM{$f . "_type"};
if ($f eq "long_desc") {
# Patch in the longdescs table.
@@ -490,13 +513,17 @@ foreach my $f ("short_desc", "long_desc", "bug_file_loc",
$n = "longdescs.thetext";
}
if ($type eq "regexp") {
- $query .= "and $n regexp $s\n";
+ $query .= "and $n regexp $q\n";
} elsif ($type eq "notregexp") {
- $query .= "and $n not regexp $s\n";
+ $query .= "and $n not regexp $q\n";
} elsif ($type eq "casesubstring") {
- $query .= "and instr($n, $s)\n";
+ $query .= "and instr($n, $q)\n";
+ } elsif ($type eq "allwords") {
+ $query .= GetByWordList($f, $s, "and");
+ } elsif ($type eq "anywords") {
+ $query .= GetByWordList($f, $s, "or");
} else {
- $query .= "and instr(lower($n), lower($s))\n";
+ $query .= "and instr(lower($n), lower($q))\n";
}
}
}