Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 266 for pagh (0.02 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/pathmap/AdminPathmapAction.java

        /**
         * Displays the main path mapping administration page.
         *
         * @param form the search form containing search criteria
         * @return HTML response for the path mapping list page
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse index(final SearchForm form) {
            return asListHtml();
        }
    
        /**
         * Displays the path mapping list with pagination support.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 16K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/dict/DictionaryFile.java

            }
    
            /**
             * Returns the page size (number of records per page).
             *
             * @return the page size
             */
            public int getPageSize() {
                return pageSize;
            }
    
            /**
             * Returns the current page number (1-based).
             *
             * @return the current page number
             */
            public int getCurrentPageNumber() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.2K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/api/WebApiRequestTest.java

        public void test_getServletPath_withSAStrutsMethodInMiddle_returnsSuperPath() {
            final String originalPath = "/original/path";
            final String customPath = "/api/v1/search";
            mockRequest.setServletPath(originalPath);
            mockRequest.setQueryString("query=test&SAStruts.method=execute&page=1");
            webApiRequest = new WebApiRequest(mockRequest, customPath);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 17.5K bytes
    - Viewed (0)
  4. okhttp/src/commonJvmAndroid/kotlin/okhttp3/Cookie.kt

          this.domain = canonicalDomain
          this.hostOnly = hostOnly
        }
    
        fun path(path: String) =
          apply {
            require(path.startsWith("/")) { "path must start with '/'" }
            this.path = path
          }
    
        fun secure() =
          apply {
            this.secure = true
          }
    
        fun httpOnly() =
          apply {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon May 05 16:01:00 UTC 2025
    - 23.1K bytes
    - Viewed (0)
  5. src/main/webapp/WEB-INF/view/admin/storage/admin_storage.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">
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu May 26 01:48:41 UTC 2022
    - 20.4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/dict/mapping/AdminDictMappingAction.java

            return asHtml(path_AdminDictMapping_AdminDictMappingJsp).renderWith(data -> {
                searchPaging(data, form);
            });
        }
    
        /**
         * Show the list page.
         * @param pageNumber The page number.
         * @param form The search form.
         * @return The HTML response.
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 22.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/dict/stopwords/AdminDictStopwordsAction.java

        //                                                                      ==============
        /**
         * Display the stopwords index page.
         *
         * @param form the search form
         * @return HTML response for the index page
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse index(final SearchForm form) {
            validate(form, messages -> {}, this::asDictIndexHtml);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 20.3K 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/wizard/AdminWizardAction.java

                    || path.startsWith("ftp:") || path.startsWith("storage:")) {
                return path;
            }
    
            if (path.startsWith("www.")) {
                return "http://" + path;
            }
    
            if (path.startsWith("//")) {
                return "file://" + path;
            }
            if (path.startsWith("/")) {
                return "file:" + path;
            }
            if (!path.startsWith("file:")) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 15.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/base/FessSearchAction.java

         *
         * @param path the HTML path to process
         * @return the processed path with virtual host handling applied
         */
        protected HtmlNext virtualHost(final HtmlNext path) {
            return ComponentUtil.getVirtualHostHelper().getVirtualHostPath(path);
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 13.8K bytes
    - Viewed (0)
Back to top