mirror of https://github.com/zulip/zulip.git
68 lines
3.1 KiB
HTML
68 lines
3.1 KiB
HTML
|
<div class="modal hide" id="search-operators" tabindex="-1" role="dialog"
|
|||
|
aria-labelledby="search-operators-label" aria-hidden="true">
|
|||
|
<div class="modal-header">
|
|||
|
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
|
|||
|
<h3 id="search-operators-label">Search operators</h3>
|
|||
|
</div>
|
|||
|
<div class="modal-body">
|
|||
|
<table class="table table-striped table-condensed table-rounded table-bordered" id="fmt_help_table">
|
|||
|
<thead>
|
|||
|
<tr>
|
|||
|
<th>Operator</th>
|
|||
|
<th>Effect</th>
|
|||
|
</tr>
|
|||
|
</thead>
|
|||
|
<tr>
|
|||
|
<td class="operator">stream:<span class="operator_value">stream</span></td>
|
|||
|
<td class="definition">Narrow to messages on stream <span class="operator_value">stream</span></td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td class="operator">topic:<span class="operator_value">topic</span></td>
|
|||
|
<td class="definition">Narrow to messages with topic <span class="operator_value">topic</span></td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td class="operator">pm-with:<span class="operator_value">email</span></td>
|
|||
|
<td class="definition">Narrow to private messages with <span class="operator_value">email</span></td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td class="operator">near:<span class="operator_value">id</span></td>
|
|||
|
<td class="definition">Center the view around message ID <span class="operator_value">id</span></td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td class="operator">id:<span class="operator_value">id</span></td>
|
|||
|
<td class="definition">Narrow to just message ID <span class="operator_value">id</span></td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td class="operator">is:<span class="operator_value">property</span></td>
|
|||
|
<td class="definition">Narrow to messages that
|
|||
|
have property <span class="operator_value">property</span>. Possible
|
|||
|
values
|
|||
|
include <span class="operator">private</span>, <span class="operator">starred</span>,
|
|||
|
and <span class="operator">mentioned</span></td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td class="operator">sender:<span class="operator_value">email</span></td>
|
|||
|
<td class="definition">Narrow to messages sent by <span class="operator_value">email</span></td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td class="operator"><span class="operator_value">keyword</span></td>
|
|||
|
<td class="definition">Search for <span class="operator_value">keyword</span> in the topic or message content</td>
|
|||
|
</tr>
|
|||
|
</table>
|
|||
|
<p>You can use any combination of these search operators in a
|
|||
|
single query. For example:</p>
|
|||
|
|
|||
|
<p> <span class="operator">stream:<span class="operator_value">streamname</span>
|
|||
|
sender:<span class="operator_value">user@example.com</span>
|
|||
|
<span class="operator_value">keyword</span></span></p>
|
|||
|
|
|||
|
<p>would search for messages sent
|
|||
|
by <span class="operator_value">user@example.com</span> to stream
|
|||
|
<span class="operator_value">streamname</span>
|
|||
|
containing the keyword <span class="operator_value">keyword</span>.</p>
|
|||
|
</div>
|
|||
|
<div class="modal-footer">
|
|||
|
<button class="btn btn-primary" data-dismiss="modal" aria-hidden="true">Close</button>
|
|||
|
</div>
|
|||
|
</div>
|