try to guess default crawling mode, if none set

pull/1/head
bhoerdzn 11 years ago
parent b4f0c822f2
commit 45cf553bc3

@ -99,10 +99,22 @@ public class CrawlStartExpert_p {
// sitemap needs "crawlingFile" parameter, checked already // sitemap needs "crawlingFile" parameter, checked already
prop.put("crawlingMode_file", "1"); prop.put("crawlingMode_file", "1");
hasMode = true; hasMode = true;
} else if (crawlingMode.equalsIgnoreCase("url")
&& prop.getBoolean("has_crawlingURL")) {
prop.put("crawlingMode_url", "1");
hasMode = true;
} }
// default to URL mode // try to guess mode
if (!hasMode) { if (!hasMode) {
if (prop.getBoolean("has_crawlingURL")) {
prop.put("crawlingMode_url", "1"); prop.put("crawlingMode_url", "1");
} else if (prop.getBoolean("has_sitemapURL")) {
prop.put("crawlingMode_sitemap", "1");
} else if (prop.getBoolean("has_crawlingFile")) {
prop.put("crawlingMode_file", "1");
} else {
prop.put("crawlingMode_url", "1");
}
} }
} else { } else {
// default to URL // default to URL

Loading…
Cancel
Save