|
- Timestamp:
-
Jul 17, 2018, 2:12:23 PM (6 years ago)
- Author:
-
trac
- Comment:
-
--
Legend:
- Unmodified
- Added
- Removed
- Modified
-
v1
|
v2
|
|
13 | 13 | * If not logged in and no name/email is defined in the preferences, then all open issues are displayed. |
14 | 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 pulldown 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 pulldown menu of options can be added multiple times to perform an ''Or'' on the criteria. |
| 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`. |
16 | 18 | |
17 | 19 | You can use the fields just below the filters box to group the results based on a field, or display the full description for each ticket. |
18 | 20 | |
19 | 21 | After you have edited your filters, click the ''Update'' button to refresh your results. |
| 22 | |
| 23 | Keyboard shortcuts are available for manipulating the //checkbox// filters: |
| 24 | * Clicking on a filter row label toggles all checkboxes. |
| 25 | * Pressing the modifier key while clicking on a filter row label inverts the state of all checkboxes. |
| 26 | * Pressing the modifier key while clicking on a checkbox selects the checkbox and deselects all other checkboxes in the filter. Since 1.2.1 this also works for the //Columns// checkboxes. |
| 27 | |
| 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. |
20 | 29 | |
21 | 30 | == Navigating Tickets |
… |
… |
|
92 | 101 | || '''`!$=`''' || the field content does not end with any of the values || |
93 | 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 | |
94 | 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. |
95 | 113 | || '''`created=2007-01-01..2008-01-01`''' || query tickets created in 2007 || |
… |
… |
|
98 | 116 | || '''`modified=..30daysago`''' || query tickets that have been inactive for the last 30 days || |
99 | 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. |
| 119 | |
100 | 120 | ---- |
101 | 121 | See also: TracTickets, TracReports, TracGuide, TicketQuery |
|