Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for content_title (0.26 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/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)
  3. 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)
  4. 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)
  5. 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)
  6. 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