Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 486 for pageY (0.01 sec)

  1. src/test/java/org/codelibs/fess/util/QueryResponseListTest.java

            assertEquals("1", pageList.get(0));
            assertEquals("6", pageList.get(5));
    
            // Test when current page is at the end
            qrList = new QueryResponseList(null, 190, 10, 0) {
                @Override
                public int size() {
                    return 10;
                }
            };
            qrList.allRecordCount = 200; // 20 pages, current page 20
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 39.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/fileconfig/AdminFileconfigAction.java

        /**
         * Displays the file configuration list page.
         *
         * @return HTML response for the list page
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse index() {
            return asListHtml();
        }
    
        /**
         * Displays the file configuration list with pagination.
         *
         * @param pageNumber the page number
         * @param form the search form
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 20.7K bytes
    - Viewed (0)
  3. src/main/webapp/WEB-INF/view/admin/joblog/admin_joblog.jsp

                                    <c:set var="pager" value="${jobLogPager}" 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/joblog/list/${pager.allPageCount}";</script>
                                    </c:if>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 11.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/accesstoken/AdminAccesstokenAction.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
    - 16.9K bytes
    - Viewed (0)
  5. README.md

    ![Admin UI](https://fess.codelibs.org/_images/fess_admin_dashboard.png)
    
    You can register crawling targets in the Admin UI on the (Web, File, Data Store) crawler configuration pages, and then start the Crawler manually on the [Scheduler page](https://fess.codelibs.org/15.0/admin/scheduler-guide.html).
    
    ## Migration from another search provider
    
    Please see [MIGRATION.md](MIGRATION.md).
    
    ## Data Store
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 06:34:32 UTC 2025
    - 7.2K bytes
    - Viewed (2)
  6. src/main/java/org/codelibs/fess/app/web/admin/dict/stemmeroverride/AdminDictStemmeroverrideAction.java

        /**
         * Display the main index page for stemmer override dictionary management.
         * Clears the pager and shows the initial search form.
         *
         * @param form The search form containing filter criteria
         * @return HTML response for the stemmer override index page
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 23.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/pathmap/AdminPathmapAction.java

         */
        protected void searchPaging(final RenderData data, final SearchForm form) {
            RenderDataUtil.register(data, "pathMappingItems", pathMappingService.getPathMappingList(pathMapPager)); // page navi
    
            // restore from pager
            copyBeanToBean(pathMapPager, form, op -> op.include("regex", "replacement"));
        }
    
        // ===================================================================================
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 16K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/dict/kuromoji/AdminDictKuromojiAction.java

         * @param form The search form.
         */
        protected void searchPaging(final RenderData data, final SearchForm form) {
            // page navi
            RenderDataUtil.register(data, "kuromojiItemItems", kuromojiService.getKuromojiList(form.dictId, kuromojiPager));
    
            // restore from pager
            BeanUtil.copyBeanToBean(kuromojiPager, 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
    - 21.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/service/UserService.java

        @Resource
        protected FessConfig fessConfig;
    
        /**
         * Retrieves a paginated list of users based on the provided pager criteria.
         * Updates the pager with pagination information including total count and page navigation.
         *
         * @param userPager the pager containing search criteria and pagination settings
         * @return a list of users matching the criteria
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/failureurl/EditForm.java

         */
        @Size(max = 1000)
        public String configId;
    
        /**
         * Returns the current page number for pagination.
         * This method provides access to the current page number for UI display.
         *
         * @return The current page number as a string
         */
        public String getCurrentPageNumber() {
            return pageNumber;
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.2K bytes
    - Viewed (0)
Back to top