Bug 68921

git-svn-id: svn://svn.office.custis.ru/3rdparty/bugzilla.org/trunk@950 6955db30-a419-402b-8a0d-67ecbb4d7f56
master
vfilippov 2010-09-30 13:04:56 +00:00
parent ad6c3e520c
commit 3a1a4487de
1 changed files with 30 additions and 1 deletions

View File

@ -23,7 +23,7 @@
[% PROCESS global/variables.none.tmpl %]
[% SET search_descs = {
[% search_descs = {
"noop" => "---",
"equals" => "is equal to",
"notequals" => "is not equal to",
@ -54,6 +54,35 @@
"notinsearch" => "not matched by saved search",
} %]
[% search_shown_types = {
'notequals' => 1,
'regexp' => 1,
'notregexp' => 1,
'lessthan' => 1,
'lessthaneq' => 1,
'greaterthan' => 1,
'greaterthaneq' => 1,
'changedbefore' => 1,
'changedafter' => 1,
'changedfrom' => 1,
'changedto' => 1,
'changedby' => 1,
'notsubstring' => 1,
'nowords' => 1,
'nowordssubstr' => 1,
'notmatches' => 1,
} %]
[% search_multi_types = {
'anyexact' => 1,
'anywordssubstr' => 1,
'allwordssubstr' => 1,
'nowordssubstr' => 1,
'anywords' => 1,
'allwords' => 1,
'nowords' => 1,
} %]
[% field_types = { ${constants.FIELD_TYPE_UNKNOWN} => "Unknown Type",
${constants.FIELD_TYPE_FREETEXT} => "Free Text",
${constants.FIELD_TYPE_SINGLE_SELECT} => "Drop Down",