- Sort Score
- Num 10 results
- Language All
Results 1 - 9 of 9 for mimetype (0.05 seconds)
-
src/main/resources/crawler/rule.xml
</property> <property name="allRequired">true</property> <postConstruct name="addRule"> <arg>"url"</arg> <arg>"http[s]?:.*"</arg> </postConstruct> <postConstruct name="addRule"> <arg>"mimeType"</arg> <!-- Supported MIME type --> <arg>"text/html"</arg> </postConstruct> </component> <component name="webFileRule" class="org.codelibs.fess.crawler.rule.impl.RegexRule" >
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 29 08:21:02 GMT 2026 - 4.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/api/json/SearchApiManager.java
} return buf.toString(); } /** * Sets the MIME type. * @param mimeType The MIME type. */ public void setMimeType(final String mimeType) { this.mimeType = mimeType; }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 27 13:56:32 GMT 2026 - 55.4K bytes - Click Count (1) -
src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java
default boolean isHtmlMimetypeForCache(final String mimetype) { final String[] mimetypes = getCrawlerDocumentCacheHtmlMimetypes().split(","); if (mimetypes.length == 1 && StringUtil.isBlank(mimetypes[0])) { return true; } return stream(mimetypes).get(stream -> stream.anyMatch(s -> s.equalsIgnoreCase(mimetype))); } String getCrawlerDocumentCacheSupportedMimetypes();Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 92.3K bytes - Click Count (0) -
src/main/webapp/WEB-INF/view/admin/searchlist/admin_searchlist_edit.jsp
<label for="doc.mimetype" class="col-sm-3 text-sm-right col-form-label">mimetype</label> <div class="col-sm-9"> <la:errors property="doc.mimetype"/> <la:text styleId="doc.mimetype" property="doc.mimetype" styleClass="form-control"/> </div>Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:38:39 GMT 2026 - 28.1K bytes - Click Count (0) -
src/main/resources/fess_config.properties
index.delete.timeout=3m # Timeout for index health checks. index.health.timeout=10m # Timeout for index indices operations. index.indices.timeout=1m # filetype # Mapping of MIME types to filetype labels for indexing. index.filetype=\ text/html=html\n\ application/msword=word\n\ application/vnd.openxmlformats-officedocument.wordprocessingml.document=word\n\ application/vnd.ms-excel=excel\n\
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 59.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistAction.java
// private static final Logger logger = LogManager.getLogger(AdminSearchlistAction.class); private static final Set<String> STANDARD_EDIT_FIELDS = Set.of("url", "title", "role", "boost", "label", "lang", "mimetype", "filetype", "filename", "content", "has_cache", "cache", "digest", "host", "site", "segment", "config_id", "parent_id", "content_length",Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:38:39 GMT 2026 - 25.5K bytes - Click Count (1) -
src/test/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistActionTest.java
assertTrue(standardFields.contains("boost")); assertTrue(standardFields.contains("label")); assertTrue(standardFields.contains("lang")); assertTrue(standardFields.contains("mimetype")); assertTrue(standardFields.contains("content_length")); assertTrue(standardFields.contains("created")); assertTrue(standardFields.contains("timestamp"));
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:38:39 GMT 2026 - 34.4K bytes - Click Count (0) -
src/main/resources/app.xml
<include path="fess_rankfusion.xml"/> <include path="fess_score.xml"/> <include path="fess_sso.xml"/> <include path="fess_thumbnail.xml"/> <include path="crawler/client.xml" /> <include path="crawler/mimetype.xml" /> <component name="accessTokenHelper" class="org.codelibs.fess.helper.AccessTokenHelper"> </component> <component name="activityHelper" class="org.codelibs.fess.helper.ActivityHelper"> </component>
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
/** The key of the configuration. e.g. text/html */ String CRAWLER_DOCUMENT_CACHE_HTML_MIMETYPES = "crawler.document.cache.html.mimetypes"; /** The key of the configuration. e.g. */ String CRAWLER_DOCUMENT_MIMETYPE_EXTENSION_OVERRIDES = "crawler.document.mimetype.extension.overrides"; /** The key of the configuration. e.g. true */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 576.9K bytes - Click Count (2)