Skip to content

Commit e2b5bdc

Browse files
idodeclareVladimir Kotal
authored andcommitted
Fix up some titles
1 parent c497405 commit e2b5bdc

File tree

2 files changed

+19
-19
lines changed

2 files changed

+19
-19
lines changed

opengrok-web/src/main/webapp/menu.jspf

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -159,32 +159,33 @@ document.domReady.push(function() { domReadyMenu(); });
159159
%>
160160
<tbody>
161161
<tr>
162-
<td><label for="<%= QueryParameters.FULL_SEARCH_PARAM %>" title="Text token(s) or other
163-
fields to be found (Lucene query--this is not full text)">Full&nbsp;Search</label></td>
162+
<td><label for="<%= QueryParameters.FULL_SEARCH_PARAM %>"
163+
title="Text token(s) or other fields to be found (Lucene query--this is not full text)">
164+
Full&nbsp;Search</label></td>
164165
<td colspan="2"><input tabindex="1" class="q"
165166
name="<%= QueryParameters.FULL_SEARCH_PARAM %>"
166167
id="<%= QueryParameters.FULL_SEARCH_PARAM %>" type="text" value="<%=
167168
Util.formQuoteEscape(queryParams.getFreetext()) %>"/></td>
168169
</tr>
169170
<tr>
170-
<td><label for="<%= QueryParameters.DEFS_SEARCH_PARAM %>" title="Definition of
171-
function/variable/class">Definition</label></td>
171+
<td><label for="<%= QueryParameters.DEFS_SEARCH_PARAM %>"
172+
title="Definitions of function/variable/class">Definition</label></td>
172173
<td colspan="2"><input class="q" tabindex="2"
173174
name="<%= QueryParameters.DEFS_SEARCH_PARAM %>"
174175
id="<%= QueryParameters.DEFS_SEARCH_PARAM %>" type="text" value="<%=
175176
Util.formQuoteEscape(queryParams.getDefs()) %>"/></td>
176177
</tr>
177178
<tr>
178-
<td><label for="<%= QueryParameters.REFS_SEARCH_PARAM %>" title="Usage of
179-
function/variable/class">Symbol</label></td>
179+
<td><label for="<%= QueryParameters.REFS_SEARCH_PARAM %>"
180+
title="Usage of function/variable/class">Symbol</label></td>
180181
<td colspan="2"><input class="q" tabindex="3"
181182
name="<%= QueryParameters.REFS_SEARCH_PARAM %>"
182183
id="<%= QueryParameters.REFS_SEARCH_PARAM %>" type="text" value="<%=
183184
Util.formQuoteEscape(queryParams.getRefs()) %>"/></td>
184185
</tr>
185186
<tr>
186-
<td><label for="<%= QueryParameters.PATH_SEARCH_PARAM %>" title="Path or parts of it (no need to use dividers)">File&nbsp;Path
187-
</label></td>
187+
<td><label for="<%= QueryParameters.PATH_SEARCH_PARAM %>"
188+
title="Path or parts of it (no need to use separators)">File&nbsp;Path</label></td>
188189
<td colspan="2"><input class="q" tabindex="4"
189190
name="<%= QueryParameters.PATH_SEARCH_PARAM %>"
190191
id="<%= QueryParameters.PATH_SEARCH_PARAM %>" type="text" value="<%=
@@ -194,8 +195,8 @@ document.domReady.push(function() { domReadyMenu(); });
194195
if (cfg.getEnv().isHistoryEnabled()) {
195196
%>
196197
<tr>
197-
<td><label for="<%= QueryParameters.HIST_SEARCH_PARAM %>" title="Search in log
198-
messages">History</label></td>
198+
<td><label for="<%= QueryParameters.HIST_SEARCH_PARAM %>"
199+
title="Search in project(s) repository log messages">History</label></td>
199200
<td colspan="2"><input class="q" tabindex="5"
200201
name="<%= QueryParameters.HIST_SEARCH_PARAM %>"
201202
id="<%= QueryParameters.HIST_SEARCH_PARAM %>" type="text" value="<%=

opengrok-web/src/main/webapp/minisearch.jspf

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ org.opengrok.indexer.web.Util"%><%
4848
} else if (cfg.annotate()) {
4949
%><li><span id="toggle-annotate-by-javascript" style="display: none"><a
5050
href="#" onclick="javascript:toggle_annotations(); return false;"
51-
title="Show or hide line annotation(commit revisions,authors)."
51+
title="Show or hide line annotation (revisions, authors)."
5252
><span class="annotate"></span>Annotate</a></span><span
5353
id="toggle-annotate"><a href="#"><span class="annotate"></span>
5454
Annotate</a></span></li><%
@@ -77,15 +77,14 @@ org.opengrok.indexer.web.Util"%><%
7777
if (!cfg.isDir()) {
7878
if (cfg.getPrefix() == Prefix.XREF_P) {
7979
%><li><a href="#" onclick="javascript:lntoggle();return false;"
80-
title="<%= "Show or hide line numbers (might be slower if "
81-
+ "file has more than 10 000 lines)."
82-
%>"><span id="line"></span>Line#</a></li>
80+
title="Show or hide line numbers (might be slower if file has more than 10 000 lines).">
81+
<span id="line"></span>Line#</a></li>
8382
<li><a href="#" class="scopes-toggle"
84-
title="<%= "Toggle scopes window."
85-
%>"><span id="line"></span>Scopes#</a></li><li><a
86-
href="#" id="navigate"
87-
title="Show or hide symbol list."><%--
88-
--%><span id="defbox"></span>Navigate#</a></li><%
83+
title="Show or hide scopes window.">
84+
<span id="line"></span>Scopes#</a></li>
85+
<li><a href="#" id="navigate"
86+
title="Show or hide symbol list.">
87+
<span id="defbox"></span>Navigate#</a></li><%
8988
}
9089
%>
9190
<li><a href="<%= context + Prefix.RAW_P + cfg.getUriEncodedPath() +

0 commit comments

Comments
 (0)