Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 10 for deleteall (0.05 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/main/webapp/WEB-INF/view/admin/searchlist/admin_searchlist.jsp

                                                            </p>
                                                        </div>
                                                        <la:form action="/admin/searchlist/deleteall">
                                                        <div class="modal-footer justify-content-between">
                                                                <la:hidden property="q"/>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 20.1K bytes
    - Click Count (0)
  2. src/main/webapp/WEB-INF/view/admin/joblog/admin_joblog.jsp

                                                                <button type="submit" class="btn btn-outline-light"
                                                                        name="deleteall"
                                                                        value="<la:message key="labels.joblog_delete_all_link" />">
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 11.5K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/helper/SuggestHelper.java

         *
         * @return true if the operation was successful, false otherwise.
         */
        public boolean deleteAllWords() {
            final SuggestDeleteResponse response = suggester.indexer().deleteAll();
            if (response.hasError()) {
                logger.warn("Failed to delete all words.", response.getErrors().get(0));
                return false;
            }
            refresh();
            return true;
        }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 22.3K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/failureurl/AdminFailureurlAction.java

         *
         * @return HTML response redirecting to the failure URL list page
         */
        @Execute
        @Secured({ ROLE })
        public HtmlResponse deleteall() {
            verifyToken(this::asListHtml);
            failureUrlService.deleteAll(failureUrlPager);
            failureUrlPager.clear();
            saveInfo(messages -> messages.addSuccessFailureUrlDeleteAll(GLOBAL));
            return redirect(getClass());
        }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 20 13:56:35 GMT 2025
    - 9.4K bytes
    - Click Count (0)
  5. src/main/webapp/WEB-INF/view/admin/crawlinginfo/admin_crawlinginfo.jsp

                                                                <button type="submit" class="btn btn-outline-light"
                                                                        name="deleteall"
                                                                        value="<la:message key="labels.crawling_info_delete_all_link" />">
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 11.6K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/crawlinginfo/AdminCrawlinginfoAction.java

            return redirect(getClass());
        }
    
        /**
         * Delete all crawling info.
         * @return The HTML response.
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse deleteall() {
            verifyToken(this::asListHtml);
            crawlingInfoService.deleteOldSessions(processHelper.getRunningSessionIdSet());
            crawlingInfoPager.clear();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 20 13:56:35 GMT 2025
    - 11K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/joblog/AdminJoblogAction.java

        }
    
        /**
         * Deletes all job logs.
         *
         * @return HTML response after deletion
         */
        @Execute
        @Secured({ ROLE })
        public HtmlResponse deleteall() {
            verifyToken(this::asListHtml);
            final List<String> jobStatusList = new ArrayList<>();
            jobStatusList.add(Constants.OK);
            jobStatusList.add(Constants.FAIL);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 20 13:56:35 GMT 2025
    - 10.1K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/searchlog/AdminSearchlogAction.java

        /**
         * Deletes all search log entries.
         *
         * @return HTML response redirecting to the list page after deletion
         */
        @Execute
        @Secured({ ROLE })
        public HtmlResponse deleteall() {
            verifyToken(this::asListHtml);
            searchLogPager.clear();
            // TODO delete logs
            saveInfo(messages -> messages.addSuccessCrawlingInfoDeleteAll(GLOBAL));
            return redirect(getClass());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 20 13:56:35 GMT 2025
    - 9.9K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistAction.java

         *
         * @param form the list form containing search criteria
         * @return HTML response redirecting to the list page
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse deleteall(final ListForm form) {
            validate(form, messages -> {}, this::asListHtml);
            verifyToken(this::asListHtml);
            try {
                searchHelper.deleteByQuery(request, form);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:38:39 GMT 2026
    - 25.5K bytes
    - Click Count (1)
  10. src/test/java/org/codelibs/fess/auth/chain/AuthenticationChainTest.java

            chain.delete(user);
    
            assertEquals(1, chain.deleteCalls.size());
            assertEquals(user, chain.deleteCalls.get(0));
        }
    
        // Test delete with null user
        @Test
        public void test_delete_nullUser() {
            TestAuthenticationChain chain = new TestAuthenticationChain();
    
            chain.delete(null);
    
            assertEquals(1, chain.deleteCalls.size());
            assertNull(chain.deleteCalls.get(0));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 14.8K bytes
    - Click Count (0)
Back to Top