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
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
bugzilla
Commits
35bbe927
Commit
35bbe927
authored
Jul 13, 2010
by
Max Kanat-Alexander
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 578323: Remove the special parsing of "changedin" from Search.pm.
r=mkanat, a=mkanat (module owner)
parent
9b37668c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
31 deletions
+12
-31
Search.pm
Bugzilla/Search.pm
+12
-31
No files found.
Bugzilla/Search.pm
View file @
35bbe927
...
@@ -165,9 +165,6 @@ use constant OPERATOR_FIELD_OVERRIDE => {
...
@@ -165,9 +165,6 @@ use constant OPERATOR_FIELD_OVERRIDE => {
bug_group
=>
{
bug_group
=>
{
_non_changed
=>
\&
_bug_group_nonchanged
,
_non_changed
=>
\&
_bug_group_nonchanged
,
},
},
changedin
=>
{
_default
=>
\&
_changedin_days_elapsed
,
},
classification
=>
{
classification
=>
{
_non_changed
=>
\&
_classification_nonchanged
,
_non_changed
=>
\&
_classification_nonchanged
,
},
},
...
@@ -180,7 +177,7 @@ use constant OPERATOR_FIELD_OVERRIDE => {
...
@@ -180,7 +177,7 @@ use constant OPERATOR_FIELD_OVERRIDE => {
_default
=>
sub
{
ThrowUserError
(
"search_content_without_matches"
);
},
_default
=>
sub
{
ThrowUserError
(
"search_content_without_matches"
);
},
},
},
days_elapsed
=>
{
days_elapsed
=>
{
_default
=>
\&
_
changedin_
days_elapsed
,
_default
=>
\&
_days_elapsed
,
},
},
dependson
=>
{
dependson
=>
{
_non_changed
=>
\&
_dependson_nonchanged
,
_non_changed
=>
\&
_dependson_nonchanged
,
...
@@ -269,6 +266,7 @@ use constant SPECIAL_PARSING => {
...
@@ -269,6 +266,7 @@ use constant SPECIAL_PARSING => {
# Backwards compatibility for times that we changed the names of fields.
# Backwards compatibility for times that we changed the names of fields.
use
constant
FIELD_MAP
=>
{
use
constant
FIELD_MAP
=>
{
changedin
=>
'days_elapsed'
,
long_desc
=>
'longdesc'
,
long_desc
=>
'longdesc'
,
};
};
...
@@ -737,6 +735,15 @@ sub _parse_basic_fields {
...
@@ -737,6 +735,15 @@ sub _parse_basic_fields {
my
$params
=
$self
->
_params
;
my
$params
=
$self
->
_params
;
my
$chart_fields
=
$self
->
_chart_fields
;
my
$chart_fields
=
$self
->
_chart_fields
;
foreach
my
$old_name
(
keys
%
{
FIELD_MAP
()
})
{
if
(
defined
$params
->
param
(
$old_name
))
{
my
@value
=
$params
->
param
(
$old_name
);
$params
->
delete
(
$old_name
);
my
$new_name
=
FIELD_MAP
->
{
$old_name
};
$params
->
param
(
$new_name
,
@value
);
}
}
my
@charts
;
my
@charts
;
foreach
my
$field_name
(
keys
%
$chart_fields
)
{
foreach
my
$field_name
(
keys
%
$chart_fields
)
{
# CGI params shouldn't have periods in them, so we only accept
# CGI params shouldn't have periods in them, so we only accept
...
@@ -946,32 +953,6 @@ sub init {
...
@@ -946,32 +953,6 @@ sub init {
my
@chfield
=
$params
->
param
(
'chfield'
);
my
@chfield
=
$params
->
param
(
'chfield'
);
my
$chvalue
=
trim
(
$params
->
param
(
'chfieldvalue'
))
||
''
;
my
$chvalue
=
trim
(
$params
->
param
(
'chfieldvalue'
))
||
''
;
# 2003-05-20: The 'changedin' field is no longer in the UI, but we continue
# to process it because it will appear in stored queries and bookmarks.
my
$changedin
=
trim
(
$params
->
param
(
'changedin'
))
||
''
;
if
(
$changedin
)
{
if
(
$changedin
!~
/^[0-9]*$/
)
{
ThrowUserError
(
"illegal_changed_in_last_x_days"
,
{
value
=>
$changedin
});
}
if
(
!
$chfieldfrom
&&
!
$chfieldto
&&
scalar
(
@chfield
)
==
1
&&
$chfield
[
0
]
eq
"[Bug creation]"
)
{
# Deal with the special case where the query is using changedin
# to get bugs created in the last n days by converting the value
# into its equivalent for the chfieldfrom parameter.
$chfieldfrom
=
"-"
.
(
$changedin
-
1
)
.
"d"
;
}
else
{
# Oh boy, the general case. Who knows why the user included
# the changedin parameter, but do our best to comply.
push
(
@specialchart
,
[
"changedin"
,
"lessthan"
,
$changedin
+
1
]);
}
}
if
(
$chfieldfrom
ne
''
||
$chfieldto
ne
''
)
{
if
(
$chfieldfrom
ne
''
||
$chfieldto
ne
''
)
{
my
$sql_chfrom
=
$chfieldfrom
?
$dbh
->
quote
(
SqlifyDate
(
$chfieldfrom
)):
''
;
my
$sql_chfrom
=
$chfieldfrom
?
$dbh
->
quote
(
SqlifyDate
(
$chfieldfrom
)):
''
;
my
$sql_chto
=
$chfieldto
?
$dbh
->
quote
(
SqlifyDate
(
$chfieldto
))
:
''
;
my
$sql_chto
=
$chfieldto
?
$dbh
->
quote
(
SqlifyDate
(
$chfieldto
))
:
''
;
...
@@ -2183,7 +2164,7 @@ sub _setters_login_name {
...
@@ -2183,7 +2164,7 @@ sub _setters_login_name {
$args
->
{
full_field
}
=
"$map_table.login_name"
;
$args
->
{
full_field
}
=
"$map_table.login_name"
;
}
}
sub
_
changedin_
days_elapsed
{
sub
_days_elapsed
{
my
(
$self
,
$args
)
=
@_
;
my
(
$self
,
$args
)
=
@_
;
my
$dbh
=
Bugzilla
->
dbh
;
my
$dbh
=
Bugzilla
->
dbh
;
...
...
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