Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for guice (0.12 sec)

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

        }
    
        public String getHelpLink(final String name) {
            final String url = ComponentUtil.getFessConfig().getOnlineHelpBaseLink() + name + "-guide.html";
            return getHelpUrl(url);
        }
    
        protected String getHelpUrl(final String url) {
            final Locale locale = ComponentUtil.getRequestManager().getUserLocale();
            if (locale != null) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat Apr 13 11:43:03 GMT 2024
    - 26.5K bytes
    - Viewed (2)
  2. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        public static final String LABELS_file_auth_scheme_ftp = "{labels.file_auth_scheme_ftp}";
    
        /** The key of the message: {0}/{1} ({2} items) */
        public static final String LABELS_pagination_page_guide_msg = "{labels.pagination_page_guide_msg}";
    
        /** The key of the message: No data. */
        public static final String LABELS_list_could_not_find_crud_table = "{labels.list_could_not_find_crud_table}";
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 146.4K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/helper/SystemHelperTest.java

            assertEquals("https://fess.codelibs.org/98.76/admin/xxx-guide.html", systemHelper.getHelpLink("xxx"));
            getMockRequest().setLocale(Locale.JAPANESE);
            assertEquals("https://fess.codelibs.org/ja/98.76/admin/xxx-guide.html", systemHelper.getHelpLink("xxx"));
            getMockRequest().setLocale(Locale.ITALIAN);
            assertEquals("https://fess.codelibs.org/98.76/admin/xxx-guide.html", systemHelper.getHelpLink("xxx"));
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 18.5K bytes
    - Viewed (0)
Back to top