From 5813cc149fb147fa69f9879b598a95ed2fb78764 Mon Sep 17 00:00:00 2001 From: orbiter Date: Mon, 28 Apr 2008 20:34:37 +0000 Subject: [PATCH] fix for bad rssTerminal behavior git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@4744 6c8d7289-2bf4-0310-a012-ef5d649a1542 --- htroot/Status.html | 2 +- htroot/rssTerminal.html | 18 ++++++++++++------ htroot/xml/feed.java | 2 +- source/de/anomic/yacy/yacyCore.java | 2 +- 4 files changed, 15 insertions(+), 9 deletions(-) diff --git a/htroot/Status.html b/htroot/Status.html index 1db96bbc4..d9d9c1335 100644 --- a/htroot/Status.html +++ b/htroot/Status.html @@ -24,7 +24,7 @@

Welcome to YaCy!


-
banner diff --git a/htroot/rssTerminal.html b/htroot/rssTerminal.html index 05038a13d..f8ccc4fb8 100755 --- a/htroot/rssTerminal.html +++ b/htroot/rssTerminal.html @@ -36,11 +36,14 @@ var idleping = null; var loader = null; var lastwait = 1000; var tab = "  "; +var lastShow = new Date(); function fillLines() { +alert(maxlines); for (var i = 0; i < maxlines + 1; i++) { - //addLine(i + "123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789"); - addLine(""); + alert(maxlines);http://localhost:8080/Steering.html?shutdown= + addLine(i + "-123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789-"); + //addLine(""); } } @@ -61,11 +64,14 @@ function addLine(line) { } function show() { + now = new Date(); + if (now.getTime() - lastShow.getTime() < 50) return; var doc = document.getElementById("content"); doc.innerHTML = ""; for (var i = 0; i < maxlines; i++) { - doc.innerHTML += lines[i] + "
"; + if (lines[i]) doc.innerHTML += lines[i] + "
"; } + lastShow = new Date(); } function newwait() { @@ -120,12 +126,12 @@ function idlepingExec() { } function loaderInit() { - loader=window.setInterval("load()", 8000); + loader=window.setInterval("load()", 6000); load(); } function load() { - getRSS("http://localhost:8080/xml/feed.rss?set=PEERNEWS"); + getRSS("/xml/feed.rss?set=PEERNEWS&count=50"); } function windowsizing() { @@ -145,7 +151,7 @@ function windowsizing() { - +

diff --git a/htroot/xml/feed.java b/htroot/xml/feed.java index b96cd7a19..90a88d656 100755 --- a/htroot/xml/feed.java +++ b/htroot/xml/feed.java @@ -52,7 +52,7 @@ public class feed { RSSFeed feed = RSSFeed.channels(channelName); if ((feed == null) || (feed.size() == 0)) return prop; - int count = post.getInt("count", 10); + int count = post.getInt("count", 100); RSSMessage message = feed.getChannel(); if (message != null) { diff --git a/source/de/anomic/yacy/yacyCore.java b/source/de/anomic/yacy/yacyCore.java index 16abdfe62..58cf36bdd 100644 --- a/source/de/anomic/yacy/yacyCore.java +++ b/source/de/anomic/yacy/yacyCore.java @@ -128,7 +128,7 @@ public class yacyCore { // create a peer news channel RSSFeed peernews = RSSFeed.channels(channelName); - peernews.setMaxsize(100); + peernews.setMaxsize(1000); peernews.addMessage(new RSSMessage("YaCy started", "")); // set log level