Opened 8 years ago
Closed 7 years ago
#2187 closed enhancement (worksforme)
Allow ticket queries in Trac to use keywords combinations (and, or)
Reported by: | flefebvre2 | Owned by: | |
---|---|---|---|
Milestone: | Priority: | normal | |
Component: | Trac | Keywords: | |
Cc: |
Description
Regarding custom queries for tickets in Trac
Actual behavior
The only possible filter pattern to filter tickets on is :
Keywords [contains,is,is not...] somekeyword1 or somekeyword2 or somekeyword3 ...
Proposed behavior
It would be great to filter with filters looking like :
Keywords [contains,is,is not...] somekeyword1 and [contains,is,is not...] somekeyword2...
Ex. Keywords contains good-first-bug and contains needs-patch
Change History (2)
#2
in reply to:
↑ description
@
7 years ago
- Resolution set to worksforme
- Status changed from new to closed
Replying to flefebvre2:
It would be great to filter with filters looking like :
Keywords [contains,is,is not...] somekeyword1 and [contains,is,is not...] somekeyword2...
Ex. Keywords contains good-first-bug and contains needs-patch
It might not be obvious, but it's already possible by separating keywords with a space:
https://core.trac.wordpress.org/query?status=!closed&keywords=~good-first-bug%20needs-patch
Related: #3092