Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getForumLink (0.1 sec)

  1. src/test/java/org/codelibs/fess/helper/SystemHelperTest.java

            assertEquals("https://discuss.codelibs.org/c/FessEN/", systemHelper.getForumLink());
            getMockRequest().setLocale(Locale.JAPANESE);
            assertEquals("https://discuss.codelibs.org/c/FessJA/", systemHelper.getForumLink());
            getMockRequest().setLocale(Locale.ITALIAN);
            assertEquals("https://discuss.codelibs.org/c/FessEN/", systemHelper.getForumLink());
            getMockRequest().setLocale(null);
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/base/FessAdminAction.java

            runtime.registerData("editableClass", editable ? StringUtil.EMPTY : "disabled");
            runtime.registerData("fesenType", fessConfig.getFesenType());
            final String forumLink = systemHelper.getForumLink();
            if (StringUtil.isNotBlank(forumLink)) {
                runtime.registerData("forumLink", forumLink);
            }
        }
    
        protected abstract String getActionRole();
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/SystemHelper.java

                return "(?i)" + p.substring(GsaConfigParser.REGEXP_IGNORE_CASE.length());
            }
    
            return p;
        }
    
        public String getForumLink() {
            final String url = ComponentUtil.getFessConfig().getForumLink();
            if (StringUtil.isBlank(url)) {
                return null;
            }
            String target = null;
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Oct 17 12:10:08 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         * The value is, e.g. https://discuss.codelibs.org/c/Fess{lang}/ <br>
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getForumLink();
    
        /**
         * Get the value for the key 'forum.supported.langs'. <br>
         * The value is, e.g. en,ja <br>
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 468.5K bytes
    - Viewed (1)
Back to top