Commit b8a73388 authored by Sunil Joshi's avatar Sunil Joshi Committed by Simon Green

Bug 455016 - Documentation about "Boolean charts" talks about "equals" and so,…

Bug 455016 - Documentation about "Boolean charts" talks about "equals" and so, while these choices have been renamed r=simon, a=glob
parent 6d7c6ee8
...@@ -550,7 +550,7 @@ ...@@ -550,7 +550,7 @@
Sometimes, a query needs to compare a user-related field Sometimes, a query needs to compare a user-related field
(such as ReportedBy) with a role-specific user (such as the (such as ReportedBy) with a role-specific user (such as the
user running the query or the user to whom each bug is assigned). user running the query or the user to whom each bug is assigned).
When the operator is either "equals" or "notequals", the value When the operator is either "is equal to" or "is not equal to", the value
can be "%reporter%", "%assignee%", "%qacontact%", or "%user%". can be "%reporter%", "%assignee%", "%qacontact%", or "%user%".
The user pronoun The user pronoun
refers to the user who is executing the query or, in the case refers to the user who is executing the query or, in the case
...@@ -560,12 +560,12 @@ ...@@ -560,12 +560,12 @@
</para> </para>
<para> <para>
Boolean charts also let you type a group name in any user-related Boolean charts also let you type a group name in any user-related
field if the operator is either "equals", "notequals" or "anyexact". field if the operator is either "is equal to", "is not equal to" or
This will let you query for any member belonging (or not) to the "contains the string (exact case)". This will let you query for
specified group. The group name must be entered following the any member belonging (or not) to the specified group. The group name
"%group.foo%" syntax, where "foo" is the group name. must be entered following the "%group.foo%" syntax, where "foo" is
So if you are looking for bugs reported by any user being in the the group name. So if you are looking for bugs reported by any user
"editbugs" group, then you can type "%group.editbugs%". being in the "editbugs" group, then you can type "%group.editbugs%".
</para> </para>
</section> </section>
<section id="negation"> <section id="negation">
...@@ -603,16 +603,16 @@ ...@@ -603,16 +603,16 @@
negated. Negation permits queries such as negated. Negation permits queries such as
<blockquote> <blockquote>
<para> <para>
NOT(("product" "equals" "update") OR NOT(("product" "is equal to" "update") OR
("component" "equals" "Documentation")) ("component" "is equal to" "Documentation"))
</para> </para>
</blockquote> </blockquote>
to find bugs that are neither to find bugs that are neither
in the update product or in the documentation component or in the update product or in the documentation component or
<blockquote> <blockquote>
<para> <para>
NOT(("commenter" "equals" "%assignee%") OR NOT(("commenter" "is equal to" "%assignee%") OR
("component" "equals" "Documentation")) ("component" "is equal to" "Documentation"))
</para> </para>
</blockquote> </blockquote>
to find non-documentation to find non-documentation
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment