Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for HtmlNext (0.18 sec)

  1. src/main/java/org/codelibs/fess/mylasta/action/FessHtmlPath.java

        HtmlNext path_AdminBadword_AdminBadwordDownloadJsp = new HtmlNext("/admin/badword/admin_badword_download.jsp");
    
        /** The path of the HTML: /admin/badword/admin_badword_edit.jsp */
        HtmlNext path_AdminBadword_AdminBadwordEditJsp = new HtmlNext("/admin/badword/admin_badword_edit.jsp");
    
        /** The path of the HTML: /admin/badword/admin_badword_upload.jsp */
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Jun 21 04:02:44 UTC 2025
    - 26.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/VirtualHostHelper.java

         * @return The HTML page with updated virtual host path
         */
        public HtmlNext getVirtualHostPath(final HtmlNext page) {
            return processVirtualHost(s -> {
                final String basePath = getVirtualHostBasePath(s, page);
                return new HtmlNext(basePath + page.getRoutingPath());
            }, page);
        }
    
        /**
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/base/FessSearchAction.java

         * virtual host configurations and path modifications.
         *
         * @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: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 13.8K bytes
    - Viewed (0)
Back to top