- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for pagingQueryList (0.1 sec)
-
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)); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 12.3K bytes - Viewed (0) -
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";
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 16.9K bytes - Viewed (0) -
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";
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Aug 22 12:43:18 UTC 2024 - 16.6K bytes - Viewed (0)