- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 245 for titles (0.08 sec)
-
src/main/java/org/codelibs/fess/helper/DocumentHelper.java
*/ public String getTitle(final ResponseData responseData, final String title, final Map<String, Object> dataMap) { if (title == null) { return StringUtil.EMPTY; // empty } final int[] spaceChars = getSpaceChars(); try (final Reader reader = new StringReader(title)) {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 17.4K bytes - Viewed (0) -
src/main/resources/fess_indices/fess.json
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Jun 06 14:17:42 UTC 2025 - 39.8K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/storage/admin_storage.jsp
<%@page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8"%><!DOCTYPE html> ${fe:html(true)} <head> <meta charset="UTF-8"> <title><la:message key="labels.admin_brand_title"/> | <la:message key="labels.storage_configuration"/></title> <jsp:include page="/WEB-INF/view/common/admin/head.jsp"></jsp:include> </head> <body class="hold-transition sidebar-mini"> <div class="wrapper">
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 13 05:54:52 UTC 2025 - 20.7K bytes - Viewed (0) -
MIGRATION.md
solr_data = json.load(f) # Transform documents fess_docs = [] for doc in solr_data['response']['docs']: fess_doc = { "url": doc.get("id", ""), "title": doc.get("title", [""])[0] if isinstance(doc.get("title"), list) else doc.get("title", ""), "content": doc.get("content", [""])[0] if isinstance(doc.get("content"), list) else doc.get("content", ""), "mimetype": "text/html", "filetype": "html",
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 06 12:40:11 UTC 2025 - 23.2K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/entity/ResponseDataTest.java
data.setNoFollow(false); byte[] content = "HTML content".getBytes(StandardCharsets.UTF_8); data.setResponseBody(content); // Add metadata data.addMetaData("title", "Test Page"); data.addMetaData("description", "Test description"); // Add child URLs RequestData child1 = new RequestData(); child1.setUrl("https://example.com/child1");
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 13 13:29:22 UTC 2025 - 14.3K bytes - Viewed (0) -
ADDING_NEW_LANGUAGE.md
### Auto-Generated Files Never edit these files manually (marked with `@author FreeGen`): - `FessLabels.java` - `FessMessages.java` Always regenerate them using `mvn dbflute:freegen` ## Complete Example: Adding Swedish (sv) ```bash # 1. Navigate to resources directory cd src/main/resources # 2. Copy base files cp fess_label_en.properties fess_label_sv.properties
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 06 11:36:30 UTC 2025 - 10.4K bytes - Viewed (0) -
LICENSE
(a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, andRegistered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Jan 11 04:26:17 UTC 2021 - 11.1K bytes - Viewed (0) -
LICENSE
(a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, andRegistered: Sat Dec 20 08:54:13 UTC 2025 - Last Modified: Thu Feb 20 19:53:57 UTC 2020 - 11.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/http/NetworkExplorer.java
out = resp.getWriter(); resp.setContentType("text/html"); out.println("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">"); out.println("<html><head><title>Network Explorer</title>"); out.println("<meta HTTP-EQUIV=\"Pragma\" CONTENT=\"no-cache\">"); out.println("<style TYPE=\"text/css\">"); out.println(style); if (dirents.length < 200) {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 22.6K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/entity/ExtractDataTest.java
// Test putValue method ExtractData data = new ExtractData(); data.putValue("title", "Test Title"); data.putValue("author", "John Doe"); String[] titleValues = data.getValues("title"); assertNotNull(titleValues); assertEquals(1, titleValues.length); assertEquals("Test Title", titleValues[0]); String[] authorValues = data.getValues("author");Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 9.9K bytes - Viewed (0)