Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 181 - 190 of 243 for Jsp (0.02 seconds)

  1. src/main/resources/fess_message_zh_TW.properties

    errors.could_not_find_log_file = 未找到 {0}。
    errors.failed_to_start_crawl_process = 啟動爬網程序失敗。
    errors.invalid_design_jsp_file_name = 無效的JSP檔案名稱。
    errors.design_jsp_file_does_not_exist = JSP檔案不存在。
    errors.design_file_name_is_not_found = 未指定檔案名稱。
    errors.failed_to_write_design_image_file = 無法上傳圖像檔案。
    errors.failed_to_update_jsp_file = 更新JSP檔案失敗。
    errors.design_file_name_is_invalid = 檔案名稱無效。
    errors.design_file_is_unsupported_type = 此檔案類型不支援。
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 12K bytes
    - Click Count (0)
  2. dbflute_fess/dfprop/lastafluteMap.dfprop

        ; isUseLastaEnv = false
    
        # settings for web applications
        ; appMap = map:{
            ; fess = map:{
                ; path = ..
                ; freeGenList = list:{ env ; config ; label ; message ; mail ; template ; jsp ; doc }
                ; configPluginInterface = org.codelibs.fess.mylasta.direction.FessProp
                ; propertiesHtmlList = list:{ env ; config ; label ; message }
            }
        }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun May 20 08:20:11 GMT 2018
    - 2.2K bytes
    - Click Count (0)
  3. src/main/resources/fess_message.properties

    errors.invalid_design_jsp_file_name = Invalid JSP file.
    errors.design_jsp_file_does_not_exist = The JSP file does not exist.
    errors.design_file_name_is_not_found = The file name is not specified.
    errors.failed_to_write_design_image_file = Failed to upload an image file.
    errors.failed_to_update_jsp_file = Failed to update the JSP file.
    errors.design_file_name_is_invalid = The file name is invalid.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 12.4K bytes
    - Click Count (0)
  4. src/main/resources/fess_message_en.properties

    errors.invalid_design_jsp_file_name = Invalid JSP file.
    errors.design_jsp_file_does_not_exist = The JSP file does not exist.
    errors.design_file_name_is_not_found = The file name is not specified.
    errors.failed_to_write_design_image_file = Failed to upload an image file.
    errors.failed_to_update_jsp_file = Failed to update the JSP file.
    errors.design_file_name_is_invalid = The file name is invalid.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 12.4K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/design/AdminDesignAction.java

                final File webInfDir = new File(getServletContext().getRealPath("/WEB-INF"));
                if (!isValidUploadPath(jspFile, webInfDir)) {
                    logger.warn("Path traversal attempt detected in JSP file path: path={}", path);
                    throwValidationError(messages -> messages.addErrorsInvalidDesignJspFileName(GLOBAL), this::asListHtml);
                }
    
                if (!jspFile.exists()) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Jan 23 23:57:26 GMT 2026
    - 20.1K bytes
    - Click Count (0)
  6. src/main/resources/fess_message_zh_CN.properties

    errors.could_not_find_log_file = 未找到 {0}。
    errors.failed_to_start_crawl_process = 启动爬网进程失败。
    errors.invalid_design_jsp_file_name = 无效的JSP文件名。
    errors.design_jsp_file_does_not_exist = JSP文件不存在。
    errors.design_file_name_is_not_found = 未指定文件名。
    errors.failed_to_write_design_image_file = 无法上传图像文件。
    errors.failed_to_update_jsp_file = 更新JSP文件失败。
    errors.design_file_name_is_invalid = 文件名无效。
    errors.design_file_is_unsupported_type = 此文件类型不受支持。
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 12K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/mylasta/creator/PagerCreatorTest.java

            }
    
            @Override
            public String getViewRootPath() {
                return "/WEB-INF/view";
            }
    
            @Override
            public String getViewExtension() {
                return ".jsp";
            }
    
            @Override
            public String getImplementationPackageName() {
                return "impl";
            }
    
            @Override
            public String getConverterPackageName() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 13.7K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/FessBoot.java

                System.setProperty(JAVA_IO_TMPDIR, tempPath);
            }
    
            final TomcatBoot tomcatBoot = new FessBoot(getPort(), getContextPath()) //
                    .useTldDetect(); // for JSP
            final String varPath = System.getProperty(FESS_VAR_PATH);
            if (varPath != null) {
                tomcatBoot.atBaseDir(new File(varPath, "webapp").getAbsolutePath());
            } else if (tempPath != null) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 11.3K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/app/web/admin/design/AdminDesignActionTest.java

            }
            file.delete();
        }
    
        // ===================================================================================
        //                                                                           JSP Codec
        //                                                                           =========
        @Test
        public void test_decodeJsp() {
            assertEquals("&lt;% a %&gt;", AdminDesignAction.decodeJsp("<% a %>"));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 13.6K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/duplicatehost/AdminDuplicatehostAction.java

                return entity;
            });
        }
    
        // ===================================================================================
        //                                                                              JSP
        //                                                                           =========
    
        private HtmlResponse asListHtml() {
            return asHtml(path_AdminDuplicatehost_AdminDuplicatehostJsp).renderWith(data -> {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 20 13:56:35 GMT 2025
    - 15.6K bytes
    - Click Count (0)
Back to Top