From 39ae96450b8c76e34dcb053bd99fff9f747270d3 Mon Sep 17 00:00:00 2001 From: orbiter Date: Fri, 7 Aug 2009 08:36:15 +0000 Subject: [PATCH] draw more peers in network picture git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@6248 6c8d7289-2bf4-0310-a012-ef5d649a1542 --- defaults/yacy.init | 2 +- htroot/NetworkPicture.java | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/defaults/yacy.init b/defaults/yacy.init index 8d2662f60..f57a696ff 100644 --- a/defaults/yacy.init +++ b/defaults/yacy.init @@ -872,7 +872,7 @@ wikiParser.class = de.anomic.data.wikiCode # settings for automatic deletion of old entries in passive and potential seed-db # time means max time (in days) a peer may not have been seen before it is deleted routing.deleteOldSeeds.permission = true -routing.deleteOldSeeds.time = 7 +routing.deleteOldSeeds.time = 30 # options to remember the default search engines when using the search compare features compare_yacy.left = YaCy diff --git a/htroot/NetworkPicture.java b/htroot/NetworkPicture.java index c9bdb0d66..395d82d06 100644 --- a/htroot/NetworkPicture.java +++ b/htroot/NetworkPicture.java @@ -40,8 +40,8 @@ public class NetworkPicture { int width = 768; int height = 576; - int passiveLimit = 300; - int potentialLimit = 300; + int passiveLimit = 720; // 12 hours + int potentialLimit = 720; int maxCount = 1000; String bgcolor = NetworkGraph.COL_BACKGROUND; boolean corona = true; @@ -49,8 +49,8 @@ public class NetworkPicture { if (post != null) { width = post.getInt("width", 768); height = post.getInt("height", 576); - passiveLimit = post.getInt("pal", 300); - potentialLimit = post.getInt("pol", 300); + passiveLimit = post.getInt("pal", 720); + potentialLimit = post.getInt("pol", 720); maxCount = post.getInt("max", 1000); corona = post.get("corona", "true").equals("true"); bgcolor = post.get("bgcolor", bgcolor);