Feature #31879
"starts with" and "ends with" filter operators for string values
Status: | Closed | Start date: | ||
---|---|---|---|---|
Priority: | Normal | Due date: | ||
Assignee: | % Done: | 0% | ||
Category: | Issues filter | |||
Target version: | 4.1.0 | |||
Resolution: | Fixed |
Description
I propose adding "start with" and "end with" operators.
Currently, issues filter supports "contains", "doesn't contain", "none", and "any" operators for string values but does not support "start with" and "end with".
These two operators should increase the flexibility of issues filter. For example, you can extract issues which have some prefix or suffix in the subject.
Related issues
Associated revisions
"starts with" and "ends with" filter operators for string values (#31879).
Patch by Yuichi HARADA.
Update locales (#31879).
Add support for "start with" and "end with" operators to "Files" filter (#31879).
Patch by Yuichi HARADA.
History
#1
Updated by Go MAEDA almost 3 years ago
- Related to Feature #3040: Extend filter on subject field added
#2
Updated by Yuichi HARADA over 2 years ago
- File 31879_add_filter_operators.patch
added
https://developer.mozilla.org/en-US/docs/Web/CSS/Attribute_selectors#Syntax
- starts with : ^=
- ends with : $=
I attached a patch.
#3
Updated by Go MAEDA over 2 years ago
- Target version set to Candidate for next major release
#4
Updated by Marius BALTEANU over 2 years ago
Yuichi HARADA wrote:
I added "starts with" and "ends with" filter operators. These filter operator symbols mimics the CSS selectors.
https://developer.mozilla.org/en-US/docs/Web/CSS/Attribute_selectors#Syntax
- starts with : ^=
- ends with : $=
I attached a patch.
Why not just ^
/$
which are used in regex syntax or Lucene syntax? Using CSS selector syntax for text searching is not common.
#5
Updated by Go MAEDA over 2 years ago
- File 31879_add_filter_operators-v2.patch
added
Marius BALTEANU wrote:
Why not just
^
/$
which are used in regex syntax or Lucene syntax? Using CSS selector syntax for text searching is not common.
Nice idea. I have updated the patch.
#6
Updated by Go MAEDA over 2 years ago
- Status changed from New to Closed
- Assignee set to Go MAEDA
- Target version changed from Candidate for next major release to 4.1.0
- Resolution set to Fixed
Committed the patch. Thank you for improving Redmine.
#7
Updated by Yuichi HARADA over 2 years ago
- File 31879_add_filter_operators_attachment.patch
added
I added "starts with" and "ends with" filter operators to File filter, but didn't create an implementation.
I created a patch.
#8
Updated by Go MAEDA over 2 years ago
- Status changed from Closed to Reopened
#9
Updated by Go MAEDA over 2 years ago
- Status changed from Reopened to Closed
Yuichi HARADA wrote:
I added "starts with" and "ends with" filter operators to File filter, but didn't create an implementation.
Committed the fix in r18570. Thank you.