fix for bad rssTerminal behavior

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@4744 6c8d7289-2bf4-0310-a012-ef5d649a1542
pull/1/head
orbiter 17 years ago
parent 88216c1f1f
commit 5813cc149f

@ -24,7 +24,7 @@
<div class="welcome"> <div class="welcome">
<center> <center>
<h2>Welcome to YaCy!</h2><br /> <h2>Welcome to YaCy!</h2><br />
<iframe src="rssTerminal.html?set=PEERNEWS&width=468px&height=200px&maxlines=20&maxwidth=90" <iframe src="rssTerminal.html?set=PEERNEWS&width=468px&height=200px&maxlines=20&maxwidth=95"
width="482" height="220" scrolling="no" name="newsframe" width="482" height="220" scrolling="no" name="newsframe"
marginheight="0" marginwidth="0" frameborder="0"></iframe><br /> marginheight="0" marginwidth="0" frameborder="0"></iframe><br />
<img src="Banner.png?textcolor=000000&amp;bgcolor=ddeeee&amp;bordercolor=aaaaaa" alt="banner" /> <img src="Banner.png?textcolor=000000&amp;bgcolor=ddeeee&amp;bordercolor=aaaaaa" alt="banner" />

@ -36,11 +36,14 @@ var idleping = null;
var loader = null; var loader = null;
var lastwait = 1000; var lastwait = 1000;
var tab = "&nbsp;&nbsp;"; var tab = "&nbsp;&nbsp;";
var lastShow = new Date();
function fillLines() { function fillLines() {
alert(maxlines);
for (var i = 0; i < maxlines + 1; i++) { for (var i = 0; i < maxlines + 1; i++) {
//addLine(i + "123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789"); alert(maxlines);http://localhost:8080/Steering.html?shutdown=
addLine(""); addLine(i + "-123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789-");
//addLine("");
} }
} }
@ -61,11 +64,14 @@ function addLine(line) {
} }
function show() { function show() {
now = new Date();
if (now.getTime() - lastShow.getTime() < 50) return;
var doc = document.getElementById("content"); var doc = document.getElementById("content");
doc.innerHTML = ""; doc.innerHTML = "";
for (var i = 0; i < maxlines; i++) { for (var i = 0; i < maxlines; i++) {
doc.innerHTML += lines[i] + "<br />"; if (lines[i]) doc.innerHTML += lines[i] + "<br />";
} }
lastShow = new Date();
} }
function newwait() { function newwait() {
@ -120,12 +126,12 @@ function idlepingExec() {
} }
function loaderInit() { function loaderInit() {
loader=window.setInterval("load()", 8000); loader=window.setInterval("load()", 6000);
load(); load();
} }
function load() { function load() {
getRSS("http://localhost:8080/xml/feed.rss?set=PEERNEWS"); getRSS("/xml/feed.rss?set=PEERNEWS&count=50");
} }
function windowsizing() { function windowsizing() {
@ -145,7 +151,7 @@ function windowsizing() {
</script> </script>
</head> </head>
<body onload="self.getURLparameters();windowsizing();fillLines();idlepingInit();loaderInit();"> <body onload="self.getURLparameters();windowsizing();idlepingInit();loaderInit();">
<div id="feedbox"> <div id="feedbox">
<p id="content"></p> <p id="content"></p>
</div> </div>

@ -52,7 +52,7 @@ public class feed {
RSSFeed feed = RSSFeed.channels(channelName); RSSFeed feed = RSSFeed.channels(channelName);
if ((feed == null) || (feed.size() == 0)) return prop; if ((feed == null) || (feed.size() == 0)) return prop;
int count = post.getInt("count", 10); int count = post.getInt("count", 100);
RSSMessage message = feed.getChannel(); RSSMessage message = feed.getChannel();
if (message != null) { if (message != null) {

@ -128,7 +128,7 @@ public class yacyCore {
// create a peer news channel // create a peer news channel
RSSFeed peernews = RSSFeed.channels(channelName); RSSFeed peernews = RSSFeed.channels(channelName);
peernews.setMaxsize(100); peernews.setMaxsize(1000);
peernews.addMessage(new RSSMessage("YaCy started", "")); peernews.addMessage(new RSSMessage("YaCy started", ""));
// set log level // set log level

Loading…
Cancel
Save