Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for getIndexFieldMimetype (0.07 sec)

  1. src/test/java/org/codelibs/fess/helper/ViewHelperTest.java

                private static final long serialVersionUID = 1L;
    
                public boolean isAppendQueryParameter() {
                    return true;
                }
    
                public String getIndexFieldMimetype() {
                    return "mimetype";
                }
            });
    
            document.put("mimetype", "text/html");
            String resultUrl = viewHelper.appendQueryParameter(document, url);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 27.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java

            // anchor
            putResultDataBody(dataMap, fessConfig.getIndexFieldAnchor(), getAnchorList(document, responseData));
            // mimetype
            putResultDataBody(dataMap, fessConfig.getIndexFieldMimetype(), mimeType);
            if (fileTypeHelper != null) {
                // filetype
                putResultDataBody(dataMap, fessConfig.getIndexFieldFiletype(), fileTypeHelper.get(mimeType));
            }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 54.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         * The value is, e.g. mimetype <br>
         * comment: Field name for MIME type in the index.
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getIndexFieldMimetype();
    
        /**
         * Get the value for the key 'index.field.parent_id'. <br>
         * The value is, e.g. parent_id <br>
         * comment: Field name for parent ID in the index.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 525.6K bytes
    - Viewed (1)
Back to top