Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for highlight (0.04 sec)

  1. src/test/java/org/codelibs/fess/util/PrunedTagTest.java

        }
    
        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
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 21K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/ViewHelper.java

        /** Fields that should be highlighted in search results */
        protected String[] highlightedFields;
    
        /** Original highlight tag prefix */
        protected String originalHighlightTagPre = "";
    
        /** Original highlight tag suffix */
        protected String originalHighlightTagPost = "";
    
        /** Configured highlight tag prefix */
        protected String highlightTagPre;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 52.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/entity/SearchRenderData.java

         */
        public void setFacetResponse(final FacetResponse facetResponse) {
            this.facetResponse = facetResponse;
        }
    
        /**
         * Sets additional highlight parameters to append to URLs.
         *
         * @param appendHighlightParams The highlight parameters string
         */
        public void setAppendHighlightParams(final String appendHighlightParams) {
            this.appendHighlightParams = appendHighlightParams;
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 12.5K bytes
    - Viewed (0)
  4. src/main/resources/fess_config.properties

    query.highlight.encoder=default
    # Whether to force source for query highlighting.
    query.highlight.force.source=false
    # Fragmenter type for query highlighting.
    query.highlight.fragmenter=span
    # Offset for query highlight fragments.
    query.highlight.fragment.offset=-1
    # Size for no-match query highlight.
    query.highlight.no.match.size=0
    # Order for query highlight fragments.
    query.highlight.order=score
    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/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.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g. <strong> */
        String QUERY_HIGHLIGHT_TAG_PRE = "query.highlight.tag.pre";
    
        /** The key of the configuration. e.g. </strong> */
        String QUERY_HIGHLIGHT_TAG_POST = "query.highlight.tag.post";
    
        /** The key of the configuration. e.g. u0009u000Au0013u0020 */
        String QUERY_HIGHLIGHT_BOUNDARY_CHARS = "query.highlight.boundary.chars";
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 525.6K bytes
    - Viewed (1)
  7. src/test/java/org/codelibs/fess/query/WildcardQueryCommandTest.java

            assertNotNull(queryBuilder);
    
            // Query was processed successfully
        }
    
        public void test_convertWildcardQuery_emptyHighlight() throws Exception {
            // Test with only wildcards (no highlight text)
            QueryContext queryContext = new QueryContext("***", false);
            WildcardQuery wildcardQuery = new WildcardQuery(new Term(Constants.DEFAULT_FIELD, "***"));
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/rank/fusion/DefaultSearcher.java

    import org.opensearch.common.document.DocumentField;
    import org.opensearch.search.SearchHit;
    import org.opensearch.search.SearchHits;
    import org.opensearch.search.aggregations.Aggregations;
    import org.opensearch.search.fetch.subphase.highlight.HighlightField;
    
    /**
     * Default implementation of RankFusionSearcher that performs standard OpenSearch queries.
     * This searcher handles query execution, response processing, and document highlighting.
     */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  9. src/main/webapp/js/admin/plugins/daterangepicker/daterangepicker.js

                    for (var col = 0; col < 7; col++) {
    
                        var classes = [];
    
                        //highlight today's date
                        if (calendar[row][col].isSame(new Date(), "day"))
                            classes.push('today');
    
                        //highlight weekends
                        if (calendar[row][col].isoWeekday() > 5)
                            classes.push('weekend');
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Oct 26 01:49:09 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/entity/SearchRequestParams.java

        /**
         * Returns the facet info.
         *
         * @return The facet info.
         */
        public abstract FacetInfo getFacetInfo();
    
        /**
         * Returns the highlight info.
         *
         * @return The highlight info.
         */
        public abstract HighlightInfo getHighlightInfo();
    
        /**
         * Returns the sort.
         *
         * @return The sort.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8K bytes
    - Viewed (0)
Back to top