Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 208 for onload (0.2 sec)

  1. src/main/resources/fess_label_en.properties

    labels.design_configuration=Page Design
    labels.design_title_file_upload=File to Upload
    labels.design_title_file=File Manager
    labels.design_file=Upload File
    labels.design_file_name=File Name (optional)
    labels.design_button_upload=Upload
    labels.design_file_title_edit=View Page File
    labels.design_edit_button=Edit
    labels.design_download_button=Download
    labels.design_delete_button=Delete
    labels.design_use_default_button=Use Default
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 40.7K bytes
    - Viewed (0)
  2. src/main/resources/fess_message.properties

    errors.failed_to_download_kuromoji_file = Failed to download a Kuromoji file.
    errors.failed_to_upload_kuromoji_file = Failed to upload a Kuromoji file.
    errors.failed_to_download_protwords_file = Failed to download a protwords file.
    errors.failed_to_upload_protwords_file = Failed to upload a protwords file.
    errors.failed_to_download_stopwords_file = Failed to download a stopwords file.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 11.6K bytes
    - Viewed (0)
  3. src/main/resources/fess_message_en.properties

    errors.failed_to_download_kuromoji_file = Failed to download a Kuromoji file.
    errors.failed_to_upload_kuromoji_file = Failed to upload a Kuromoji file.
    errors.failed_to_download_protwords_file = Failed to download a protwords file.
    errors.failed_to_upload_protwords_file = Failed to upload a protwords file.
    errors.failed_to_download_stopwords_file = Failed to download a stopwords file.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  4. src/main/resources/fess_label.properties

    labels.design_configuration=Page Design
    labels.design_title_file_upload=File to Upload
    labels.design_title_file=File Manager
    labels.design_file=Upload File
    labels.design_file_name=File Name (optional)
    labels.design_button_upload=Upload
    labels.design_file_title_edit=View Page File
    labels.design_edit_button=Edit
    labels.design_download_button=Download
    labels.design_delete_button=Delete
    labels.design_use_default_button=Use Default
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jun 28 08:40:50 UTC 2025
    - 40.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/dict/stopwords/AdminDictStopwordsAction.java

                });
            });
        }
    
        /**
         * Download the stopwords file.
         *
         * @param form the download form containing dictionary ID
         * @return action response with the file download stream
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public ActionResponse download(final DownloadForm form) {
            validate(form, messages -> {}, () -> downloadpage(form.dictId));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 20.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/api/admin/dict/protwords/ApiAdminDictProtwordsAction.java

        }
    
        /**
         * Upload protected words file for the specified dictionary.
         *
         * @param dictId identifier of the dictionary
         * @param form upload form containing the file and metadata
         * @return JSON response indicating the API result status
         */
        // PUT /api/admin/dict/protwords/upload/{dictId}
        @Execute
        public JsonResponse<ApiResult> put$upload(final String dictId, final UploadForm form) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/backup/AdminBackupAction.java

        public HtmlResponse index() {
            saveToken();
            return asListHtml();
        }
    
        /**
         * Upload a file.
         * @param form The upload form.
         * @return The HTML response.
         */
        @Execute
        @Secured({ ROLE })
        public HtmlResponse upload(final UploadForm form) {
            validate(form, messages -> {}, this::asListHtml);
            verifyToken(this::asListHtml);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 29.8K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/dict/protwords/ProtwordsFileTest.java

        }
    
        public void test_update() {
            // Load data first
            protwordsFile.reload(null);
    
            // Get an existing item
            ProtwordsItem item = protwordsFile.get(1).get();
            item.setNewInput("updatedWord");
    
            // Update the item
            protwordsFile.update(item);
    
            // Verify the update
            protwordsFile.reload(null);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 20.8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/api/admin/badword/ApiAdminBadwordAction.java

        }
    
        /**
         * Downloads bad word settings as a CSV file.
         *
         * @param body the download request body containing download parameters
         * @return stream response containing the CSV file data
         */
        // GET /api/admin/badword/download
        @Execute
        public StreamResponse get$download(final DownloadBody body) {
            validateApi(body, messages -> {});
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/dict/mapping/AdminDictMappingAction.java

                });
            });
        }
    
        /**
         * Download a char mapping file.
         * @param form The download form.
         * @return The action response.
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public ActionResponse download(final DownloadForm form) {
            validate(form, messages -> {}, () -> downloadpage(form.dictId));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 22.3K bytes
    - Viewed (0)
Back to top