You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -99,9 +99,9 @@ To find all main methods in all files analyzed by C analyzer (so .c, .h, ...) do
99
99
<h4>More info:</h4>
100
100
A <dfn>Query</dfn> is a series of clauses. A clause may be prefixed by:
101
101
<ul>
102
-
<li>a plus "<strong>+</strong>" or a minus "<strong>-</strong>" sign, indicating that the clause
102
+
<li>a plus "<code>+</code>" or a minus "<code>-</code>" sign, indicating that the clause
103
103
is required or prohibited respectively; or</li>
104
-
<li>a <dfn>term</dfn> followed by a colon "<strong>:</strong>", indicating the
104
+
<li>a <dfn>term</dfn> followed by a colon "<code>:</code>", indicating the
105
105
<dfn>field</dfn> to be searched. This enables one to construct queries
106
106
which search multiple <dfn>fields</dfn>.</li>
107
107
</ul>
@@ -110,40 +110,40 @@ A <dfn>Query</dfn> is a series of clauses. A clause may be prefixed by:
110
110
<li>a <dfn>term</dfn>, indicating all the documents that contain this term;
111
111
or</li>
112
112
<li>a <dfn>phrase</dfn> - group of words surrounded by double quotes
113
-
<strong>" "</strong>, e.g. "hello dolly" </li>
114
-
<li>a nested query, enclosed in parentheses "<strong>(</strong>" "<strong>)</strong>" (also
113
+
<code>" "</code>, e.g. "hello dolly" </li>
114
+
<li>a nested query, enclosed in parentheses "<code>(</code>" "<code>)</code>" (also
115
115
called query/field <dfn>grouping</dfn>) . Note that this may be used
116
116
with a +/- prefix to require any of a set of terms. </li>
117
117
<li>boolean <dfn>operators</dfn> which allow terms to be combined through
118
-
logic operators. Supported are <strong>AND</strong>(<strong>&&</strong>), "<strong>+</strong>",
119
-
<strong>OR</strong>(<strong>||</strong>), <strong>NOT</strong>(<strong>!</strong>) and "<strong>-</strong>" (Note: they
118
+
logic operators. Supported are <code>AND</code>(<code>&&</code>), "<code>+</code>",
119
+
<code>OR</code>(<code>||</code>), <code>NOT</code>(<code>!</code>) and "<code>-</code>" (Note: they
120
120
must be ALL CAPS).</li>
121
121
</ul>
122
-
<p>Regular Expression, Wildcard, Fuzzy, Proximity & Range Searches:</p>
122
+
<p>Regular Expression, Wildcard, Fuzzy, Proximity and Range Searches:</p>
123
123
<ul>
124
-
<li>to perform a regular expression search use the "<strong>/</strong>" enclosure,
124
+
<li>to perform a regular expression search use the "<code>/</code>" enclosure,
125
125
e.g. /[mb]an/ - will search for man or for ban;<br/>
126
126
NOTE: path field search escapes "/" by default, so it only supports
127
127
regexps when the search string <u>starts and ends</u> with "/".<br/>
128
-
More info can be found on <ahref="http://lucene.apache.org/core/<%=SearchEngine.LUCENE_VERSION_HELP%>/core/org/apache/lucene/util/automaton/RegExp.html?is-external=true">Lucene regexp page</a>.
128
+
More info can be found on <ahref="https://lucene.apache.org/core/<%=SearchEngine.LUCENE_VERSION_HELP%>/core/org/apache/lucene/util/automaton/RegExp.html?is-external=true">Lucene regexp page</a>.
129
129
</li>
130
-
<li>to perform a single character wildcard search use the "<strong>?</strong>" symbol,
131
-
e.g. te?t</li>
132
-
<li>to perform a multiple character wildcard search use the "<strong>*</strong>"
133
-
symbol, e.g. test* or te*t</li>
130
+
<li>to perform a single character wildcard search use the "<code>?</code>" symbol,
131
+
e.g. <code>te?t</code></li>
132
+
<li>to perform a multiple character wildcard search use the "<code>*</code>"
133
+
symbol, e.g. <code>test*</code> or <code>te*t</code></li>
134
134
<li>you can use a * or ? symbol as the first character of a search
135
135
(unless not enabled using indexer option -a).</li>
136
136
<li>to do a fuzzy search (find words similar in spelling, based on the
137
137
Levenshtein Distance, or Edit Distance algorithm) use the tilde,
138
-
"<strong>~</strong>", e.g. rcs~ </li>
138
+
"<code>~</code>", e.g. rcs~ </li>
139
139
<li>to do a proximity search use the tilde, "~", symbol at the end of a
140
140
Phrase. For example to search for a "opengrok" and "help" within 10
141
141
words of each other enter: "opengrok help"~10 </li>
142
142
<li>range queries allow one to match documents whose field(s) values are
143
143
between the lower and upper bound specified by the Range Query. Range
144
144
Queries can be inclusive or exclusive of the upper and lower bounds.
145
145
Sorting is done lexicographically. Inclusive queries are denoted by
0 commit comments