Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for isCrawlerDocumentAppendData (0.09 sec)

  1. src/main/java/org/codelibs/fess/crawler/transformer/FessTransformer.java

            final FessConfig fessConfig = ComponentUtil.getFessConfig();
            if (fessConfig.getIndexFieldUrl().equals(key) || !dataMap.containsKey(key) || !getFessConfig().isCrawlerDocumentAppendData()) {
                dataMap.put(key, value);
            } else {
                final Object oldValue = dataMap.get(key);
                final Object[] oldValues;
                if (oldValue instanceof Object[]) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 13.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         * The value is, e.g. true <br>
         * comment: Whether to append data to documents.
         * @return The determination, true or false. (if not found, exception but basically no way)
         */
        boolean isCrawlerDocumentAppendData();
    
        /**
         * Get the value for the key 'crawler.document.append.filename'. <br>
         * The value is, e.g. false <br>
         * comment: Whether to append filename to documents.
    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