Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 63 for browser (0.04 sec)

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

        /**
         * Enumeration of supported browser types for user agent detection.
         * Each type represents a major browser family that can be detected
         * from the User-Agent header string.
         */
        public enum UserAgentType {
            /** Internet Explorer and Trident-based browsers */
            IE,
            /** Mozilla Firefox browser */
            FIREFOX,
            /** Google Chrome browser */
            CHROME,
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.5K bytes
    - Viewed (0)
  2. README.md

    Fess is based on [OpenSearch](https://github.com/opensearch-project/OpenSearch), but knowledge/experience about OpenSearch is _not_ required. Fess provides an easy to use Administration GUI to configure the system via your browser.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 06:34:32 UTC 2025
    - 7.2K bytes
    - Viewed (2)
  3. src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessUserLocaleProcessProvider.java

            }
            return OptionalObject.empty();
        }
    
        @Override
        public OptionalThing<Locale> getRequestedLocale(final RequestManager requestManager) {
            return OptionalObject.empty(); // means browser default
        }
    
        // ===================================================================================
        //                                                                      Basic Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.9K bytes
    - Viewed (0)
  4. mockwebserver/src/main/kotlin/mockwebserver3/QueueDispatcher.kt

      private var failFastResponse: MockResponse? = null
    
      @Throws(InterruptedException::class)
      override fun dispatch(request: RecordedRequest): MockResponse {
        // To permit interactive/browser testing, ignore requests for favicons.
        val requestLine = request.requestLine
        if (requestLine == "GET /favicon.ico HTTP/1.1") {
          logger.info("served $requestLine")
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Jun 14 16:09:26 UTC 2025
    - 2.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/SearchHelper.java

        }
    
        /**
         * Extracts and normalizes language preferences from request parameters or browser locale.
         *
         * This method prioritizes explicit language parameters over browser locale settings
         * and handles special cases like "all languages" selection.
         *
         * @param request The HTTP servlet request
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 35.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/UserInfoHelper.java

            if (fessConfig.isValidUserCode(userCode)) {
                return userCode;
            }
            return null;
        }
    
        /**
         * Deletes the user code cookie from the client browser.
         * This method removes the user identification cookie by setting it to an empty value with zero max age.
         *
         * @param request the HTTP servlet request
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 14.9K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/helper/SearchHelperTest.java

            ((MockSearchRequestParams) params).setLanguages(null);
    
            // Note: MockletHttpServletRequest doesn't have addLocale method
            // This test simulates browser locale functionality
    
            String[] languages = searchHelper.getLanguages(getMockRequest(), params);
    
            assertTrue(languages.length >= 0);
        }
    
        public void test_getLanguages_withInvalidLang() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 18.9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/Constants.java

        public static final String GOOGLE_CHAT_WEBHOOK_URLS_PROPERTY = "google.chat.webhook.urls";
    
        /** Property key for browser locale usage in search configuration. */
        public static final String USE_BROWSER_LOCALE_FOR_SEARCH_PROPERTY = "search.use.browser.locale";
    
        // ============================================================
        // Suggest and LTR Property Keys
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 34.6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/ViewHelper.java

            }
            // http, ftp
            // nothing
    
            return appendQueryParameter(document, url);
        }
    
        /**
         * Updates file protocol based on user agent type.
         * Handles different browser-specific file protocol formats.
         *
         * @param url the file URL to update
         * @return the updated URL with appropriate file protocol
         */
        protected String updateFileProtocol(String url) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 52.4K bytes
    - Viewed (0)
  10. guava/src/com/google/common/net/MediaType.java

       * known not to trigger content sniffing in current browsers</a>. It <i>should not</i> be used in
       * other situations as it is not specified by any RFC and does not appear in the <a
       * href="http://www.iana.org/assignments/media-types">/IANA MIME Media Types</a> list. Consider
       * {@link #OCTET_STREAM} for binary data that is not being served to a browser.
       *
       * @since 14.0
       */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 17:27:14 UTC 2025
    - 48K bytes
    - Viewed (0)
Back to top