Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for resultsPerPage (0.07 sec)

  1. src/main/java/org/codelibs/fess/app/web/search/SearchAction.java

                final HttpSession session = request.getSession(false);
                if (session != null) {
                    final Object resultsPerPage = session.getAttribute(Constants.RESULTS_PER_PAGE);
                    if (resultsPerPage instanceof Integer) {
                        form.num = (Integer) resultsPerPage;
                    }
                }
            }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 14K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/base/FessSearchAction.java

            final HttpSession session = request.getSession(false);
            if (session != null) {
                final Object resultsPerPage = session.getAttribute(Constants.RESULTS_PER_PAGE);
                if (resultsPerPage instanceof Integer) {
                    form.num = (Integer) resultsPerPage;
                }
            }
    
            // label
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 13.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/Constants.java

        /** Search log access type for other interfaces. */
        public static final String SEARCH_LOG_ACCESS_TYPE_OTHER = "other";
    
        /** Results per page parameter name. */
        public static final String RESULTS_PER_PAGE = "resultsPerPage";
    
        /** User code parameter name. */
        public static final String USER_CODE = "userCode";
    
        /** Search query field name for logging. */
        public static final String SEARCH_FIELD_LOG_SEARCH_QUERY = "q";
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 34.6K bytes
    - Viewed (0)
Back to top