Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 129 for Page (0.14 sec)

  1. src/main/webapp/WEB-INF/view/admin/storage/admin_storage_tag_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.storage_configuration" /></title>
    <jsp:include page="/WEB-INF/view/common/admin/head.jsp"></jsp:include>
    </head>
    <body class="hold-transition sidebar-mini">
    	<div class="wrapper">
    		<jsp:include page="/WEB-INF/view/common/admin/header.jsp"></jsp:include>
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu May 26 01:48:41 GMT 2022
    - 4.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/pager/ReqHeaderPager.java

    import org.codelibs.fess.util.ComponentUtil;
    
    public class ReqHeaderPager implements Serializable {
    
        private static final long serialVersionUID = 1L;
    
        public static final int DEFAULT_PAGE_SIZE = 20;
    
        public static final int DEFAULT_CURRENT_PAGE_NUMBER = 1;
    
        private int allRecordCount;
    
        private int allPageCount;
    
        private boolean existPrePage;
    
        private boolean existNextPage;
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/pager/RoleTypePager.java

    import org.codelibs.fess.util.ComponentUtil;
    
    public class RoleTypePager implements Serializable {
    
        private static final long serialVersionUID = 1L;
    
        public static final int DEFAULT_PAGE_SIZE = 20;
    
        public static final int DEFAULT_CURRENT_PAGE_NUMBER = 1;
    
        private int allRecordCount;
    
        private int allPageCount;
    
        private boolean existPrePage;
    
        private boolean existNextPage;
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/pager/FileConfigPager.java

    import org.codelibs.fess.util.ComponentUtil;
    
    public class FileConfigPager implements Serializable {
    
        private static final long serialVersionUID = 1L;
    
        public static final int DEFAULT_PAGE_SIZE = 20;
    
        public static final int DEFAULT_CURRENT_PAGE_NUMBER = 1;
    
        private int allRecordCount;
    
        private int allPageCount;
    
        private boolean existPrePage;
    
        private boolean existNextPage;
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.8K bytes
    - Viewed (0)
  5. src/main/webapp/WEB-INF/orig/view/error/badRequest.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.request_error_title" />
    			</h2>
    			<div class="errormessage"><la:message key="labels.bad_request" /></div>
    		</div>
    	</main>
    	<jsp:include page="../footer.jsp" />
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Feb 17 12:13:41 GMT 2023
    - 1.4K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/util/GsaConfigParserTest.java

            assertEscapePattern("^\\Qhttp://\\E.*", "^http://");
            assertEscapePattern(".*\\Qindex.html\\E$", "index.html$");
            assertEscapePattern("^\\Qhttp://www.codelibs.org/page.html\\E$", "^http://www.codelibs.org/page.html$");
            assertEscapePattern("\\Qhttp://www.codelibs.org/\\E.*", "http://www.codelibs.org/");
            assertEscapePattern("\\Qsmb://server/test/\\E.*", "smb://server/test/");
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/search/SearchAction.java

                    if (resultsPerPage instanceof Integer) {
                        form.num = (Integer) resultsPerPage;
                    }
                }
            }
    
            if (StringUtil.isBlank(form.q) && form.fields.isEmpty() && !form.hasConditionQuery()) {
                // redirect to index page
                form.q = null;
                return redirectToRoot();
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12.3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/labeltype/AdminLabeltypeAction.java

            });
        }
    
        protected void searchPaging(final RenderData data, final SearchForm form) {
            RenderDataUtil.register(data, "labelTypeItems", labelTypeService.getLabelTypeList(labelTypePager)); // page navi
    
            // restore from pager
            copyBeanToBean(labelTypePager, form, op -> op.include("name", "value"));
        }
    
        // ===================================================================================
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 15.1K bytes
    - Viewed (0)
  9. src/main/webapp/WEB-INF/view/login/newpassword.jsp

    <%@page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8"%><!DOCTYPE html>
    <html>
    <head profile="http://a9.com/-/spec/opensearch/1.1/">
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <title><la:message key="labels.login.title" /></title>
    <link href="${fe:url('/css/admin/bootstrap.min.css')}" rel="stylesheet" type="text/css" />
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Feb 17 12:13:41 GMT 2023
    - 3K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/thumbnail/ThumbnailForm.java

    import org.lastaflute.web.validation.Required;
    
    public class ThumbnailForm {
    
        @Required
        @Size(max = 100)
        public String docId;
    
        @Required
        public String queryId;
    
        // for error page
    
        public String q;
    
        public String num;
    
        public String sort;
    
        public String lang;
    
        public Map<String, String[]> fields = new HashMap<>();
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.1K bytes
    - Viewed (0)
Back to top