Properly render json string attributes in the crawl profile html editor

pull/186/head
luccioman 7 years ago
parent 4d9aa4ed1e
commit b159564c72

@ -42,8 +42,7 @@ public class CrawlProfileEditor_p {
private final static String CRAWL_PROFILE_PREFIX = "crawlProfiles_"; private final static String CRAWL_PROFILE_PREFIX = "crawlProfiles_";
private static final String EDIT_ENTRIES_PREFIX = "edit_entries_"; private static final String EDIT_ENTRIES_PREFIX = "edit_entries_";
public static serverObjects respond( public static serverObjects respond(final RequestHeader header,
@SuppressWarnings("unused") final RequestHeader header,
final serverObjects post, final serverObjects post,
final serverSwitch env) { final serverSwitch env) {
final servletProperties prop = new servletProperties(); final servletProperties prop = new servletProperties();
@ -160,7 +159,7 @@ public class CrawlProfileEditor_p {
prop.put(EDIT_ENTRIES_PREFIX + count + "_readonly_type_checked", prop.put(EDIT_ENTRIES_PREFIX + count + "_readonly_type_checked",
val == null ? "0" : Boolean.parseBoolean(val) ? "1" : "0"); val == null ? "0" : Boolean.parseBoolean(val) ? "1" : "0");
} else { } else {
prop.put(EDIT_ENTRIES_PREFIX + count + "_readonly_type_value", val == null ? "" : val); prop.put(header.fileType(), EDIT_ENTRIES_PREFIX + count + "_readonly_type_value", val == null ? "" : val);
} }
count++; count++;
} }

Loading…
Cancel
Save