Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getForumLink (0.05 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 Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 28.9K 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);
            }
        }
    
        /**
         * Get the action role.
         * @return The action role.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/SystemHelper.java

            }
    
            return p;
        }
    
        /**
         * Gets the link to the Fess forum.
         *
         * @return The forum link.
         */
        public String getForumLink() {
            final String url = ComponentUtil.getFessConfig().getForumLink();
            if (StringUtil.isBlank(url)) {
                return null;
            }
            String target = null;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 36.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         * comment: Forum link for user support.
         * @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>
         * comment: Supported languages for the forum.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 525.6K bytes
    - Viewed (1)
Back to top