Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 33 for highlighter (0.07 sec)

  1. src/main/webapp/css/admin/adminlte.min.css.map

    #80bdff;\n}\n\n.select2-container--default .select2-primary .select2-results__option--highlighted,\n.select2-primary .select2-container--default .select2-results__option--highlighted {\n  background-color: #007bff;\n  color: #fff;\n}\n\n.select2-container--default .select2-primary .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-primary .select2-results__option--highlighted[aria-selected]:hover,\n.select2-primary .select2-container--default .select2-result...
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Oct 26 01:49:09 UTC 2024
    - 3.7M bytes
    - Viewed (1)
  2. 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...
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Oct 26 01:49:09 UTC 2024
    - 1.3M 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/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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/main/java/org/codelibs/fess/app/web/cache/CacheForm.java

     */
    public class CacheForm {
    
        /** Document ID for cache operations. */
        @Required
        @Size(max = 100)
        public String docId;
    
        /** Highlight query parameters. */
        public String[] hq;
    
        /** Search query parameter for error page. */
        public String q;
    
        /** Number of results parameter for error page. */
        public String num;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/entity/QueryContextTest.java

            queryContext.addFieldLog("title", "search");
            queryContext.addFieldLog("title", "term");
            queryContext.addFieldLog(Constants.DEFAULT_FIELD, "search term");
    
            // Add highlighted queries
            queryContext.addHighlightedQuery("search");
            queryContext.addHighlightedQuery("term");
    
            // Skip role query
            queryContext.skipRoleQuery();
    
            // Verify final state
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 17.4K bytes
    - Viewed (0)
Back to top