Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for indexMap (0.24 sec)

  1. src/main/java/org/codelibs/fess/app/web/base/FessLoginAction.java

    public abstract class FessLoginAction extends FessSearchAction {
        protected HtmlResponse getHtmlResponse() {
            return getUserBean().map(this::redirectByUser).orElse(asHtml(virtualHost(path_Login_IndexJsp)));
        }
    
        protected HtmlResponse redirectByUser(final FessUserBean user) {
            if (user.hasRoles(fessConfig.getAuthenticationAdminRolesAsArray())) {
                return redirect(AdminDashboardAction.class);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/RootAction.java

        @Execute
        public HtmlResponse index() {
            if (isLoginRequired()) {
                return redirectToLogin();
            }
    
            return asHtml(virtualHost(path_IndexJsp)).useForm(SearchForm.class, op -> {
                op.setup(form -> {
                    buildFormParams(form);
                });
            }).renderWith(data -> {
                buildInitParams();
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2K bytes
    - Viewed (0)
  3. src/cmd/api/testdata/src/pkg/p1/p1.go

    }
    
    var parenExpr = (1 + 5)
    
    var funcLit = func() {}
    
    var m map[string]int
    
    var chanVar chan int
    
    var ifaceVar any = 5
    
    var assertVar = ifaceVar.(int)
    
    var indexVar = m["foo"]
    
    var Byte byte
    var ByteFunc func(byte) rune
    
    type ByteStruct struct {
    	B byte
    	R rune
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 02 16:29:41 GMT 2022
    - 3.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/profile/ProfileAction.java

                }, validationErrorLambda);
                return null;
            });
        }
    
        protected HtmlResponse asIndexHtml() {
            return getUserBean().map(u -> asHtml(virtualHost(path_Profile_IndexJsp)).useForm(ProfileForm.class))
                    .orElseGet(() -> redirect(LoginAction.class));
        }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/login/LoginAction.java

        }
    
        private HtmlResponse asIndexPage(final LoginForm form) {
            if (form != null) {
                form.clearSecurityInfo();
            }
            return asHtml(virtualHost(path_Login_IndexJsp)).renderWith(data -> {
                RenderDataUtil.register(data, "notification", fessConfig.getNotificationLogin());
                saveToken();
            });
        }
    
        @Execute
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/search/SearchAction.java

        @Execute
        public HtmlResponse advance(final SearchForm form) {
            if (isLoginRequired()) {
                return redirectToLogin();
            }
            validate(form, messages -> {}, () -> asHtml(virtualHost(path_IndexJsp)).renderWith(data -> {
                buildInitParams();
                RenderDataUtil.register(data, "notification", fessConfig.getNotificationSearchTop());
            }));
            if (!form.hasConditionQuery()) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/mylasta/action/FessHtmlPath.java

        /** The path of the HTML: /help.jsp */
        HtmlNext path_HelpJsp = new HtmlNext("/help.jsp");
    
        /** The path of the HTML: /index.jsp */
        HtmlNext path_IndexJsp = new HtmlNext("/index.jsp");
    
        /** The path of the HTML: /login/index.jsp */
        HtmlNext path_Login_IndexJsp = new HtmlNext("/login/index.jsp");
    
        /** The path of the HTML: /login/newpassword.jsp */
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 26.4K bytes
    - Viewed (2)
Back to top