From 19282ec337a17cb4edeed7fc6eb02def285b2394 Mon Sep 17 00:00:00 2001
From: Byron Jones
Date: Tue, 28 Jan 2014 14:15:01 +0800
Subject: Bug 76498: QuickSearch: support comparison operators other than
substring
---
template/en/default/pages/quicksearch.html.tmpl | 46 +++++++++++++++++++++++++
1 file changed, 46 insertions(+)
(limited to 'template/en')
diff --git a/template/en/default/pages/quicksearch.html.tmpl b/template/en/default/pages/quicksearch.html.tmpl
index c43047d9f..18bf4dfb1 100644
--- a/template/en/default/pages/quicksearch.html.tmpl
+++ b/template/en/default/pages/quicksearch.html.tmpl
@@ -229,6 +229,52 @@
(url OR location) AND (bar OR
field) AND (NOT focus)
+
+
+ The default operator, colon (:), performs a substring
+ match of the value. The following operators are supported:
+
+ -
+ : (substring):
+ summary:foo will search for [% terms.bugs %]
+ where the summary contains foo.
+
+ -
+ = (equals):
+ summary=foo will search for [% terms.bugs %]
+ where the summary is exactly foo.
+
+ -
+ != (notequals):
+ summary!=foo will search for [% terms.bugs %]
+ where the summary is not foo.
+
+ -
+ > (greaterthan):
+ creation_ts>-2w will search for [% terms.bugs %]
+ where that were created between two weeks ago and now, excluding [%
+ terms.bugs %] exactly two weeks old.
+
+ -
+ >= (greaterthaneq):
+ creation_ts>=-2w will search for [% terms.bugs %]
+ where that were created between two weeks ago and now, including [%
+ terms.bugs %] exactly two weeks old.
+
+ -
+ < (lessthan):
+ creation_ts<-2w will search for [% terms.bugs %]
+ where that were created more than two weeks ago, excluding [%
+ terms.bugs %] exactly two weeks old.
+
+ -
+ <= (lessthaneq):
+ creation_ts<=-2w will search for [% terms.bugs %]
+ where that were created more than two weeks ago, including [%
+ terms.bugs %] exactly two weeks old.
+
+
+
Advanced Shortcuts
--
cgit v1.2.3-24-g4f1b