|
@@ -166,6 +166,9 @@ public interface FessConfig extends FessEnv, org.codelibs.fess.mylasta.direction
|
|
|
/** The key of the configuration. e.g. false */
|
|
|
String CRAWLER_IGNORE_META_ROBOTS = "crawler.ignore.meta.robots";
|
|
|
|
|
|
+ /** The key of the configuration. e.g. true */
|
|
|
+ String CRAWLER_IGNORE_CONTENT_EXCEPTION = "crawler.ignore.content.exception";
|
|
|
+
|
|
|
/** The key of the configuration. e.g. resourceName,X-Parsed-By,Content-Encoding.*,Content-Type.* */
|
|
|
String CRAWLER_METADATA_CONTENT_EXCLUDES = "crawler.metadata.content.excludes";
|
|
|
|
|
@@ -1497,6 +1500,20 @@ public interface FessConfig extends FessEnv, org.codelibs.fess.mylasta.direction
|
|
|
*/
|
|
|
boolean isCrawlerIgnoreMetaRobots();
|
|
|
|
|
|
+ /**
|
|
|
+ * Get the value for the key 'crawler.ignore.content.exception'. <br>
|
|
|
+ * The value is, e.g. true <br>
|
|
|
+ * @return The value of found property. (NotNull: if not found, exception but basically no way)
|
|
|
+ */
|
|
|
+ String getCrawlerIgnoreContentException();
|
|
|
+
|
|
|
+ /**
|
|
|
+ * Is the property for the key 'crawler.ignore.content.exception' true? <br>
|
|
|
+ * The value is, e.g. true <br>
|
|
|
+ * @return The determination, true or false. (if not found, exception but basically no way)
|
|
|
+ */
|
|
|
+ boolean isCrawlerIgnoreContentException();
|
|
|
+
|
|
|
/**
|
|
|
* Get the value for the key 'crawler.metadata.content.excludes'. <br>
|
|
|
* The value is, e.g. resourceName,X-Parsed-By,Content-Encoding.*,Content-Type.* <br>
|
|
@@ -4688,6 +4705,14 @@ public interface FessConfig extends FessEnv, org.codelibs.fess.mylasta.direction
|
|
|
return is(FessConfig.CRAWLER_IGNORE_META_ROBOTS);
|
|
|
}
|
|
|
|
|
|
+ public String getCrawlerIgnoreContentException() {
|
|
|
+ return get(FessConfig.CRAWLER_IGNORE_CONTENT_EXCEPTION);
|
|
|
+ }
|
|
|
+
|
|
|
+ public boolean isCrawlerIgnoreContentException() {
|
|
|
+ return is(FessConfig.CRAWLER_IGNORE_CONTENT_EXCEPTION);
|
|
|
+ }
|
|
|
+
|
|
|
public String getCrawlerMetadataContentExcludes() {
|
|
|
return get(FessConfig.CRAWLER_METADATA_CONTENT_EXCLUDES);
|
|
|
}
|