From 6f5ea7b1a8c4a9689b210dead421b4c36f52c42d Mon Sep 17 00:00:00 2001 From: apfelmaennchen Date: Sat, 25 Apr 2009 21:28:08 +0000 Subject: [PATCH] small fix for previous post git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@5879 6c8d7289-2bf4-0310-a012-ef5d649a1542 --- htroot/yacy/ui/yacyui-view-log.html | 1 + source/de/anomic/server/serverObjects.java | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/htroot/yacy/ui/yacyui-view-log.html b/htroot/yacy/ui/yacyui-view-log.html index 634411ae5..a322737a2 100644 --- a/htroot/yacy/ui/yacyui-view-log.html +++ b/htroot/yacy/ui/yacyui-view-log.html @@ -62,6 +62,7 @@ var param = [ { name : 'lines', value : "200" } + ,{ name : 'json', value : "true" } ,{ name : 'filter', value : ".*.*" } ,{ name : 'reverse', value : "true"} ]; diff --git a/source/de/anomic/server/serverObjects.java b/source/de/anomic/server/serverObjects.java index 6a068518b..826a1ec77 100644 --- a/source/de/anomic/server/serverObjects.java +++ b/source/de/anomic/server/serverObjects.java @@ -151,7 +151,6 @@ public class serverObjects extends HashMap implements Cloneable * @param key key name as String. * @param value a String that will be reencoded for JSON output. * @return the modified String that was added to the map. - * @see htmlFilterCharacterCoding#encodeUnicode2json(String, boolean) */ public String putJSON(final String key, String value) { value = value.replaceAll("\"", "\\\"");