Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 24 for highlighted (0.07 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/main/java/org/codelibs/fess/entity/HighlightInfo.java

     */
    public class HighlightInfo {
        /** The highlighting type (e.g., plain, html). */
        private String type;
        /** The size of each highlighted fragment in characters. */
        private int fragmentSize;
        /** The maximum number of highlighted fragments to return. */
        private int numOfFragments;
        /** The offset for fragment positioning. */
        private int fragmentOffset;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 05 10:17:07 GMT 2026
    - 5.2K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/entity/QueryContext.java

         */
        public void setDefaultField(final String defaultField) {
            this.defaultField = defaultField;
        }
    
        /**
         * Gets the set of highlighted query terms.
         * @return The set of highlighted query terms, or empty set if not initialized.
         */
        public Set<String> getHighlightedQuerySet() {
            return highlightedQuerySet != null ? highlightedQuerySet : new HashSet<>();
        }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Tue Aug 19 14:09:36 GMT 2025
    - 9.4K bytes
    - Click Count (0)
  3. src/main/webapp/css/admin/adminlte.min.css

    r--default .select2-red .select2-results__option--highlighted,.select2-red .select2-container--default .select2-results__option--highlighted{background-color:#dc3545;color:#fff}.select2-container--default .select2-red .select2-results__option--highlighted[aria-selected],.select2-container--default .select2-red .select2-results__option--highlighted[aria-selected]:hover,.select2-red .select2-container--default .select2-results__option--highlighted[aria-selected],.select2-red .select2-container--default...
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Oct 26 01:49:09 GMT 2024
    - 1.3M bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/helper/ViewHelper.java

                throw new FessSystemException("Cannot load facet from cache.", e);
            }
        }
    
        /**
         * Creates highlighted text from highlight field fragments.
         *
         * @param highlightField the highlight field containing fragments
         * @return the combined highlighted text
         */
        public String createHighlightText(final HighlightField highlightField) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 52.6K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/helper/ViewHelperTest.java

        @Test
        public void test_removeHighlightTag() {
            ViewHelper viewHelper = new ViewHelper();
            viewHelper.init();
    
            String text = "highlighted text";
            String result = viewHelper.removeHighlightTag(text);
            assertEquals("highlighted text", result);
    
            text = "normal text";
            result = viewHelper.removeHighlightTag(text);
            assertEquals("normal text", result);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 27.8K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/it/admin/CrawlerLogTests.java

            final String contentTitle = (String) item.get("content_title");
            assertTrue(contentTitle.contains("<strong>CodeLibs</strong>"),
                    "content_title should contain highlighted 'CodeLibs': " + contentTitle);
        }
    
        private void testDeleteSearchList() {
            final Map<String, Object> requestBody = new HashMap<>();
            requestBody.put("q", "CodeLibs");
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Mar 30 14:01:34 GMT 2026
    - 13.4K bytes
    - Click Count (0)
  7. src/main/resources/fess_config.properties

    # Tag to use before highlighted text.
    query.highlight.tag.pre=<strong>
    # Tag to use after highlighted text.
    query.highlight.tag.post=</strong>
    # Boundary characters for query highlighting.
    query.highlight.boundary.chars=u0009u000Au0013u0020
    # Maximum scan for query highlight boundaries.
    query.highlight.boundary.max.scan=20
    # Scanner type for query highlight boundaries.
    query.highlight.boundary.scanner=chars
    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)
  8. src/test/java/org/codelibs/fess/query/QueryFieldConfigTest.java

            String[] fields = { "highlight1", "highlight2", "highlight3" };
            queryFieldConfig.setHighlightedFields(fields);
    
            String[] result = queryFieldConfig.getHighlightedFields();
            assertSame(fields, result);
        }
    
        @Test
        public void test_setHighlightedFields() {
            String[] fields = { "highlight1", "highlight2", "highlight3" };
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 33.6K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/util/PrunedTagTest.java

        }
    
        @Test
        public void test_matches_withCss() {
            PrunedTag tag = new PrunedTag("div");
            tag.setCss("highlight");
    
            // Node with matching CSS class
            MockNode nodeWithClass = new MockNode("div");
            nodeWithClass.addAttribute("class", "highlight");
            assertTrue(tag.matches(nodeWithClass));
    
            // Node with multiple classes including target
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 21.1K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/helper/QueryHelper.java

        }
    
        /**
         * Sets the prefix used for highlight field names in search results.
         *
         * @param highlightPrefix the prefix string to use for highlight fields
         */
        public void setHighlightPrefix(final String highlightPrefix) {
            this.highlightPrefix = highlightPrefix;
        }
    
        /**
         * Gets the current highlight prefix used for highlight field names.
         *
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 19.9K bytes
    - Click Count (0)
Back to Top