diff --git a/htroot/Network.html b/htroot/Network.html
index f95fef299..ba44e75d0 100644
--- a/htroot/Network.html
+++ b/htroot/Network.html
@@ -71,8 +71,8 @@
p
w
#(updatedProfile)#::
#(/updatedProfile)#
- #(updatedWikiPage)#::
#(/updatedWikiPage)#
- #(updatedBlog)#::
#(/updatedBlog)#
+ #(updatedWiki)#::
#(/updatedWiki)#
+ #(updatedBlog)#::
#(/updatedBlog)#
#(isCrawling)#::
#(/isCrawling)#
#[shortname]# |
diff --git a/htroot/Network.java b/htroot/Network.java
index 746d3d107..a7e1dfe1f 100644
--- a/htroot/Network.java
+++ b/htroot/Network.java
@@ -49,6 +49,7 @@
import java.util.Enumeration;
import java.util.HashMap;
import java.util.HashSet;
+import java.util.Map;
import java.io.IOException;
import de.anomic.http.httpHeader;
import de.anomic.http.httpc;
@@ -255,9 +256,9 @@ public class Network {
} else if (record.category().equals("prfleupd")) {
updatedProfile.add(record.originator());
} else if (record.category().equals("wiki_upd")) {
- updatedWiki.put(record.originator(), record.attributes().get("page"));
+ updatedWiki.put(record.originator(), record.attributes());
} else if (record.category().equals("blog_add")) {
- updatedBlog.put(record.originator(), record.attributes().get("page"));
+ updatedBlog.put(record.originator(), record.attributes());
} else if (record.category().equals("crwlstrt")) {
isCrawling.put(record.originator(), record.attributes().get("startURL"));
}
@@ -276,8 +277,8 @@ public class Network {
}
int p;
String startURL;
- String wikiPage;
- String blogPage;
+ Map wikiMap;
+ Map blogMap;
String userAgent, location;
int PPM;
long myValue=0, nextValue=0, prevValue=0, nextPPM=0, myPPM=0;
@@ -316,21 +317,20 @@ public class Network {
prop.put(STR_TABLE_LIST + conCount + "_updatedProfile", 1);
prop.put(STR_TABLE_LIST + conCount + "_updatedProfile_hash", seed.hash);
}
- if ((wikiPage = (String) updatedWiki.get(seed.hash)) == null) {
- prop.put(STR_TABLE_LIST + conCount + "_updatedWikiPage", 0);
+ if ((wikiMap = (Map) updatedWiki.get(seed.hash)) == null) {
+ prop.put(STR_TABLE_LIST + conCount + "_updatedWiki", 0);
} else {
- prop.put(STR_TABLE_LIST + conCount + "_updatedWikiPage", 1);
- prop.put(STR_TABLE_LIST + conCount + "_updatedWikiPage_page", wikiPage);
- prop.put(STR_TABLE_LIST + conCount + "_updatedWikiPage_address", seed.getAddress());
- prop.put(STR_TABLE_LIST + conCount + "_updatedWikiPage_name", seed.get(yacySeed.NAME, "deadlink"));
+ prop.put(STR_TABLE_LIST + conCount + "_updatedWiki", 1);
+ prop.put(STR_TABLE_LIST + conCount + "_updatedWiki_page", (String) wikiMap.get("page"));
+ prop.put(STR_TABLE_LIST + conCount + "_updatedWiki_address", seed.getAddress());
}
- if ((blogPage = (String) updatedBlog.get(seed.hash)) == null) {
+ if ((blogMap = (Map) updatedBlog.get(seed.hash)) == null) {
prop.put(STR_TABLE_LIST + conCount + "_updatedBlog", 0);
} else {
prop.put(STR_TABLE_LIST + conCount + "_updatedBlog", 1);
- prop.put(STR_TABLE_LIST + conCount + "_updatedBlog_page", blogPage);
+ prop.put(STR_TABLE_LIST + conCount + "_updatedBlog_page", (String) blogMap.get("page"));
+ prop.put(STR_TABLE_LIST + conCount + "_updatedBlog_subject", (String) blogMap.get("subject"));
prop.put(STR_TABLE_LIST + conCount + "_updatedBlog_address", seed.getAddress());
- prop.put(STR_TABLE_LIST + conCount + "_updatedBlog_name", seed.get(yacySeed.NAME, "deadlink"));
}
try {
PPM = Integer.parseInt(seed.get(yacySeed.ISPEED, "-"));
diff --git a/htroot/PerformanceMemory_p.html b/htroot/PerformanceMemory_p.html
index b3c6c627a..5fdeb3639 100644
--- a/htroot/PerformanceMemory_p.html
+++ b/htroot/PerformanceMemory_p.html
@@ -81,8 +81,8 @@
@@ -90,13 +90,10 @@
-Totals |
+Totals |
#[usedTotal]# MB |
#[currTotal]# MB |
#[dfltTotal]# MB |
@@ -370,7 +331,7 @@ Increasing this cache may speed up crawling, but not much space is needed, so th
-Re-Configuration: |
+Re-Configuration: |
these custom values |
all default values |
all recom- mended values |