diff --git a/htroot/Status.html b/htroot/Status.html
index f9f06ba82..1db96bbc4 100644
--- a/htroot/Status.html
+++ b/htroot/Status.html
@@ -3,7 +3,6 @@
YaCy '#[clientname]#': Console Status
#%env/templates/metas.template%#
-
#%env/templates/header.template%#
@@ -24,10 +23,13 @@
- Welcome to YaCy!
+ Welcome to YaCy!
+
-
+
diff --git a/htroot/js/query.js b/htroot/js/query.js
new file mode 100755
index 000000000..816ef9229
--- /dev/null
+++ b/htroot/js/query.js
@@ -0,0 +1,18 @@
+var query = new Object();
+
+function getQueryProps() {
+ var text = "";
+ for (property in query) {
+ text += property + " = " + query[property] + ";\n";
+ }
+ return text;
+}
+
+function getURLparameters() {
+ if (self.location.search.indexOf("=") == -1) {return;}
+ var parameterArray = unescape(self.location.search).substring(1).split("&");
+ for (var i=0;irss terminal
+
+function loaderInit() {
+ loader=window.setInterval("load()", 8000);
+ load();
+}
-
-
-
-
+function load() {
+ getRSS("http://localhost:8080/xml/feed.rss?set=PEERNEWS");
+}
+
+function windowsizing() {
+ if (query.maxlines) maxlines = query.maxlines;
+ if (query.maxwidth) maxwidth = query.maxwidth;
+ if (query.maxtime) maxtime = query.maxtime;
+ if (query.minwait) minwait = query.minwait;
+ if (query.maxwait) maxwait = query.maxwait;
+ if (query.width) {
+ document.getElementById("feedbox").style.width = query.width;
+ }
+ if (query.height) {
+ document.getElementById("feedbox").style.height = query.height;
+ }
+}
-
+
+
+
+
+