Changes between Version 4 and Version 5 of TracQuery


Ignore:
Timestamp:
Dec 2, 2010, 11:17:40 PM (13 years ago)
Author:
trac
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TracQuery

    v4 v5  
    121121|| '''`!$=`''' || the field content does not end with any of the values ||
    122122
    123 The date fields `created` and `modified` can be constrained by using the `=` operator and specifying a value containing two dates separated by a semicolon (`;`). 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 left out to avoid having to quote the query string.
    124 || '''`created=2007-01-01;2008-01-01`''' || query tickets created in 2007 ||
    125 || '''`created=lastmonth;thismonth`''' || query tickets created during the previous month ||
    126 || '''`modified=1weekago;`''' || query tickets that have been modified in the last week ||
    127 || '''`modified=;30daysago`''' || query tickets that have been inactive for the last 30 days ||
     123The 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 left out to avoid having to quote the query string.
     124|| '''`created=2007-01-01..2008-01-01`''' || query tickets created in 2007 ||
     125|| '''`created=lastmonth..thismonth`''' || query tickets created during the previous month ||
     126|| '''`modified=1weekago..`''' || query tickets that have been modified in the last week ||
     127|| '''`modified=..30daysago`''' || query tickets that have been inactive for the last 30 days ||
    128128
    129129----