Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,861 for fora (0.01 sec)

  1. src/main/java/org/codelibs/fess/app/web/api/admin/dict/stopwords/ApiAdminDictStopwordsAction.java

         *
         * @param dictId the dictionary ID
         * @param form the upload form containing the dictionary file
         * @return JSON response with result status
         */
        // PUT /api/admin/dict/stopwords/upload/{dictId}
        @Execute
        public JsonResponse<ApiResult> put$upload(final String dictId, final UploadForm form) {
            form.dictId = dictId;
            validateApi(form, messages -> {});
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  2. src/main/webapp/js/admin/plugins/form-validator/toggleDisabled.js

    find("*[data-validation]").valAttr("event","keyup change").on("validation",function(b,c){if(!f){f=!0;var g=a(this).closest("form");c&&d(g,this,h)?e(g,"enabled"):e(g,"disabled"),f=!1}}).on("afterValidation",k).on("blur",function(){a(this).valAttr("have-been-blurred",1)}).each(function(){var b=a(this),c=b.attr("data-validation");c.indexOf("checkbox_group")>-1&&b.closest("form").find('input[name="'+b.attr("name")+'"]').each(function(){a(this).on("change",function(){b.validate()})})}),i.find("[data-...
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 2.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/error/ErrorNotfoundAction.java

        /**
         * Displays the not found error page.
         *
         * @param form the error form containing error information
         * @return HTML response for the not found error page
         */
        @Execute
        public HtmlResponse index(final ErrorForm form) {
            return asHtml(virtualHost(path_Error_NotFoundJsp));
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/view/admin/badword/admin_badword_upload.jsp

                                <div class="form-group row">
                                    <label for="badWordFile" class="col-sm-3 text-sm-right col-form-label"><la:message
                                        key="labels.bad_word_file"/></label>
                                    <div class="col-sm-9">
                                        <input type="file" id="badWordFile" name="badWordFile" class="form-control-file"/>
                                    </div>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 5.4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/role/CreateForm.java

    import jakarta.validation.constraints.Size;
    
    /**
     * The create form for Role.
     *
     */
    public class CreateForm {
    
        /**
         * Creates a new CreateForm instance.
         */
        public CreateForm() {
        }
    
        /**
         * The CRUD mode for the form.
         */
        @ValidateTypeFailure
        public Integer crudMode;
    
        /**
         * The name of the role.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.5K bytes
    - Viewed (0)
  6. src/main/webapp/WEB-INF/view/admin/crawlinginfo/admin_crawlinginfo.jsp

                                <div class="row">
                                    <div class="col-sm-12">
                                        <la:form styleClass="form-inline"
                                                 action="/admin/crawlinginfo/">
                                            <div class="form-group">
                                                <c:set var="ph_session_id">
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Wed Feb 12 20:25:27 UTC 2020
    - 11.4K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/design/FileAccessForm.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.admin.design;
    
    import org.lastaflute.web.validation.Required;
    
    /**
     * Form class for file access operations in the admin design interface.
     * This form handles file name validation for accessing design files.
     */
    public class FileAccessForm {
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/badword/CreateForm.java

    import jakarta.validation.constraints.Pattern;
    import jakarta.validation.constraints.Size;
    
    /**
     * The create form for Bad Word.
     */
    public class CreateForm {
    
        /**
         * Creates a new CreateForm instance.
         */
        public CreateForm() {
            // Default constructor
        }
    
        /**
         * The CRUD mode for form processing (create, update, delete operations).
         */
        @ValidateTypeFailure
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/dict/protwords/CreateForm.java

    import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
    
    import jakarta.validation.constraints.Size;
    
    /**
     * Form class for creating protected words dictionary entries.
     * Protected words are terms that should not be modified or analyzed during
     * text processing, preserving their original form in search indexes.
     *
     */
    public class CreateForm {
    
        /**
         * Creates a new CreateForm instance.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  10. src/main/webapp/WEB-INF/view/admin/dict/stemmeroverride/admin_dict_stemmeroverride_upload.jsp

                                        <la:errors/>
                                    </div>
                                    <div class="form-group row">
                                        <label for="stemmeroverrideFile" class="col-sm-3 text-sm-right col-form-label"><la:message
                                                key="labels.dict_stemmeroverride_file"/></label>
                                        <div class="col-sm-9">
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 6.3K bytes
    - Viewed (0)
Back to top