Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for rendering (0.03 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/systeminfo/AdminSysteminfoAction.java

        /**
         * Registers environment variables for rendering.
         *
         * @param data the render data to populate
         */
        protected void registerEnvItems(final RenderData data) {
            RenderDataUtil.register(data, "envItems", getEnvItems());
        }
    
        /**
         * Registers system properties for rendering.
         *
         * @param data the render data to populate
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/help/HelpAction.java

        /**
         * Handles the help page request and renders the help interface.
         * This method performs authentication checks and sets up the necessary
         * form parameters and rendering data for the help page display.
         *
         * @return HtmlResponse containing the rendered help page or redirect to login if authentication is required
         */
        @Execute
        public HtmlResponse index() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/sereq/AdminSereqAction.java

            }
            return null;
        }
    
        /**
         * Creates an HTML response for the list page with optional pre-processing.
         *
         * @param runnable optional runnable to execute before rendering (can be null)
         * @return HTML response for the search request list page
         */
        private HtmlResponse asListHtml(final Runnable runnable) {
            if (runnable != null) {
                runnable.run();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistAction.java

         * Web-specific implementation of SearchRenderData for rendering search results in the admin interface.
         */
        protected static class WebRenderData extends SearchRenderData {
    
            /**
             * Default constructor.
             */
            protected WebRenderData() {
                super();
            }
    
            /**
             * Registers all search-related data for rendering in the web interface.
             *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 23.1K bytes
    - Viewed (1)
  5. src/main/java/org/codelibs/fess/app/web/admin/searchlog/AdminSearchlogAction.java

            saveToken();
            return asHtml(path_AdminSearchlog_AdminSearchlogJsp).renderWith(data -> {
                searchPaging(data, form);
            });
        }
    
        /**
         * Sets up search paging data for rendering the search log list.
         *
         * @param data the render data to populate
         * @param form the search form containing current search criteria
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 10.4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/reqheader/AdminReqheaderAction.java

            return asHtml(path_AdminReqheader_AdminReqheaderJsp).renderWith(data -> {
                searchPaging(data, form);
            });
        }
    
        /**
         * Sets up search paging data for rendering the request header list.
         *
         * @param data the render data to populate
         * @param form the search form containing current search criteria
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 18.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/duplicatehost/AdminDuplicatehostAction.java

            return asHtml(path_AdminDuplicatehost_AdminDuplicatehostJsp).renderWith(data -> {
                searchPaging(data, form);
            });
        }
    
        /**
         * Sets up search pagination data for rendering.
         *
         * @param data the render data to populate
         * @param form the search form
         */
        protected void searchPaging(final RenderData data, final SearchForm form) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 16.3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/entity/SearchRenderData.java

     */
    package org.codelibs.fess.entity;
    
    import java.util.List;
    import java.util.Map;
    
    import org.codelibs.fess.util.FacetResponse;
    
    /**
     * Data container for search results rendering.
     *
     * This class holds all the data needed to render search results in the UI,
     * including the actual search results, pagination information, facet data,
     * execution timing, and highlighting parameters.
     */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 12.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/keymatch/AdminKeymatchAction.java

        //                                                                               Hook
        //                                                                              ======
        /**
         * Sets up HTML data for rendering, including help link.
         *
         * @param runtime the action runtime
         */
        @Override
        protected void setupHtmlData(final ActionRuntime runtime) {
            super.setupHtmlData(runtime);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 16.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/joblog/AdminJoblogAction.java

        //                                                                               Hook
        //                                                                              ======
        /**
         * Sets up HTML data for rendering, including help link.
         *
         * @param runtime the action runtime
         */
        @Override
        protected void setupHtmlData(final ActionRuntime runtime) {
            super.setupHtmlData(runtime);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 10.6K bytes
    - Viewed (0)
Back to top