From c47736a15879e1a227dfe044fb98d2f6a866e9f2 Mon Sep 17 00:00:00 2001 From: orbiter Date: Tue, 12 Jul 2005 15:55:25 +0000 Subject: [PATCH] configuration of number of output lines in IndexMonitor git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@402 6c8d7289-2bf4-0310-a012-ef5d649a1542 --- htroot/IndexMonitor.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/htroot/IndexMonitor.java b/htroot/IndexMonitor.java index 5793e1fd0..95ae5f3dd 100644 --- a/htroot/IndexMonitor.java +++ b/htroot/IndexMonitor.java @@ -94,6 +94,11 @@ public class IndexMonitor { } } + // custom number of lines + if (post.containsKey("count")) { + showIndexedCount = Integer.parseInt((String) post.get("count", "40")); + } + // do the commands if (post.containsKey("clearlist")) switchboard.urlPool.loadedURL.clearStack(process); if (post.containsKey("deleteentry")) {