- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 48 for browser (0.04 sec)
-
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) -
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) -
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) -
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) -
src/main/java/org/codelibs/fess/helper/SearchHelper.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 35.8K bytes - Viewed (0) -
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) -
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) -
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) -
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) -
src/main/resources/fess_config.properties
query.timeout.logging=true # Maximum number of total hits to track in queries. query.track.total.hits=10000 # Fields used for geo search queries. query.geo.fields=location # Parameter name for browser language in queries. query.browser.lang.parameter.name=browser_lang # Whether to replace term with prefix query. query.replace.term.with.prefix.query=true # Minimum hit count for OR search queries. query.orsearch.min.hit.count=-1
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 14:45:37 UTC 2025 - 54.7K bytes - Viewed (0)