Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for pagingQueryList (0.17 sec)

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

            final List<String> pagingQueryList = new ArrayList<>();
            if (form.ex_q != null) {
                stream(form.ex_q).of(stream -> stream.filter(StringUtil::isNotBlank).distinct()
                        .forEach(q -> pagingQueryList.add("ex_q=" + LaFunctions.u(q))));
            }
            if (StringUtil.isNotBlank(form.sort)) {
                pagingQueryList.add("sort=" + LaFunctions.u(form.sort));
            }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/taglib/FessFunctions.java

            return LaRequestUtil.getOptionalRequest().map(req -> {
                @SuppressWarnings("unchecked")
                final List<String> pagingQueryList = (List<String>) req.getAttribute(Constants.PAGING_QUERY_LIST);
                if (pagingQueryList != null) {
                    final String prefix;
                    if (query != null) {
                        prefix = "ex_q=" + query.split(":")[0] + "%3A";
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/Constants.java

        public static final String MAPPING_TYPE_DATE = "date";
    
        public static final String MAPPING_TYPE_PDF_DATE = "pdf_date";
    
        public static final String PAGING_QUERY_LIST = "pagingQueryList";
    
        public static final String REQUEST_LANGUAGES = "requestLanguages";
    
        public static final String REQUEST_PAGE_SIZE = "requestPageSize";
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.4K bytes
    - Viewed (0)
Back to top