*) fixed warning when compiling listManager

*) fixed display of values of information for which part of YaCy (crawler, proxy, ...) blacklist is activated for
*) replaced regular put() with putXML() in several cases

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@5305 6c8d7289-2bf4-0310-a012-ef5d649a1542
pull/1/head
low012 16 years ago
parent 444575e33d
commit baae3d91b1

@ -1,6 +1,6 @@
// /xml/blacklists_p.java // /xml/blacklists_p.java
// ------------------------------- // -------------------------------
// (C) 2006 Alexander Schier // (C) 2006 Alexander Schier, changes by Marc Nause
// part of YaCy // part of YaCy
// //
// This program is free software; you can redistribute it and/or modify // This program is free software; you can redistribute it and/or modify
@ -20,7 +20,6 @@
package xml; package xml;
import java.io.File; import java.io.File;
import java.util.ArrayList;
import java.util.List; import java.util.List;
import de.anomic.data.listManager; import de.anomic.data.listManager;
@ -39,11 +38,11 @@ public class blacklists_p {
final List<String> dirlist = listManager.getDirListing(listManager.listsPath); final List<String> dirlist = listManager.getDirListing(listManager.listsPath);
int blacklistCount=0; int blacklistCount=0;
ArrayList<String> list; List<String> list;
int count; int count;
if (dirlist != null) { if (dirlist != null) {
for (String element : dirlist) { for (String element : dirlist) {
prop.putHTML("lists_" + blacklistCount + "_name", element); prop.putXML("lists_" + blacklistCount + "_name", element);
if (listManager.listSetContains("BlackLists.Shared", element)) { if (listManager.listSetContains("BlackLists.Shared", element)) {
prop.put("lists_" + blacklistCount + "_shared", "1"); prop.put("lists_" + blacklistCount + "_shared", "1");
@ -53,9 +52,9 @@ public class blacklists_p {
final String[] types = indexAbstractReferenceBlacklist.BLACKLIST_TYPES_STRING.split(","); final String[] types = indexAbstractReferenceBlacklist.BLACKLIST_TYPES_STRING.split(",");
for (int j=0; j<types.length; j++) { for (int j=0; j<types.length; j++) {
prop.put("lists_" + blacklistCount + "_types_" + j + "_name", types[j]); prop.putXML("lists_" + blacklistCount + "_types_" + j + "_name", types[j]);
prop.put("lists_" + blacklistCount + "_types_" + j + "_value", prop.put("lists_" + blacklistCount + "_types_" + j + "_value",
listManager.listSetContains(types[j] + ".Blacklist", element) ? 1 : 0); listManager.listSetContains(types[j] + ".BlackLists", element) ? 1 : 0);
} }
prop.put("lists_" + blacklistCount + "_types", types.length); prop.put("lists_" + blacklistCount + "_types", types.length);
@ -68,7 +67,7 @@ public class blacklists_p {
if (nextEntry.length() == 0) continue; if (nextEntry.length() == 0) continue;
if (nextEntry.startsWith("#")) continue; if (nextEntry.startsWith("#")) continue;
prop.putHTML("lists_" + blacklistCount + "_items_" + count + "_item", nextEntry); prop.putXML("lists_" + blacklistCount + "_items_" + count + "_item", nextEntry);
count++; count++;
} }
prop.put("lists_" + blacklistCount + "_items", count); prop.put("lists_" + blacklistCount + "_items", count);

@ -234,7 +234,7 @@ public class listManager {
* @return array of file names * @return array of file names
*/ */
public static List<String> getDirListing(final File dir){ public static List<String> getDirListing(final File dir){
List<String> ret = new LinkedList(); List<String> ret = new LinkedList<String>();
File[] fileList; File[] fileList;
if (dir != null ) { if (dir != null ) {

Loading…
Cancel
Save