Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
bugzilla
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Ivan Ivlev
bugzilla
Commits
6aad3a09
Commit
6aad3a09
authored
Feb 18, 2011
by
David Lawrence
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 580490 - Quicksearch should optionally not search comments
r/a=mkanat
parent
8cef0a14
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
3 deletions
+8
-3
Install.pm
Bugzilla/Install.pm
+2
-0
Quicksearch.pm
Bugzilla/Search/Quicksearch.pm
+5
-3
setting-descs.none.tmpl
template/en/default/global/setting-descs.none.tmpl
+1
-0
No files found.
Bugzilla/Install.pm
View file @
6aad3a09
...
...
@@ -88,6 +88,8 @@ sub SETTINGS {
default
=>
'before_comments'
},
# 2008-08-27 LpSolit@gmail.com -- Bug 182238
timezone
=>
{
subclass
=>
'Timezone'
,
default
=>
'local'
},
# 2011-02-07 dkl@mozilla.com -- Bug 580490
quicksearch_fulltext
=>
{
options
=>
[
'on'
,
'off'
],
default
=>
'on'
},
}
};
...
...
Bugzilla/Search/Quicksearch.pm
View file @
6aad3a09
...
...
@@ -128,7 +128,7 @@ use constant COMPONENT_EXCEPTIONS => (
);
# Quicksearch-wide globals for boolean charts.
our
(
$chart
,
$and
,
$or
);
our
(
$chart
,
$and
,
$or
,
$fulltext
);
sub
quicksearch
{
my
(
$searchstring
)
=
(
@_
);
...
...
@@ -142,6 +142,8 @@ sub quicksearch {
$searchstring
=~
s/(^[\s,]+|[\s,]+$)//g
;
ThrowUserError
(
'buglist_parameters_required'
)
unless
(
$searchstring
);
$fulltext
=
Bugzilla
->
user
->
settings
->
{
'quicksearch_fulltext'
}
->
{
'value'
}
eq
'on'
?
1
:
0
;
if
(
$searchstring
=~
m/^[0-9,\s]*$/
)
{
_bug_numbers_only
(
$searchstring
);
}
...
...
@@ -317,7 +319,7 @@ sub _handle_special_first_chars {
if
(
$firstChar
eq
'#'
)
{
addChart
(
'short_desc'
,
'substring'
,
$baseWord
,
$negate
);
addChart
(
'content'
,
'matches'
,
_matches_phrase
(
$baseWord
),
$negate
);
addChart
(
'content'
,
'matches'
,
_matches_phrase
(
$baseWord
),
$negate
)
if
$fulltext
;
return
1
;
}
if
(
$firstChar
eq
':'
)
{
...
...
@@ -489,7 +491,7 @@ sub _default_quicksearch_word {
addChart
(
'alias'
,
'substring'
,
$word
,
$negate
);
addChart
(
'short_desc'
,
'substring'
,
$word
,
$negate
);
addChart
(
'status_whiteboard'
,
'substring'
,
$word
,
$negate
);
addChart
(
'content'
,
'matches'
,
_matches_phrase
(
$word
),
$negate
);
addChart
(
'content'
,
'matches'
,
_matches_phrase
(
$word
),
$negate
)
if
$fulltext
;
}
sub
_handle_urls
{
...
...
template/en/default/global/setting-descs.none.tmpl
View file @
6aad3a09
...
...
@@ -48,6 +48,7 @@
"after_comments" => "After other comments",
"timezone" => "Timezone used to display dates and times",
"local" => "Same as the server",
"quicksearch_fulltext" => "Include comments when performing quick searches (slower)",
}
%]
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment