Merge pull request #437 from lifeofguenter/feature/fix-banner-typo

Fix typo + remove dead seeds
pull/461/head
Michael Christen 3 years ago committed by GitHub
commit 1d7f657620
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -57,11 +57,7 @@ network.unit.remotecrawl.speed = 300
# addresses of seed-list bootstrap locations # addresses of seed-list bootstrap locations
network.unit.bootstrap.seedlist0 = http://sixcooler.de/yacy/seed.txt network.unit.bootstrap.seedlist0 = http://sixcooler.de/yacy/seed.txt
network.unit.bootstrap.seedlist1 = http://rptr.me/yacy/seed.txt network.unit.bootstrap.seedlist1 = http://rptr.me/yacy/seed.txt
network.unit.bootstrap.seedlist2 = https://yacy.tschability.ch/seed.txt network.unit.bootstrap.seedlist2 = http://5.45.105.16/yacyseed
network.unit.bootstrap.seedlist3 = http://www1.isg.hamshack.info/seed.txt
network.unit.bootstrap.seedlist4 = http://5.45.105.16/yacyseed
network.unit.bootstrap.seedlist5 = http://berndkwasnik.de/yacy/seed.txt
network.unit.bootstrap.seedlist6 = http://yacy.1a-referenzen.de/seed.txt
# each network may use different yacy distributions. # each network may use different yacy distributions.
# the auto-updater can access network-specific update locations # the auto-updater can access network-specific update locations
@ -77,6 +73,6 @@ network.unit.protocol.control = uncontrolled
network.unit.access.whitelist = 10\..*,127\..*,172\.(1[6-9]|2[0-9]|3[0-1])\..*,169\.254\..*,192\.168\..*,localhost network.unit.access.whitelist = 10\..*,127\..*,172\.(1[6-9]|2[0-9]|3[0-1])\..*,169\.254\..*,192\.168\..*,localhost
network.unit.access.blacklist = network.unit.access.blacklist =
# greedy learning: fast information acquisition heuristic for new peers # greedy learning: fast information acquisition heuristic for new peers
greedylearning.enabled = true greedylearning.enabled = true
greedylearning.limit.doccount = 1000 greedylearning.limit.doccount = 1000

@ -60,7 +60,7 @@ public class Banner {
textcolor = post.get("textcolor", textcolor); textcolor = post.get("textcolor", textcolor);
bordercolor = post.get("bordercolor", bordercolor); bordercolor = post.get("bordercolor", bordercolor);
width = post.getInt("width", width); width = post.getInt("width", width);
height = post.getInt("heigth", height); height = post.getInt("height", height);
} }
String name = ""; String name = "";

Loading…
Cancel
Save