From 26d7e8dd0d12c72dfcc4439f41707f1a1a6def6d Mon Sep 17 00:00:00 2001 From: allo Date: Thu, 16 Feb 2006 22:19:04 +0000 Subject: [PATCH] more escapes git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@1677 6c8d7289-2bf4-0310-a012-ef5d649a1542 --- htroot/xml/queues_p.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/htroot/xml/queues_p.java b/htroot/xml/queues_p.java index b3395ae07..3a7a8f70d 100644 --- a/htroot/xml/queues_p.java +++ b/htroot/xml/queues_p.java @@ -122,7 +122,7 @@ public class queues_p { prop.put("list-indexing_"+i+"_depth", pcentry.depth()); prop.put("list-indexing_"+i+"_modified", (pcentry.responseHeader() == null) ? "" : daydate(pcentry.responseHeader().lastModified())); prop.put("list-indexing_"+i+"_anchor", (pcentry.anchorName()==null)?"":wikiCode.replaceHTML(pcentry.anchorName())); - prop.put("list-indexing_"+i+"_url", wikiCode.replaceHTML(pcentry.normalizedURLString())); + prop.putNoHTML("list-indexing_"+i+"_url", pcentry.normalizedURLString()); prop.put("list-indexing_"+i+"_size", entrySize); prop.put("list-indexing_"+i+"_inProcess", (inProcess)?1:0); prop.put("list-indexing_"+i+"_hash", pcentry.urlHash()); @@ -175,8 +175,8 @@ public class queues_p { initiator = yacyCore.seedDB.getConnected(urle.initiator()); profileHandle = urle.profileHandle(); profileEntry = (profileHandle == null) ? null : switchboard.profiles.getEntry(profileHandle); - prop.put("list-local_"+showNum+"_initiator", ((initiator == null) ? "proxy" : wikiCode.replaceHTML(initiator.getName())) ); - prop.put("list-local_"+showNum+"_profile", ((profileEntry == null) ? "unknown" : profileEntry.name())); + prop.put("list-local_"+showNum+"_initiator", ((initiator == null) ? "proxy" : initiator.getName()) ); + prop.putNoHTML("list-local_"+showNum+"_profile", ((profileEntry == null) ? "unknown" : profileEntry.name())); prop.put("list-local_"+showNum+"_depth", urle.depth()); prop.put("list-local_"+showNum+"_modified", daydate(urle.loaddate()) ); prop.putNoHTML("list-local_"+showNum+"_anchor", urle.name());