diff --git a/htroot/Crawler_p.html b/htroot/Crawler_p.html
index ebf49c09b..df78753a1 100644
--- a/htroot/Crawler_p.html
+++ b/htroot/Crawler_p.html
@@ -52,6 +52,16 @@
unlimited |
+
+ No-Load Crawler |
+ #[noloadCrawlSize]# |
+
+
+
+
+ |
+ unlimited |
+
Loader |
#[loaderSize]# |
diff --git a/htroot/js/Crawler.js b/htroot/js/Crawler.js
index 9edd16385..ef0e861f5 100644
--- a/htroot/js/Crawler.js
+++ b/htroot/js/Crawler.js
@@ -168,6 +168,13 @@ function handleQueues(){
document.getElementById("remotecrawlerqueuesize").firstChild.nodeValue=remotecrawlerqueue_size;
putQueueState("remotecrawler", remotecrawlerqueue_state);
updateTable(remotecrawlerqueue, "remote crawler");
+
+ noloadcrawlerqueue=getFirstChild(xml, "noloadcrawlerqueue");
+ noloadcrawlerqueue_size=getValue(getFirstChild(noloadcrawlerqueue, "size"));
+ noloadcrawlerqueue_state=getValue(getFirstChild(noloadcrawlerqueue, "state"));
+ document.getElementById("noloadcrawlerqueuesize").firstChild.nodeValue=noloadcrawlerqueue_size;
+ putQueueState("noloadcrawler", noloadcrawlerqueue_state);
+
}
queueLoaded=true;
}