Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for handlerParameter (0.08 sec)

  1. src/main/webapp/WEB-INF/view/admin/dataconfig/admin_dataconfig_edit.jsp

                                        <label for="handlerParameter" class="col-sm-3 text-sm-right col-form-label"><la:message
                                                key="labels.handler_parameter"/></label>
                                        <div class="col-sm-9">
                                            <la:errors property="handlerParameter"/>
                                            <la:textarea styleId="handlerParameter" property="handlerParameter"
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Wed Feb 12 20:25:27 UTC 2020
    - 9.6K bytes
    - Viewed (0)
  2. src/main/webapp/WEB-INF/view/admin/dataconfig/admin_dataconfig_details.jsp

                                        <tr>
                                            <th><la:message key="labels.handler_parameter"/></th>
                                            <td>${f:br(f:h(handlerParameter))}<la:hidden
                                                    property="handlerParameter"/></td>
                                        </tr>
                                        <tr>
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Wed Feb 12 20:25:27 UTC 2020
    - 7.7K bytes
    - Viewed (0)
  3. src/main/resources/fess_indices/fess_config.data_config/data_config.json

    {
        "properties": {
          "name": {
            "type": "keyword"
          },
          "handlerName": {
            "type": "keyword"
          },
          "handlerParameter": {
            "type": "keyword"
          },
          "handlerScript": {
            "type": "keyword"
          },
          "boost": {
            "type": "float"
          },
          "available": {
            "type": "boolean"
          },
          "permissions": {
            "type": "keyword"
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 859 bytes
    - Viewed (0)
  4. src/main/config/es/fess_config_data_config.json

                "type" : "long"
              },
              "description" : {
                "type" : "text"
              },
              "handlerName" : {
                "type" : "keyword"
              },
              "handlerParameter" : {
                "type" : "keyword"
              },
              "handlerScript" : {
                "type" : "keyword"
              },
              "name" : {
                "type" : "keyword"
              },
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/config/cbean/bs/BsDataConfigCB.java

            }
    
            public void columnHandlerName() {
                doColumn("handlerName");
            }
    
            public void columnHandlerParameter() {
                doColumn("handlerParameter");
            }
    
            public void columnHandlerScript() {
                doColumn("handlerScript");
            }
    
            public void columnName() {
                doColumn("name");
            }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/dataconfig/CreateForm.java

        public String description;
    
        @Required
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String handlerName;
    
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String handlerParameter;
    
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String handlerScript;
    
        @Required
        @ValidateTypeFailure
        public Float boost;
    
        @Required
        @Size(max = 5)
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top