Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
NAS-2642: Delimiter is now 'Matching count:'
  • Loading branch information
Knud Åge Hansen committed Sep 25, 2017
1 parent a82f72b commit 63e076a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Expand Up @@ -695,7 +695,7 @@ public void frontier_list(HttpServletRequest req, HttpServletResponse resp, List
String frontierScript = getGroovyScript();
String deleteStr = req.getParameter("delete");
frontierScript = getDeleteScript(regex, linesPerPage, initials, frontierScript, deleteStr, pageString);
String[] frontierScriptSplitted = frontierScript.split("#");
String[] frontierScriptSplitted = frontierScript.split("Matching count:");
long totalCachedLines = Long.getLong(frontierScriptSplitted[2],1);

Heritrix3JobMonitor h3Job = environment.h3JobMonitorThread.getRunningH3Job(numerics.get(0));
Expand Down
Expand Up @@ -103,9 +103,9 @@ void listFrontier(String regex, long limit) {
content = content + '</pre>'

if (limit > 0) {
content = '#' + matchingCount + '#</p>' + content
content = 'Matching count:' + matchingCount + '</p>' + content
} else {
content = '#' + matchingCount + '#</p>' + content
content = 'Matching count:' + matchingCount + '</p>' + content
}
htmlOut.println content
}
Expand Down

0 comments on commit 63e076a

Please sign in to comment.