8 | | == Filters == |
9 | | When you first go to the query page the default filters will display all open tickets, or if you're logged in it will display open tickets assigned to you. Current filters can be removed by clicking the button to the right with the minus sign on the label. New filters are added from the pulldown list in the bottom-right corner of the filters box. Filters with either a text box or a pulldown menu of options can be added multiple times to perform an ''or'' of the criteria. |
| 8 | == Filters |
| 9 | |
| 10 | When you first go to the query page, the default filter will display tickets relevant to you: |
| 11 | * If logged in then all open tickets, it will display open tickets assigned to you. |
| 12 | * If not logged in but you have specified a name or email address in the preferences, then it will display all open tickets where your email (or name if email not defined) is in the CC list. |
| 13 | * If not logged in and no name/email is defined in the preferences, then all open issues are displayed. |
| 14 | |
| 15 | Current filters can be removed by clicking the button to the left with the minus sign on the label. New filters are added from the dropdown lists at the bottom corners of the filters box; 'And' conditions on the left, 'Or' conditions on the right. Filters with either a text box or a dropdown menu of options can be added multiple times to perform an ''Or'' on the criteria. |
| 16 | |
| 17 | For text fields such as Keywords and CC the `-` operator can be used to negate a match and double quotes (//since 1.2.1//) can be used to match a phrase. For example, a //contains// match for `word1 word2 -word3 "word4 word5"` matches tickets containing `word1` and `word2`, not `word3` and `word4 word5`. |
18 | | You can safely edit any of the tickets and continue to navigate through the results using the ''Next/Previous/Back to Query'' links after saving your results. When you return to the query ''any tickets which was edited'' will be displayed with italicized text. If one of the tickets was edited such that [[html(<span style="color: grey">it no longer matches the query criteria </span>)]] the text will also be greyed. Lastly, if '''a new ticket matching the query criteria has been created''', it will be shown in bold. |
| 28 | The modifier key is platform and browser dependent. On Mac the modified key is !Option/Alt or Command. On Linux the modifier key is Ctrl + Alt. Opera on Windows seems to use Ctrl + Alt, while Alt is effective for other Windows browsers. |
| 29 | |
| 30 | == Navigating Tickets |
| 31 | |
| 32 | Clicking on one of the query results will take you to that ticket. You can navigate through the results by clicking the ''Next Ticket'' or ''Previous Ticket'' links just below the main menu bar, or click the ''Back to Query'' link to return to the query page. |
| 33 | |
| 34 | You can safely edit any of the tickets and continue to navigate through the results using the ''!Next/Previous/Back to Query'' links after saving your results. When you return to the query ''any tickets which were edited'' will be displayed with italicized text. If one of the tickets was edited such that [[html(<span style="color: grey">it no longer matches the query criteria </span>)]], the text will also be greyed. Lastly, if '''a new ticket matching the query criteria has been created''', it will be shown in bold. |
73 | | {{{ |
74 | | [[TicketQuery(version=0.6|0.7&resolution=duplicate, count)]] |
75 | | |
76 | | }}} |
77 | | |
78 | | This is displayed as: |
79 | | [[TicketQuery(version=0.6|0.7&resolution=duplicate, count)]] |
80 | | |
81 | | |
82 | | === Query Language === |
83 | | |
84 | | `query:` TracLinks and the `[[TicketQuery]]` macro both use a mini “query language” for specifying query filters. Basically, the filters are separated by ampersands (`&`). Each filter then consists of the ticket field name, an operator, and one or more values. More than one value are separated by a pipe (`|`), meaning that the filter matches any of the values. |
| 89 | `query:` TracLinks and the `[[TicketQuery]]` macro both use a mini “query language” for specifying query filters. Filters are separated by ampersands (`&`). Each filter consists of the ticket field name, an operator and one or more values. More than one value are separated by a pipe (`|`), meaning that the filter matches any of the values. To include a literal `&` or `|` in a value, escape the character with a backslash (`\`). |
87 | | || '''=''' || the field content exactly matches the one of the values || |
88 | | || '''~=''' || the field content contains one or more of the values || |
89 | | || '''!^=''' || the field content starts with one of the values || |
90 | | || '''$=''' || the field content ends with one of the values || |
| 92 | || '''`=`''' || the field content exactly matches one of the values || |
| 93 | || '''`~=`''' || the field content contains one or more of the values || |
| 94 | || '''`^=`''' || the field content starts with one of the values || |
| 95 | || '''`$=`''' || the field content ends with one of the values || |
93 | | || '''!=''' || the field content matches none of the values || |
94 | | || '''!~=''' || the field content does not contain any of the values || |
95 | | || '''!!^=''' || the field content does not start with any of the values || |
96 | | || '''!$=''' || the field content does not end with any of the values || |
| 98 | || '''`!=`''' || the field content matches none of the values || |
| 99 | || '''`!~=`''' || the field content does not contain any of the values || |
| 100 | || '''`!^=`''' || the field content does not start with any of the values || |
| 101 | || '''`!$=`''' || the field content does not end with any of the values || |
| 102 | |
| 103 | Filters combining matches and negated matches can be constructed for text fields such as Keywords and CC when using the //contains// (`~=`) operator. The `-` operator is used to negate a match and double quotes (//since 1.2.1//) are used for whitespace-separated words in a phrase. For example, `keywords~=word1 word2 -word3 "word4 word5"` matches tickets containing `word1` and `word2`, not `word3` and also `word4 word5`. |
| 104 | || '''`status=closed,keywords~=firefox`''' || query closed tickets that contain keyword `firefox` || |
| 105 | || '''`status=closed,keywords~=opera`''' || query closed tickets that contain keyword `opera` || |
| 106 | || '''`status=closed,keywords~=firefox opera`''' || query closed tickets that contain keywords `firefox` and `opera` || |
| 107 | || '''`status=closed,keywords~=firefox|opera`''' || query closed tickets that contain keywords `firefox` or `opera` || |
| 108 | || '''`status=closed,keywords~=firefox,or,keywords~=opera`''' || query closed tickets that contain keyword `firefox`, or (closed or unclosed) tickets that contain keyword `opera` || |
| 109 | || '''`status=closed,keywords~=firefox -opera`''' || query closed tickets that contain keyword `firefox`, but not `opera` || |
| 110 | || '''`status=closed,keywords~=opera -firefox`''' || query closed tickets that contain keyword `opera`, but no `firefox` || |
| 111 | |
| 112 | The date fields `created` and `modified` can be constrained by using the `=` operator and specifying a value containing two dates separated by two dots (`..`). Either end of the date range can be left empty, meaning that the corresponding end of the range is open. The date parser understands a few natural date specifications like "3 weeks ago", "last month" and "now", as well as Bugzilla-style date specifications like "1d", "2w", "3m" or "4y" for 1 day, 2 weeks, 3 months and 4 years, respectively. Spaces in date specifications can be omitted to avoid having to quote the query string. |
| 113 | || '''`created=2007-01-01..2008-01-01`''' || query tickets created in 2007 || |
| 114 | || '''`created=lastmonth..thismonth`''' || query tickets created during the previous month || |
| 115 | || '''`modified=1weekago..`''' || query tickets that have been modified in the last week || |
| 116 | || '''`modified=..30daysago`''' || query tickets that have been inactive for the last 30 days || |
| 117 | |
| 118 | Note that `modified` is the //last modified time//, so `modified` with a date range shows ticket that were //last modified// in that date range. If a ticket was modified in the date range, but modified again after the end date, it will not be included in the results. |