small fixes

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@5464 6c8d7289-2bf4-0310-a012-ef5d649a1542
pull/1/head
orbiter 16 years ago
parent f675d47f86
commit b2a8c653ee

@ -36,7 +36,7 @@ public class blacklists {
final List<String> dirlist = listManager.getDirListing(listManager.listsPath); final List<String> dirlist = listManager.getDirListing(listManager.listsPath);
int blacklistCount=0; int blacklistCount=0;
final String blackListName = post.get("listname", ""); final String blackListName = (post == null) ? "" : post.get("listname", "");
List<String> list; List<String> list;
int count; int count;

@ -1,6 +1,6 @@
<?xml version="1.0"?> <?xml version="1.0"?>
<webstructure> <webstructure>
<domains reference="forward" count="#[domains]#" maxref="#[maxref]#"> <domains reference="reverse" count="#[domains]#" maxref="#[maxref]#">
#{domains}# #{domains}#
<domain host="#[domain]#" id="#[hash]#" date="#[date]#"> <domain host="#[domain]#" id="#[hash]#" date="#[date]#">
#{citations}# #{citations}#

@ -38,7 +38,7 @@ public class plasmaDHTTransfer extends Thread {
// connection properties // connection properties
private boolean gzipBody4Transfer = false; private boolean gzipBody4Transfer = false;
private int timeout4Transfer = 60000; private int timeout4Transfer;
// status fields // status fields
private boolean stopped = false; private boolean stopped = false;

Loading…
Cancel
Save