Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for templates (0.05 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/design/DesignForm.java

     * Handles upload and management of design templates and CSS files.
     */
    public class DesignForm {
    
        /**
         * Creates a new instance of DesignForm.
         * This constructor initializes the form for design file management
         * in the admin interface, handling upload and management of templates and CSS files.
         */
        public DesignForm() {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/script/ScriptEngine.java

         *
         * @param template the template string to evaluate
         * @param paramMap the map of parameters to substitute into the template
         * @return the result of evaluating the template, or null if evaluation fails
         */
        Object evaluate(final String template, final Map<String, Object> paramMap);
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/design/UploadForm.java

     * that customize the look and feel of the search application.
     */
    public class UploadForm {
    
        /**
         * The multipart file containing design resources to be uploaded.
         * This can include CSS files, JSP templates, images, or other design assets.
         */
        @Required
        public MultipartFormFile designFile;
    
        /**
         * The name for the design file being uploaded.
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/RelatedContentHelper.java

         * pattern rather than an exact match term.
         */
        protected String regexPrefix = "regex:";
    
        /**
         * Placeholder string used in regex-based related content templates.
         * This placeholder is replaced with the actual search query when
         * a regex pattern matches the query.
         */
        protected String queryPlaceHolder = "__QUERY__";
    
        /**
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 8.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessMailDeliveryDepartmentCreator.java

            final MessageManager messageManager = getMessageManager();
            return new SMailDogmaticPostalPersonnel() {
    
                // *if you need user locale switching or templates from database,
                // override createConventionReceptionist() (see the method for the details)
                @Override
                protected SMailConventionReceptionist createConventionReceptionist() {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/script/groovy/GroovyEngine.java

         * @throws JobProcessingException if the script explicitly throws this exception
         *         (allows scripts to signal job-specific errors that should propagate)
         */
        @Override
        public Object evaluate(final String template, final Map<String, Object> paramMap) {
            // Null-safety: return null for blank templates
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 5.5K bytes
    - Viewed (0)
  7. CLAUDE.md

    ├── fess_label_*.properties    # UI labels (i18n)
    ├── fess_message_*.properties  # Validation messages (i18n)
    └── fess_indices/              # OpenSearch index mappings
    
    src/main/webapp/WEB-INF/view/  # JSP templates
    ```
    
    ## DBFlute Code Generation
    
    DBFlute generates type-safe data access code for OpenSearch indices:
    
    ```bash
    mvn dbflute:freegen
    ```
    
    Generated code:
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 4.8K bytes
    - Viewed (0)
  8. ADDING_NEW_LANGUAGE.md

    - **Special cases**: Kurdish uses `fess_label_ckb_IQ.properties`
    
    ## Step-by-Step Guide
    
    ### 1. Create Language Resource Files
    
    Copy the base English files as templates:
    
    ```bash
    cd src/main/resources
    
    # Copy label file (~1,056 translation entries)
    cp fess_label_en.properties fess_label_[your_locale].properties
    
    # Copy message file (~200 translation entries)
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 06 11:36:30 UTC 2025
    - 10.4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/util/ResourceUtil.java

            return getPath("WEB-INF/", "orig", names);
        }
    
        /**
         * Gets the path to email template files directory.
         *
         * @param names the path components to append to the mail template directory
         * @return the Path object pointing to the mail template directory
         */
        public static Path getMailTemplatePath(final String... names) {
            return getPath("WEB-INF/", "mail", names);
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 14.1K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/maintenance/AdminMaintenanceAction.java

                { "aliases", "allocation", "count", "fielddata", "health", "indices", "master", "nodeattrs", "nodes", "pending_tasks",
                        "plugins", "recovery", "repositories", "thread_pool", "shards", "segments", "snapshots", "templates" };
    
        // ===================================================================================
        //                                                                           Attribute
        //
    
        /**
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 18.1K bytes
    - Viewed (0)
Back to top