Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for facetQuery (0.04 sec)

  1. src/main/webapp/WEB-INF/fe.tld

        </example>
      </function>
    
      <function>
        <description>
          Returns query parameters for Facet.
        </description>
        <name>facetQuery</name>
        <function-class>org.codelibs.fess.taglib.FessFunctions</function-class>
        <function-signature>java.lang.String facetQuery()</function-signature>
        <example>
          ${fe:facetQuery()}
        </example>
      </function>
    
      <function>
        <description>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jan 18 11:38:54 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/api/ApiResult.java

             */
            protected List<Map<String, Object>> facetField;
            /**
             * The list of facet queries and their counts.
             */
            protected List<Map<String, Object>> facetQuery;
    
            /**
             * Populates this response with search render data.
             * @param data The search render data to populate from.
             * @return This ApiDocsResponse instance.
             */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/taglib/FessFunctions.java

        /**
         * Generates URL query parameters for facet filtering.
         *
         * @return URL-encoded query string containing facet parameters
         */
        public static String facetQuery() {
            return createQuery(Constants.FACET_QUERY, FACET_PREFIX);
        }
    
        /**
         * Generates URL query parameters for geographic filtering.
         *
         * @return URL-encoded query string containing geographic parameters
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 25.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/Constants.java

        // View Parameters
        // ============================================================
    
        /** View parameter for facet query information. */
        public static final String FACET_QUERY = "fess.FacetQuery";
    
        /** View parameter for geo query information. */
        public static final String GEO_QUERY = "fess.GeoQuery";
    
        /** View parameter for facet form data. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 34.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/base/FessSearchAction.java

         * by calling buildInitParamMap for both parameter types.
         */
        protected void buildInitParams() {
            buildInitParamMap(viewHelper.getInitFacetParamMap(), Constants.FACET_QUERY, Constants.FACET_FORM);
            buildInitParamMap(viewHelper.getInitGeoParamMap(), Constants.GEO_QUERY, Constants.GEO_FORM);
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 13.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

                            buf.append('}');
                        }
                    }
                    buf.append(']');
                    // facet q
                    buf.append(',');
                    buf.append("\"facet_query\":[");
                    if (facetResponse.getQueryCountMap() != null) {
                        boolean first1 = true;
                        for (final Map.Entry<String, Long> entry : facetResponse.getQueryCountMap().entrySet()) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 54.6K bytes
    - Viewed (0)
Back to top