Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 425 for Page (0.22 sec)

  1. src/main/java/org/codelibs/fess/app/web/error/ErrorAction.java

        //                                                                      ==============
        /**
         * Displays the general error page.
         *
         * @param form the error form containing error information
         * @return HTML response for the error page
         */
        @Execute
        public HtmlResponse index(final ErrorForm form) {
            return asHtml(virtualHost(path_Error_ErrorJsp));
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  2. src/main/webapp/css/admin/adminlte.min.css.map

    #6c757d;\n}\n\n.dark-mode .page-item .page-link {\n  color: #3f6791;\n}\n\n.dark-mode .page-item.active .page-link {\n  background-color: #3f6791;\n  border-color: #3f6791;\n  color: #fff;\n}\n\n.dark-mode .page-item.active .page-link:hover, .dark-mode .page-item.active .page-link:focus {\n  color: #ced4da !important;\n}\n\n.dark-mode .page-item:not(.active) .page-link {\n  background-color: #343a40;\n  border-color: #6c757d;\n}\n\n.dark-mode .page-item:not(.active) .page-link:hover, .dark-mode .p...
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Oct 26 01:49:09 UTC 2024
    - 3.7M bytes
    - Viewed (1)
  3. src/main/webapp/WEB-INF/orig/view/error/notFound.jsp

    	rel="stylesheet" type="text/css" />
    </head>
    <body class="error">
    	<jsp:include page="../header.jsp" />
    	<main class="container">
    		<div class="text-center">
    			<h2>
    				<la:message key="labels.page_not_found_title" />
    			</h2>
    			<div>
    				<la:message key="labels.check_url" />
    				<br /> ${f:h(url)}
    			</div>
    		</div>
    	</main>
    	<jsp:include page="../footer.jsp" />
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jan 18 12:09:07 UTC 2025
    - 1.5K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/view/admin/scheduler/admin_scheduler_edit.jsp

    <%@page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8" %><!DOCTYPE html>
    <html>
    <head>
        <meta charset="UTF-8">
        <title><la:message key="labels.admin_brand_title"/> | <la:message
                key="labels.scheduledjob_configuration"/></title>
        <jsp:include page="/WEB-INF/view/common/admin/head.jsp"></jsp:include>
    </head>
    <body class="hold-transition sidebar-mini">
    <div class="wrapper">
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Mon Jan 16 12:54:35 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/searchlog/SearchForm.java

        /**
         * The size field for controlling page size.
         */
        public String size;
    
        /**
         * Sets the page size for search log results.
         *
         * @param size the page size to set
         */
        public void setPageSize(final int size) {
            this.size = Integer.toString(size);
        }
    
        /**
         * Gets the page size for search log results with validation.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/api/WebApiRequestTest.java

            assertNotNull(webApiRequest);
            assertNull(webApiRequest.servletPath);
        }
    
        public void test_constructor_withSpecialCharactersInPath() {
            final String servletPath = "/api/v1/search?query=test&page=1";
            webApiRequest = new WebApiRequest(mockRequest, servletPath);
            assertNotNull(webApiRequest);
            assertEquals(servletPath, webApiRequest.servletPath);
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 17.5K bytes
    - Viewed (0)
  7. src/main/webapp/WEB-INF/view/admin/dict/stopwords/admin_dict_stopwords_edit.jsp

    <%@page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8" %><!DOCTYPE html>
    <html>
    <head>
        <meta charset="UTF-8">
        <title><la:message key="labels.admin_brand_title"/> | <la:message
                key="labels.dict_stopwords_configuration"/></title>
        <jsp:include page="/WEB-INF/view/common/admin/head.jsp"></jsp:include>
    </head>
    <body class="hold-transition sidebar-mini">
    <div class="wrapper">
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 6.9K bytes
    - Viewed (0)
  8. src/main/resources/fess_label_en.properties

    labels.advance_search_filetype_powerpoint=MS PowerPoint
    labels.advance_search_occt=Occurence
    labels.advance_search_occt_default=Anywhere in the page
    labels.advance_search_occt_allintitle=in the title of the page
    labels.advance_search_occt_allinurl=in the URL of the page
    labels.advance_search_sitesearch=Site or domain
    labels.advance_search_timestamp=Last update
    labels.advance_search_timestamp_default=Anytime
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 40.7K bytes
    - Viewed (0)
  9. 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)
  10. src/main/webapp/WEB-INF/view/admin/elevateword/admin_elevateword_details.jsp

    <%@page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8" %><!DOCTYPE html>
    <html>
    <head>
        <meta charset="UTF-8">
        <title><la:message key="labels.admin_brand_title"/> | <la:message
                key="labels.elevate_word_configuration"/></title>
        <jsp:include page="/WEB-INF/view/common/admin/head.jsp"></jsp:include>
    </head>
    <body class="hold-transition sidebar-mini">
    <div class="wrapper">
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 8.3K bytes
    - Viewed (0)
Back to top