Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 191 for displayed (0.05 sec)

  1. src/main/java/org/codelibs/fess/app/pager/ProtwordsPager.java

        private boolean existPrePage;
    
        /** Whether a next page exists. */
        private boolean existNextPage;
    
        /** The list of page numbers for pagination display. */
        private List<Integer> pageNumberList;
    
        /** The number of items to display per page. */
        private int pageSize;
    
        /** The current page number. */
        private int currentPageNumber;
    
        /** The dictionary ID */
        public String id;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.3K bytes
    - Viewed (0)
  2. src/main/webapp/js/suggestor.js

                    $boxElement.html("");
                    $boxElement.append($olEle);
                    $boxElement.css("display", "block");
                  } else {
                    $boxElement.css("display", "none");
                  }
                } else {
                  $boxElement.css("display", "none");
                }
                this.resize();
    
                suggestingSts = false;
              },
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Mar 30 05:45:24 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/dict/synonym/AdminDictSynonymAction.java

        //                                                                      Search Execute
        //                                                                      ==============
        /**
         * Displays the main synonym dictionary index page.
         *
         * @param form the search form containing search criteria
         * @return HTML response for the synonym dictionary index page
         */
        @Execute
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 23.7K bytes
    - Viewed (1)
  4. src/main/java/org/codelibs/fess/app/pager/JobLogPager.java

        /**
         * Gets the list of page numbers for pagination display.
         * This list is typically used to render pagination controls in the UI.
         *
         * @return the list of page numbers
         */
        public List<Integer> getPageNumberList() {
            return pageNumberList;
        }
    
        /**
         * Sets the list of page numbers for pagination display.
         *
         * @param pageNumberList the list of page numbers
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/dict/protwords/EditForm.java

         */
        @Required
        @ValidateTypeFailure
        public Long id;
    
        /**
         * Returns a display-friendly identifier combining the dictionary ID and entry ID.
         * This method creates a composite identifier for UI display purposes.
         *
         * @return A string in the format "dictId:id" for display purposes
         */
        public String getDisplayId() {
            return dictId + ":" + id;
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/PathMappingHelper.java

                }
            }
            return result;
        }
    
        /**
         * Replaces URL for display or URL converter.
         *
         * @param url the URL to replace
         * @return the replaced URL
         */
        public String replaceUrl(final String url) { // for display or url converer
            if (cachedPathMappingList == null) {
                synchronized (this) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/fileauth/AdminFileauthAction.java

        /**
         * Displays the file authentication list page.
         *
         * @return HTML response for the list page
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse index() {
            return asListHtml();
        }
    
        /**
         * Displays the file authentication list with pagination.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/wizard/AdminWizardAction.java

        //                                                                      Search Execute
        //                                                                      ==============
    
        /**
         * Displays the wizard index page.
         *
         * @return HTML response for the wizard main page
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse index() {
            return asIndexHtml();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 15.8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistAction.java

            return ROLE;
        }
    
        // ===================================================================================
        // Search Execute
        // ==============
        /**
         * Displays the search list management index page.
         *
         * @param form the list form for filtering
         * @return HTML response for the search list 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.1K bytes
    - Viewed (1)
  10. src/main/webapp/WEB-INF/fe.tld

      xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-jsptaglibrary_2_0.xsd"
      version="2.0">
        
      <description>JSTL 1.1 functions library</description>
      <display-name>JSTL functions</display-name>
      <tlib-version>1.1</tlib-version>
      <short-name>fe</short-name>
      <uri>fess.tags.functions</uri>
      
      <function>
        <description>
          Print HTML tag.
        </description>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jan 18 11:38:54 UTC 2025
    - 10.3K bytes
    - Viewed (0)
Back to top