Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for content_title (0.07 sec)

  1. src/test/java/org/codelibs/fess/it/admin/CrawlerLogTests.java

            logger.info("results: {}", results);
            Map<String, Object> item = results.get(0);
            logger.info("item: {}", item);
            assertTrue(item.containsKey("content_title"));
            assertEquals("<strong>CodeLibs</strong> Project", item.get("content_title"));
        }
    
        private void testDeleteSearchList() {
            final Map<String, Object> requestBody = new HashMap<>();
            requestBody.put("q", "CodeLibs");
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 9.1K bytes
    - Viewed (0)
  2. src/main/webapp/WEB-INF/view/searchResults.jsp

    			<li id="result${s.index}">
    				<h3 class="title text-truncate">
    					<a class="link" href="${doc.url_link}" data-uri="${doc.url_link}"
    						data-id="${doc.doc_id}" data-order="${s.index}">${doc.content_title}</a>
    				</h3>
    				<div class="body">
    					<c:if test="${thumbnailSupport && !empty doc.thumbnail}">
    					<div class="me-3">
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jan 18 05:32:37 UTC 2025
    - 9.1K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/query/QueryTestBase.java

                    return "content_description";
                }
    
                @Override
                public String getResponseFieldContentTitle() {
                    return "content_title";
                }
    
                @Override
                public String getResponseFieldSitePath() {
                    return "site_path";
                }
    
                @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 14.6K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/orig/view/searchResults.jsp

    			<li id="result${s.index}">
    				<h3 class="title text-truncate">
    					<a class="link" href="${doc.url_link}" data-uri="${doc.url_link}"
    						data-id="${doc.doc_id}" data-order="${s.index}">${doc.content_title}</a>
    				</h3>
    				<div class="body">
    					<c:if test="${thumbnailSupport && !empty doc.thumbnail}">
    					<div class="me-3">
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jan 18 05:32:37 UTC 2025
    - 9.1K bytes
    - Viewed (0)
  5. src/main/config/openapi/openapi-user.yaml

                            title:
                              type: string
                              example: "Open Source Enterprise Search Server: Fess — Fess 11.0 documentation"
                            content_title:
                              type: string
                              example: "Open Source Enterprise Search Server: Fess — Fe..."
                            digest:
                              type: string
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu May 09 06:31:27 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/query/QueryFieldConfigTest.java

                    return "content_description";
                }
    
                @Override
                public String getResponseFieldContentTitle() {
                    return "content_title";
                }
    
                @Override
                public String getResponseFieldSitePath() {
                    return "site_path";
                }
    
                @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 33.2K bytes
    - Viewed (0)
  7. src/main/resources/fess_config.properties

    index.field.thumbnail=thumbnail
    # Field name for virtual host in the index.
    index.field.virtual_host=virtual_host
    # Field name for content title in the response.
    response.field.content_title=content_title
    # Field name for content description in the response.
    response.field.content_description=content_description
    # Field name for URL link in the response.
    response.field.url_link=url_link
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 14:45:37 UTC 2025
    - 54.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g. virtual_host */
        String INDEX_FIELD_virtual_host = "index.field.virtual_host";
    
        /** The key of the configuration. e.g. content_title */
        String RESPONSE_FIELD_content_title = "response.field.content_title";
    
        /** The key of the configuration. e.g. content_description */
        String RESPONSE_FIELD_content_description = "response.field.content_description";
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 525.6K bytes
    - Viewed (1)
  9. src/main/java/org/codelibs/fess/rank/fusion/DefaultSearcher.java

            if (Constants.TEXT_FRAGMENT_TYPE_QUERY.equals(fessConfig.getQueryHighlightTextFragmentType())) {
                docMap.put(Constants.TEXT_FRAGMENTS, viewHelper.createTextFragmentsByQuery());
            }
    
            // ContentTitle
            if (viewHelper != null) {
                docMap.put(fessConfig.getResponseFieldContentTitle(), viewHelper.getContentTitle(docMap));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 12.6K bytes
    - Viewed (0)
Back to top