Skip to content

Commit 06bb09a

Browse files
idodeclareVladimir Kotal
authored andcommitted
Fix more broken links due to indentation
1 parent 0a7421e commit 06bb09a

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

opengrok-web/src/main/webapp/help.jsp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ include file="menu.jspf"
6363

6464
To find where setResourceMonitors is defined:
6565
<a href="search?<%= QueryParameters.FULL_SEARCH_PARAM_EQ %>&amp;
66-
<%= QueryParameters.DEFS_SEARCH_PARAM_EQ %>setResourceMonitors">
66+
<%= QueryParameters.DEFS_SEARCH_PARAM_EQ %>setResourceMonitors">
6767
<%= QueryBuilder.DEFS %>:setResourceMonitors</a>
6868

6969
To find files that use sprintf in usr/src/cmd/cmd-inet/usr.sbin/:

opengrok-web/src/main/webapp/history.jsp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -398,7 +398,7 @@ document.domReady.push(function() {domReadyHistory();});
398398
} else {
399399
%>
400400
<a class="h" href="<%= context + Prefix.XREF_P + ifile %>?<%= QueryParameters.REVISION_PARAM_EQ %>
401-
<%= rev %>"><%= jfile %></a><br/><%
401+
<%= rev %>"><%= jfile %></a><br/><%
402402
}
403403
}
404404
%></div><%

opengrok-web/src/main/webapp/list.jsp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ Click <a href="<%= rawPath %>">download <%= basename %></a><%
326326
%>
327327
<div id="src">
328328
Download binary file, <a href="<%= rawPath %>?<%= QueryParameters.REVISION_PARAM_EQ %>
329-
<%= Util.URIEncode(rev) %>"><%= basename %></a>
329+
<%= Util.URIEncode(rev) %>"><%= basename %></a>
330330
</div><%
331331
} else {
332332
%>
@@ -389,7 +389,7 @@ Click <a href="<%= rawPath %>">download <%= basename %></a><%
389389
Util.dumpXref(out, r, request.getContextPath());
390390
} else {
391391
%>Download binary file, <a href="<%= rawPath %>?<%= QueryParameters.REVISION_PARAM_EQ %>
392-
<%= Util.URIEncode(rev) %>"><%= basename %></a><%
392+
<%= Util.URIEncode(rev) %>"><%= basename %></a><%
393393
}
394394
}
395395
} catch (IOException e) {
@@ -427,7 +427,7 @@ Click <a href="<%= rawPath %>">download <%= basename %></a><%
427427
%>
428428
<div id="src">
429429
Download binary file, <a href="<%= rawPath %>?<%= QueryParameters.REVISION_PARAM_EQ %>
430-
<%= Util.URIEncode(rev) %>"><%= basename %></a>
430+
<%= Util.URIEncode(rev) %>"><%= basename %></a>
431431
</div><%
432432
}
433433
}

opengrok-web/src/main/webapp/search.jsp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -176,21 +176,21 @@ include file="menu.jspf"
176176
if (hint.freetext!=null) {
177177
for (String word : hint.freetext) {
178178
%> <a href="search?<%= QueryParameters.FULL_SEARCH_PARAM_EQ %>
179-
<%= Util.URIEncode(QueryParser.escape(word)) %>"><%=
179+
<%= Util.URIEncode(QueryParser.escape(word)) %>"><%=
180180
Util.htmlize(word) %></a> &nbsp; <%
181181
}
182182
}
183183
if (hint.refs!=null) {
184184
for (String word : hint.refs) {
185185
%> <a href="search?<%= QueryParameters.REFS_SEARCH_PARAM_EQ %>
186-
<%= Util.URIEncode(QueryParser.escape(word)) %>"><%=
186+
<%= Util.URIEncode(QueryParser.escape(word)) %>"><%=
187187
Util.htmlize(word) %></a> &nbsp; <%
188188
}
189189
}
190190
if (hint.defs!=null) {
191191
for (String word : hint.defs) {
192192
%> <a href="search?<%= QueryParameters.DEFS_SEARCH_PARAM_EQ %>
193-
<%= Util.URIEncode(QueryParser.escape(word)) %>"><%=
193+
<%= Util.URIEncode(QueryParser.escape(word)) %>"><%=
194194
Util.htmlize(word) %></a> &nbsp; <%
195195
}
196196
}

0 commit comments

Comments
 (0)