Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 103 for supported (0.06 sec)

  1. src/main/java/org/codelibs/fess/helper/ProtocolHelper.java

     */
    public class ProtocolHelper {
        private static final Logger logger = LogManager.getLogger(ProtocolHelper.class);
    
        /** Array of supported web protocols with colon suffix (e.g., "http:", "https:") */
        protected String[] webProtocols = StringUtil.EMPTY_STRINGS;
    
        /** Array of supported file protocols with colon suffix (e.g., "file:", "ftp:") */
        protected String[] fileProtocols = StringUtil.EMPTY_STRINGS;
    
        /**
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Dec 12 13:58:40 UTC 2025
    - 12.4K bytes
    - Viewed (1)
  2. ADDING_NEW_LANGUAGE.md

    This guide explains how to add internationalization (i18n) support for a new language in Fess.
    
    ## Overview
    
    Fess uses a two-tier language support system:
    
    1. **Full UI Translation** (13 languages): Complete user interface translation with label and message files
    2. **Search/Analysis Support** (40+ languages): Language-specific text analysis for search indexing
    
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 06 11:36:30 UTC 2025
    - 10.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

            }
    
            @Override
            public int getStartPosition() {
                throw new UnsupportedOperationException("getStartPosition() is not supported in this implementation");
            }
    
            @Override
            public int getOffset() {
                throw new UnsupportedOperationException("getOffset() is not supported in this implementation");
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 55.4K bytes
    - Viewed (1)
  4. MIGRATION.md

    **Web Crawling**:
    - **Admin Path**: Crawler > Web
    - **Supports**: HTTP/HTTPS websites
    - **Features**: JavaScript rendering, authentication, custom headers
    
    **File Crawling**:
    - **Admin Path**: Crawler > File
    - **Supports**: SMB, FTP, local file systems
    - **Features**: Access control, file type filtering
    
    **Data Store Crawling**:
    - **Admin Path**: Crawler > Data Store
    - **Supports**: Databases (via JDBC), CSV files, custom plugins
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 06 12:40:11 UTC 2025
    - 23.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/LanguageHelper.java

            }
            return result.replaceAll("\\s+", " ");
        }
    
        /**
         * Returns the supported language for a given language.
         *
         * @param lang The language to check.
         * @return The supported language, or null if not supported.
         */
        protected String getSupportedLanguage(final String lang) {
            if (StringUtil.isBlank(lang)) {
                return null;
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 6.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/storage/StorageType.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.storage;
    
    /**
     * Enum for supported storage types.
     */
    public enum StorageType {
    
        /** Amazon S3 */
        S3,
    
        /** Google Cloud Storage */
        GCS,
    
        /** S3-compatible storage (MinIO, etc.) */
        S3_COMPAT
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 864 bytes
    - Viewed (0)
  7. fess-crawler/src/test/java/org/codelibs/fess/crawler/util/TemporaryFileInputStreamTest.java

                // Reset will throw IOException because mark is not supported
                try {
                    stream.reset();
                    fail("reset() should throw IOException when mark is not supported");
                } catch (IOException e) {
                    // Expected - FileInputStream does not support mark/reset
                }
            }
        }
    
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sat Nov 22 13:28:22 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/suggest/index/SuggestIndexer.java

         */
        public SuggestIndexer setIndexName(final String index) {
            this.index = index;
            return this;
        }
    
        /**
         * Sets the supported fields.
         * @param supportedFields The supported fields.
         * @return This SuggestIndexer instance.
         */
        public SuggestIndexer setSupportedFields(final String[] supportedFields) {
            this.supportedFields = supportedFields;
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Mon Nov 24 03:40:05 UTC 2025
    - 34.4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java

            }
    
            /**
             * Gets the servlet context. This operation is not supported.
             *
             * @return Never returns, always throws UnsupportedOperationException
             * @throws UnsupportedOperationException Always thrown as this operation is not supported
             */
            @Override
            public ServletContext getServletContext() {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 17.8K bytes
    - Viewed (3)
  10. src/main/java/org/codelibs/fess/validation/UriTypeValidator.java

                    }
                    if (!flag) {
                        return false;
                    }
                }
            }
            return true;
        }
    
        /**
         * Enumeration of supported protocol types for URI validation.
         */
        public enum ProtocolType {
            /**
             * Web protocols (http, https, etc.).
             */
            WEB,
            /**
             * File protocols (file, etc.).
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sun Nov 23 12:34:02 UTC 2025
    - 3.1K bytes
    - Viewed (0)
Back to top