historical change in .bak directory on fsf.org, not in use
[mharc.git] / cgi-bin / template / NMZ.body
CommitLineData
01c223d0
BOFG
1<h2><a name="query">Query</a></h2>
2
20dc6258
IK
3<h3><a name="query-ignored">Long messages and words are ignored</a></h3>
4<p>
5Messages longer than 100,000 letters or 500,000 bytes are ignored. Words longer than 40 characters are ignored. Attachments are ignored.
6</p>
7
01c223d0
BOFG
8<h3><a name="query-term">Single term query</a></h3>
9<p>
10The query specifies only one term for retrieving all
11documents which contain the term. e.g.,
12</p>
13
14<p class="example">
15namazu
16</p>
17
18<h3><a name="query-and">AND query</a></h3>
19
20<p>
21The query specifies two or more terms for retrieving all
22documents which contain both terms. You can insert the
23<code class="operator">and</code> operator between the terms. e.g.,
24</p>
25
26<p class="example">
27Linux and Netscape
28</p>
29
30<p>
31You can ommit the <code class="operator">and</code> operator. Terms which is
32separated by one ore more spaces is assumed to be AND query.
33</p>
34
35<h3><a name="query-or">OR query</a></h3>
36<p>
37The query specifies two or more terms for retrieving all
38documents which contain either term. You can insert the
39<code class="operator">or</code> operator between the terms.
40e.g.,
41</p>
42
43<p class="example">
44Linux or FreeBSD
45</p>
46
47<h3><a name="query-not">NOT query</a></h3>
48<p>
49The query specifies two or more terms for retrieving all
50documents which contain a first term but does't contain the
51following terms. You can insert the <code class="operator">not</code>
52operator between the terms to do NOT query. e.g.,
53</p>
54
55<p class="example">
56Linux not UNIX
57</p>
58
59
60<h3><a name="query-grouping">Grouping</a></h3>
61<p>
62You can group queries by surrounding them by
63parentheses. The parentheses should be separated by one or
64more spaces. e.g.,
65</p>
66
67<p class="example">
68( Linux or FreeBSD ) and Netscape not Windows
69</p>
70
71<h3><a name="query-phrase">Phrase searching</a></h3>
72<p>
73You can search for a phrase which consists of two or more terms
74by surrounding them with double quotes like
75<code class="operator">"..."</code> or with braces like <code class="operator">{...}</code>.
76In Namazu, precision of phrase searching is not 100 %,
77so it causes wrong results occasionally. e.g.,
78</p>
79
80<p class="example">
81{GNU Emacs}
82</p>
83
84<!-- foo
85<p>
86You must choose the latter with Tkanamzu or namazu.el.
87</p>
88-->
89
90<h3><a name="query-substring">Substring matching</a></h3>
91<p>
92The are three types of substring matching searching.
93</p>
94
95<dl>
96<dt>Prefix matching
97<dd><code class="example">inter*</code> (terms which begin with <code>inter</code>)
98<dt>Inside matching
99<dd><code class="example">*text*</code> (terms which contain <code>text</code>)
100<dt>Suffix matching
101<dd><code class="example">*net</code> (terms which terminated
102with <code>net</code>)
103</dl>
104
105
106<h3><a name="query-regex">Regular expressions</a></h3>
107
108<p>
109You can use regular expressions for pattern matching. The
110regular expressions must be surrounded by slashes like <code
111class="operator">/.../</code>. Namazu uses <a
112href="http://www.ruby-lang.org/">Ruby</a>'s regular
113regular expressions engine. It offers generally <a
114href="http://www.perl.com/">Perl</a> compatible flavor.
115e.g.,
116</p>
117
118<p class="example">
119/pro(gram|blem)s?/
120</p>
121
122
123<h3><a name="query-field">Field-specified searching</a></h3>
124<p>
125You can limit your search to specific fields such as
126<code>Subject:</code>, <code>From:</code>,
127<code>Message-Id:</code>. It's especially convenient for
128Mail/News documents. e.g.,
129</p>
130
131<ul>
132<li><code class="example">+subject:Linux</code><br>
133(Retrieving all documents which contain <code>Linux</code>
134in a <code>Subject:</code> field)
135
136<li><code class="example">+subject:"GNU Emacs"</code><br>
137(Retrieving all documents which contain <code>GNU Emacs</code>
138in a <code>Subject:</code> field)
139
140<li><code class="example">+from:foo@bar.jp</code><br>
141(Retrieving all documents which contain <code>foo@bar.jp</code>
142in a <code>From:</code> field)
143
144
145<li><code class="example">+message-id:&lt;199801240555.OAA18737@foo.bar.jp&gt;</code><br>
146(Retrieving a certain document which contains specified
147<code>Message-Id:</code>)
148</ul>
149
150<h3><a name="query-notes">Notes</a></h3>
151
152<ul>
153<li>In any queries, Namazu ignores case distinctions of
154alphabet characters. In other words, Namazu does
155case-insensitive pattern matching in any time.
156
157
158<li>Japanese phrases are forced to be segmented into
159morphemes automatically and are handled them as <a
160href="#query-phrase">phrase searching</a>. This processing
161causes invalid segmentation occasionally.
162
163
164<li>Alphabet, numbers or a part of symbols (duplicated in
165ASCII) characters which defined in JIS X 0208 (Japanese
166Industrial Standards) are handled as ASCII characters.
167
168<li>Namazu can handle a term which contains symbols like
169<code>TCP/IP</code>. Since this handling isn't complete,
170you can describe <code>TCP and IP</code> instead of
171<code>TCP/IP</code>, but it may cause noisy results.
172
173
174<li>Substring matching and field-specified searching takes
175more time than other methods.
176
177<li>If you want to use <code class="operator">and</code>,
178<code class="operator">or</code> or <code
179class="operator">not</code> simply as terms, you can
180surround them respectively with double quotes like <code
181class="operator">"..."</code> or braces like <code
182class="operator">{...}</code>.
183
184<!-- foo
185You must choose the latter with Tkanamzu or namazu.el.
186-->
187
188</ul>
189