- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 28 for newPassword (0.12 seconds)
-
src/main/webapp/WEB-INF/orig/view/login/newpassword.jsp
<div class="card-body login-card-body"> <p class="login-box-msg"> <la:message key="labels.login.newpassword" /> </p> <%-- Message --%> <div> <la:info id="msg" message="false"> <div class="alert alert-info">${msg}</div> </la:info> <la:errors /> </div> <la:form styleId="newPassword" method="post"> <div class="input-group mb-3"> <c:set var="ph_new_password">
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Feb 23 08:03:44 GMT 2026 - 3.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/ldap/LdapManagerTest.java
LdapManager ldapManager = new LdapManager(); ldapManager.init(); // Blank username should return false assertFalse(ldapManager.changePassword("", "newPassword")); assertFalse(ldapManager.changePassword(" ", "newPassword")); } @Test public void test_changePassword_withNullPassword() { ComponentUtil.setFessConfig(new FessConfig.SimpleImpl() { @Override
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 17.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/auth/chain/LdapChainTest.java
testFessConfig.ldapAdminSyncPassword = false; boolean result = ldapChain.changePassword("testuser", "newpassword"); assertFalse(result); // returns !changed || syncPassword = !true || false = false assertEquals("testuser", testLdapManager.changePasswordUsername); assertEquals("newpassword", testLdapManager.changePasswordPassword); assertTrue(testLdapManager.changePasswordCalled); }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 9.5K bytes - Click Count (0) -
src/main/resources/fess.xml
</postConstruct> <postConstruct name="addDesignJspFileName"> <arg>"login"</arg> <arg>"login/index.jsp"</arg> </postConstruct> <postConstruct name="addDesignJspFileName"> <arg>"newpassword"</arg> <arg>"login/newpassword.jsp"</arg> </postConstruct> <postConstruct name="addDesignJspFileName"> <arg>"profile"</arg> <arg>"profile/index.jsp"</arg> </postConstruct>
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 5.5K bytes - Click Count (0) -
src/main/webapp/WEB-INF/orig/view/profile/index.jsp
</div> </div> <div class="input-group mb-3"> <c:set var="ph_new_password"> <la:message key="labels.profile.placeholder_new_password" /> </c:set> <la:password property="newPassword" class="form-control" placeholder="${ph_new_password}" /> <div class="input-group-append"> <span class="input-group-text"><i class="fa fa-lock fa-fw" aria-hidden="true"></i></span> </div>
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Feb 23 08:03:44 GMT 2026 - 3.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/auth/chain/AuthenticationChainTest.java
public void test_changePassword_failure() { TestAuthenticationChain chain = new TestAuthenticationChain(); chain.changePasswordResult = false; boolean result = chain.changePassword("testuser", "newpassword"); assertFalse(result); assertEquals(1, chain.changePasswordCalls.size()); } // Test changePassword with null username @Test
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 14.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/profile/ProfileAction.java
private void validatePasswordForm(final ProfileForm form, final VaErrorHook validationErrorLambda) { validate(form, messages -> {}, validationErrorLambda); if (!form.newPassword.equals(form.confirmNewPassword)) { form.newPassword = null; form.confirmNewPassword = null; throwValidationError(messages -> { messages.addErrorsInvalidConfirmPassword(GLOBAL);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Jan 02 06:18:24 GMT 2026 - 6.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/mylasta/action/FessLabelsTest.java
assertEquals("{labels.profile_button}", FessLabels.LABELS_profile_button); // Test new password related labels assertEquals("{labels.login.newpassword}", FessLabels.LABELS_LOGIN_NEWPASSWORD); assertEquals("{labels.login.placeholder_new_password}", FessLabels.LABELS_LOGIN_placeholder_new_password);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 14K bytes - Click Count (0) -
src/main/resources/fess_label_en.properties
labels.suggestSearchLog=Suggest Search Log labels.suggestWord=Suggest Word labels.targetLabel=Label labels.term=Term labels.fields=Fields labels.ex_q=Extended Query labels.oldPassword=Current Password labels.newPassword=New Password labels.confirmNewPassword=New Password (Confirm) labels.menu_system=System labels.menu_wizard=Wizard labels.menu_crawl_config=General labels.menu_scheduler_config=Scheduler
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 11:54:13 GMT 2026 - 48.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/mylasta/action/FessHtmlPath.java
/** 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 */ HtmlNext path_Login_NewpasswordJsp = new HtmlNext("/login/newpassword.jsp"); /** The path of the HTML: /profile/index.jsp */ HtmlNext path_Profile_IndexJsp = new HtmlNext("/profile/index.jsp");Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Tue Feb 10 04:24:02 GMT 2026 - 26.5K bytes - Click Count (0)