Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for excludedUrls (0.06 sec)

  1. src/main/config/es/fess_config_web_config.json

                "type" : "integer"
              },
              "description" : {
                "type" : "text"
              },
              "excludedDocUrls" : {
                "type" : "keyword"
              },
              "excludedUrls" : {
                "type" : "keyword"
              },
              "includedDocUrls" : {
                "type" : "keyword"
              },
              "includedUrls" : {
                "type" : "keyword"
              },
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  2. src/main/resources/fess_indices/fess_config.web_config/web_config.json

    {
        "properties": {
          "name": {
            "type": "keyword"
          },
          "urls": {
            "type": "keyword"
          },
          "includedUrls": {
            "type": "keyword"
          },
          "excludedUrls": {
            "type": "keyword"
          },
          "includedDocUrls": {
            "type": "keyword"
          },
          "excludedDocUrls": {
            "type": "keyword"
          },
          "configParameter": {
            "type": "keyword"
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/webconfig/CreateForm.java

        public String includedUrls;
    
        /**
         * URL patterns to exclude during crawling.
         */
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String excludedUrls;
    
        /**
         * Document URL patterns to include in search index.
         */
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String includedDocUrls;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/opensearch/config/cbean/bs/BsWebConfigCB.java

            }
    
            public void columnExcludedDocUrls() {
                doColumn("excludedDocUrls");
            }
    
            public void columnExcludedUrls() {
                doColumn("excludedUrls");
            }
    
            public void columnIncludedDocUrls() {
                doColumn("includedDocUrls");
            }
    
            public void columnIncludedUrls() {
                doColumn("includedUrls");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 8.4K bytes
    - Viewed (0)
Back to top