Merge remote-tracking branch 'aleksejs/fixtrans'

Conflicts:
	locales/ru.lng
	
Tried to merge this but I had to made this 'blind'.
Sorry if I deleted something that was right.
pull/1/head
Michael Peter Christen 12 years ago
commit 9ccdd21d76

@ -59,7 +59,7 @@ public class ConfigHTCache_p {
}
// proxyCacheSize
final int newProxyCacheSize = Math.max(post.getInt("maxCacheSize", 64), 4);
final int newProxyCacheSize = Math.max(post.getInt("maxCacheSize", 64), 0);
env.setConfig(SwitchboardConstants.PROXY_CACHE_SIZE, newProxyCacheSize);
Cache.setMaxCacheSize(newProxyCacheSize * 1024L * 1024L);
}

@ -104,7 +104,7 @@ domain.net\/fullpath<==domain.net/полный путь<
\*.sub.domain.net\/\*<==*.sub.domain.net/*<
#sub.domain.\*\/\*<==sub.domain.*/*<
#domain.\*\/\*<==domain.*/*<
a complete <a href=\"http://java.sun.com/j2se/1.5.0/docs/api/java/util/regex/Pattern.html\">regex</a> \(slow\)==полный <a href=\"http://java.sun.com/j2se/1.5.0/docs/api/java/util/regex/Pattern.html\">регулярное выражение</a> \(медленный\)
a complete <a href=\"http://java.sun.com/j2se/1.5.0/docs/api/java/util/regex/Pattern.html\">regex</a> \(slow\)==полное <a href=\"http://java.sun.com/j2se/1.5.0/docs/api/java/util/regex/Pattern.html\">регулярное выражение</a> \(медленно\)
#was removed from blacklist==был удален из черного списка
#was added to the blacklist==был добавлен в черный список
Activate this list for==Использовать этот список для
@ -160,7 +160,7 @@ This file will not contain any additional information==Этот файл не б
#---------------------------
Blacklist Test==Проверка черного списка
Used Blacklist engine:==Использовать черный список
Test list:==Список тестов:
Test list:==Тест списка:
"Test"=="Тест"
The tested URL was==Проверенный URL был
It is blocked for the following cases:==Это блокируется в следующих случаях:
@ -3218,7 +3218,7 @@ Peer Statistics::YaCy Statistics==Peer Statistics::YaCy Statistics
#File: env/templates/simpleheader.template
#---------------------------
Administration<==Администрирование<
>Web Search<==>Веб поиск<
>Web Search<==>Вебпоиск<
>Search Network<==>Поиск сети<
Peer Owner Profile==Профиль владельца пира
Help / YaCy Wiki==Помощь / YaCy Wiki
@ -3258,7 +3258,7 @@ System Update==Обновление системы
Advanced Settings==Расширенные настройки
Parser Configuration==Конфигурация обработки
Local robots.txt==Локальный robots.txt
Web Cache==Веб кэш
Web Cache==Вебкэш
Advanced Properties==Расширенные настройки
#-----------------------------
#File: env/templates/submenuContentIntegration.template

@ -212,6 +212,7 @@ public class Scanner extends Thread {
Service uri;
try {
while ((uri = this.scanqueue.take()) != POISONSERVICE) {
Thread.currentThread().setName("Scanner Start Loop; now: " + uri.getHostName()); // good for debugging
while (this.runner.size() >= this.runnerCount) {
/*for (Runner r: runner.keySet()) {
if (r.age() > 3000) synchronized(r) { r.interrupt(); }
@ -251,6 +252,7 @@ public class Scanner extends Thread {
@Override
public void run() {
try {
Thread.currentThread().setName("Scanner.Runner: Ping to " + this.service.getInetAddress().getHostAddress() + ":" + this.service.getProtocol().port); // good for debugging
if (TimeoutRequest.ping(this.service.getInetAddress().getHostAddress(), this.service.getProtocol().port, Scanner.this.timeout)) {
Access access = this.service.getProtocol() == Protocol.http || this.service.getProtocol() == Protocol.https ? Access.granted : Access.unknown;
Scanner.this.services.put(this.service, access);

@ -192,6 +192,7 @@ public final class Cache {
}
public static void store(final DigestURI url, final ResponseHeader responseHeader, final byte[] file) throws IOException {
if (maxCacheSize == 0) return;
if (responseHeader == null) throw new IOException("Cache.store of url " + url.toString() + " not possible: responseHeader == null");
if (file == null) throw new IOException("Cache.store of url " + url.toString() + " not possible: file == null");
log.logInfo("storing content of url " + url.toString() + ", " + file.length + " bytes");

Loading…
Cancel
Save