Skip to content

Commit

Permalink
more escapes
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@1677 6c8d7289-2bf4-0310-a012-ef5d649a1542
  • Loading branch information
allo committed Feb 16, 2006
1 parent 2d4e132 commit 26d7e8d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions htroot/xml/queues_p.java
Expand Up @@ -122,7 +122,7 @@ public static serverObjects respond(httpHeader header, serverObjects post, serve
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());
Expand Down Expand Up @@ -175,8 +175,8 @@ public static serverObjects respond(httpHeader header, serverObjects post, serve
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());
Expand Down

0 comments on commit 26d7e8d

Please sign in to comment.