- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 486 for pageY (0.03 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/searchlog/AdminSearchlogAction.java
/** * Displays the search log management index page. * * @return HTML response for the search log list page */ @Execute @Secured({ ROLE, ROLE + VIEW }) public HtmlResponse index() { saveToken(); return asListHtml(); } /** * Displays a paginated list of search log entries. * * @param pageNumber the page number to display
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 10.4K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/searchlog/admin_searchlog.jsp
arg0="${f:h(pager.currentPageNumber)}" arg1="${f:h(pager.allPageCount)}" arg2="${f:h(pager.allRecordCount)}"/> </div> </div>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Feb 13 07:47:04 UTC 2020 - 16K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/stopwords/AdminDictStopwordsAction.java
*/ protected void searchPaging(final RenderData data, final SearchForm form) { // page navi RenderDataUtil.register(data, "stopwordsItemItems", stopwordsService.getStopwordsList(form.dictId, stopwordsPager)); // restore from pager BeanUtil.copyBeanToBean(stopwordsPager, form, op -> { op.exclude(Constants.PAGER_CONVERSION_RULE); }); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 20.3K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/common/admin/crud/pagination.jsp
styleClass="page-link" href="list/${p}">${p}</la:link></li> </c:forEach> <c:if test="${pager.existNextPage}"> <li class="page-item"><la:link styleClass="page-link" href="list/${pager.currentPageNumber + 1}"> <la:message key="labels.next_page" /> </la:link></li> </c:if> <c:if test="${!pager.existNextPage}">
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Fri Feb 07 10:28:50 UTC 2020 - 1.5K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/dict/protwords/admin_dict_protwords.jsp
arg2="${f:h(pager.allRecordCount)}"/> </div> <div class="col-sm-10"> <ul class="pagination pagination-sm m-0 float-right"> <c:if test="${pager.existPrePage}">
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Feb 13 07:47:04 UTC 2020 - 9.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/GroupService.java
public GroupService() { // Default constructor } /** * Retrieves a paginated list of groups based on the provided pager criteria. * Updates the pager with pagination information including page numbers and ranges. * * @param groupPager the pager containing pagination and search criteria * @return a list of groups matching the criteria */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/error/ErrorBadrequrestAction.java
import org.codelibs.fess.app.web.base.FessSearchAction; import org.lastaflute.web.Execute; import org.lastaflute.web.response.HtmlResponse; /** * Action class for handling HTTP 400 Bad Request error pages. * This action displays error pages when a client request contains * invalid syntax or cannot be fulfilled due to malformed request parameters. */ public class ErrorBadrequrestAction extends FessSearchAction { /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dataconfig/AdminDataconfigAction.java
/** * Show the index page. * @return The HTML response. */ @Execute @Secured({ ROLE, ROLE + VIEW }) public HtmlResponse index() { return asListHtml(); } /** * Show the list page. * @param pageNumber The page number. * @param form The search form. * @return The HTML response. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 19.9K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/boostdoc/admin_boostdoc.jsp
</div> <c:set var="pager" value="${boostDocPager}" scope="request"/> <c:import url="/WEB-INF/view/common/admin/crud/pagination.jsp"/> <c:if test="${pager.currentPageNumber > pager.allPageCount}">
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Mar 31 05:47:05 UTC 2020 - 7.5K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/dataconfig/admin_dataconfig.jsp
<c:set var="pager" value="${dataConfigPager}" scope="request"/> <c:import url="/WEB-INF/view/common/admin/crud/pagination.jsp"/> <c:if test="${pager.currentPageNumber > pager.allPageCount}"> <script>location.href = "${contextPath}/admin/dataconfig/list/${pager.allPageCount}";</script>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Mar 31 05:47:05 UTC 2020 - 9.3K bytes - Viewed (0)