git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@3777 6c8d7289-2bf4-0310-a012-ef5d649a1542
pull/1/head
borg-0300 18 years ago
parent f89517203d
commit 2ab020445a

@ -50,7 +50,6 @@ import java.net.MalformedURLException;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Date; import java.util.Date;
import de.anomic.plasma.plasmaURL;
import de.anomic.index.indexURLEntry; import de.anomic.index.indexURLEntry;
import de.anomic.kelondro.kelondroBase64Order; import de.anomic.kelondro.kelondroBase64Order;
import de.anomic.kelondro.kelondroException; import de.anomic.kelondro.kelondroException;
@ -351,7 +350,7 @@ public class plasmaSwitchboardQueue {
} }
// check profile // check profile
if ((!profile().indexText()) && (!profile().indexMedia())) { if (!profile().indexText() && !profile().indexMedia()) {
return "Indexing_Not_Allowed"; return "Indexing_Not_Allowed";
} }
@ -397,7 +396,7 @@ public class plasmaSwitchboardQueue {
* this method returns null if the answer is 'YES'! * this method returns null if the answer is 'YES'!
* if the answer is 'NO' (do not index), it returns a string with the reason * if the answer is 'NO' (do not index), it returns a string with the reason
* to reject the crawling demand in clear text * to reject the crawling demand in clear text
* *
* This function is used by plasmaSwitchboard#processResourceStack * This function is used by plasmaSwitchboard#processResourceStack
*/ */
public final String shallIndexCacheForCrawler() { public final String shallIndexCacheForCrawler() {
@ -406,7 +405,9 @@ public class plasmaSwitchboardQueue {
} }
// check profile // check profile
if ((!profile().indexText()) && (!profile().indexMedia())) { return "Indexing_Not_Allowed"; } if (!profile().indexText() && !profile().indexMedia() && !profile().remoteIndexing()) {
return "Indexing_Not_Allowed";
}
final String nURL = normalizedURLString(); final String nURL = normalizedURLString();
// -CGI access in request // -CGI access in request

Loading…
Cancel
Save