Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for handlerScript (1.12 sec)

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

                                        <label for="handlerScript" class="col-sm-3 text-sm-right col-form-label"><la:message
                                                key="labels.handler_script"/></label>
                                        <div class="col-sm-9">
                                            <la:errors property="handlerScript"/>
                                            <la:textarea styleId="handlerScript" property="handlerScript"
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - 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_script"/></th>
                                            <td>${f:br(f:h(handlerScript))}<la:hidden
                                                    property="handlerScript"/></td>
                                        </tr>
                                        <tr>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - 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 Sep 04 12:52:25 UTC 2025
    - 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" : "text"
              },
              "handlerName" : {
                "type" : "keyword"
              },
              "handlerParameter" : {
                "type" : "keyword"
              },
              "handlerScript" : {
                "type" : "keyword"
              },
              "name" : {
                "type" : "keyword"
              },
              "permissions" : {
                "type" : "keyword"
              },
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/dataconfig/CreateForm.java

        @CustomSize(maxKey = "form.admin.max.input.size")
        public String handlerParameter;
    
        /** Script for custom data processing logic */
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String handlerScript;
    
        /** Boost value for documents from this data source */
        @Required
        @ValidateTypeFailure
        public Float boost;
    
        /** Whether this configuration is enabled (true/false) */
        @Required
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/opensearch/config/cbean/bs/BsDataConfigCB.java

            }
    
            public void columnHandlerParameter() {
                doColumn("handlerParameter");
            }
    
            public void columnHandlerScript() {
                doColumn("handlerScript");
            }
    
            public void columnName() {
                doColumn("name");
            }
    
            public void columnPermissions() {
                doColumn("permissions");
            }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 7.6K bytes
    - Viewed (0)
Back to top