Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getUserAgentHelper (0.07 sec)

  1. src/main/java/org/codelibs/fess/util/ComponentUtil.java

            return getComponent(WEB_API_MANAGER_FACTORY);
        }
    
        /**
         * Gets the user agent helper component.
         * @return The user agent helper.
         */
        public static UserAgentHelper getUserAgentHelper() {
            return getComponent(USER_AGENT_HELPER);
        }
    
        /**
         * Gets the data store factory component.
         * @return The data store factory.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 28.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/ViewHelper.java

         */
        protected String updateFileProtocol(String url) {
            final int pos = url.indexOf(':', 5);
            final boolean isLocalFile = pos > 0 && pos < 12;
    
            final UserAgentType ua = ComponentUtil.getUserAgentHelper().getUserAgentType();
            final DynamicProperties systemProperties = ComponentUtil.getSystemProperties();
            switch (ua) {
            case IE:
                if (isLocalFile) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 52.4K bytes
    - Viewed (0)
Back to top