Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 326 for upload (0.16 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/elevateword/UploadForm.java

     * Elevate words are terms that should be promoted or given higher ranking in search results.
     * This form is used in the admin interface to upload elevate word configuration files.
     */
    public class UploadForm {
    
        /**
         * The multipart file containing the elevate word configurations to be uploaded.
         * This file should contain definitions for words or documents that should be elevated in search results.
         */
        @Required
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.5K bytes
    - Viewed (0)
  2. src/main/resources/fess_label_pt_BR.properties

    labels.key_match_title_details=Correspondência de chave
    labels.design_configuration=Design da página
    labels.design_title_file_upload=Arquivo para upload
    labels.design_title_file=Gerenciador de arquivos
    labels.design_file=Fazer upload de arquivo
    labels.design_file_name=Nome do arquivo (opcional)
    labels.design_button_upload=Fazer upload
    labels.design_file_title_edit=Visualizar arquivo da página
    labels.design_edit_button=Editar
    labels.design_download_button=Baixar
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 45.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/dict/mapping/UploadForm.java

    /**
     * Form for uploading character mapping files to the Fess search engine.
     * Character mapping allows for normalization and transformation of characters during text analysis.
     * This form is used in the admin interface to upload custom character mapping dictionary files.
     */
    public class UploadForm {
    
        /**
         * The dictionary ID that identifies which character mapping dictionary configuration to update.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/dict/synonym/UploadForm.java

    /**
     * Form for uploading synonym files to the Fess search engine.
     * Synonyms are words or phrases that should be treated as equivalent during search operations.
     * This form is used in the admin interface to upload custom synonym dictionary files.
     */
    public class UploadForm {
    
        /**
         * The dictionary ID that identifies which synonym dictionary configuration to update.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/dict/stemmeroverride/AdminDictStemmeroverrideAction.java

        //                                                Upload
        //                                               -------
        /**
         * Display the upload page for stemmer override dictionary file.
         * Shows the current file path and provides upload interface.
         *
         * @param dictId The dictionary ID to upload to
         * @return HTML response for the upload page
         */
        @Execute
        @Secured({ ROLE })
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 23.5K bytes
    - Viewed (0)
  6. src/main/webapp/WEB-INF/view/admin/dict/kuromoji/admin_dict_kuromoji_upload.jsp

                            </ol>
                        </div>
                    </div>
                </div>
            </div>
            <section class="content">
                <la:form action="/admin/dict/kuromoji/upload"
                         enctype="multipart/form-data">
                    <la:hidden property="dictId"/>
                    <div class="row">
                        <div class="col-md-12">
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 6.2K bytes
    - Viewed (0)
  7. src/main/webapp/WEB-INF/view/admin/dict/mapping/admin_dict_mapping_upload.jsp

                            </ol>
                        </div>
                    </div>
                </div>
            </div>
            <section class="content">
                <la:form action="/admin/dict/mapping/upload" enctype="multipart/form-data">
                    <la:hidden property="dictId"/>
                    <div class="row">
                        <div class="col-md-12">
                            <div class="card card-outline card-success">
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 6.2K bytes
    - Viewed (0)
  8. src/main/webapp/WEB-INF/view/admin/dict/stopwords/admin_dict_stopwords_upload.jsp

                            </ol>
                        </div>
                    </div>
                </div>
            </div>
            <section class="content">
                <la:form action="/admin/dict/stopwords/upload" enctype="multipart/form-data">
                    <la:hidden property="dictId"/>
                    <div class="row">
                        <div class="col-md-12">
                            <div class="card card-outline card-success">
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 6.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/dict/synonym/AdminDictSynonymAction.java

                });
            });
        }
    
        /**
         * Handles the upload of synonym dictionary files.
         *
         * @param form the upload form containing the file to upload
         * @return HTML response after processing the upload
         */
        @Execute
        @Secured({ ROLE })
        public HtmlResponse upload(final UploadForm form) {
            validate(form, messages -> {}, () -> uploadpage(form.dictId));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 23.7K bytes
    - Viewed (1)
  10. src/main/webapp/WEB-INF/view/admin/badword/admin_badword_download.jsp

                                            <la:link href="../uploadpage"
                                                     styleClass="btn btn-success btn-xs ${f:h(editableClass)}">
                                                <em class="fa fa-upload">
                                                <la:message key="labels.bad_word_link_upload"/>
                                            </la:link>
                                        </div>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 5.3K bytes
    - Viewed (0)
Back to top