Skip to content
This repository was archived by the owner on Nov 15, 2022. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
setPageSessionAttribute(key="jmsType" value="#{jmsTypeOptionGrp}");
/>
</event>
<sun:form id="propertyForm">
<sun:form id="propertyForm" autoComplete="off">
#include "/cluster/shared/handlers.inc"
#include "/cluster/shared/jmsHandlers.inc"
#include "/common/shared/alertMsg.inc"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@
<!afterCreate
getClientId(component="$this{component}" clientId="#{pageSession.ps1PropId}");
/>
<sun:passwordField id="NewPassword" text="#{pageSession.pswdText}" columns="$int{25}" maxLength="#{sessionScope.fieldLengths['maxLength.server.NewPassword']}" >
<sun:passwordField id="NewPassword" name="password" text="#{pageSession.pswdText}" columns="$int{25}" maxLength="#{sessionScope.fieldLengths['maxLength.server.NewPassword']}" >
<!afterCreate
getClientId(component="$this{component}" clientId="#{pageSession.ps1Id}");
/>
Expand Down Expand Up @@ -264,7 +264,7 @@
<!afterCreate
getClientId(component="$this{component}" clientId="#{pageSession.setupPswdPropId}");
/>
<sun:passwordField id="setupPswd" columns="$int{60}" maxLength="#{sessionScope.fieldLengths['maxLength.node.Keyfile']}" text="#{pageSession.setupPswd}" >
<sun:passwordField id="setupPswd" name="password" columns="$int{60}" maxLength="#{sessionScope.fieldLengths['maxLength.node.Keyfile']}" text="#{pageSession.setupPswd}" >
<!afterCreate
getClientId(component="$this{component}" clientId="#{pageSession.setupPswdId}");
/>
Expand Down Expand Up @@ -339,7 +339,7 @@
<!afterCreate
getClientId(component="$this{component}" clientId="#{pageSession.winPs1PropId}");
/>
<sun:passwordField id="NewPassword" text="#{pageSession.winPswdText}" columns="$int{25}" maxLength="#{sessionScope.fieldLengths['maxLength.server.NewPassword']}" >
<sun:passwordField id="NewPassword" name="password" text="#{pageSession.winPswdText}" columns="$int{25}" maxLength="#{sessionScope.fieldLengths['maxLength.server.NewPassword']}" >
<!afterCreate
getClientId(component="$this{component}" clientId="#{pageSession.winPs1Id}");
/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@
setPageSessionAttribute(key="titleHelp" value="$resource{i18ncs.node.EditPageTitleHelp}");
/>
</event>
<sun:form id="propertyForm">
<sun:form id="propertyForm" autoComplete="off">
#include "/common/shared/alertMsg.inc"
#include "/cluster/node/nodeAttr.inc"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@

/>
</event>
<sun:form id="propertyForm">
<sun:form id="propertyForm" autoComplete="off">
#include "/common/shared/alertMsg.inc"
#include "/cluster/node/nodeAttr.inc"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,14 +52,14 @@
</sun:property>

<sun:property id="newPasswordProp" labelAlign="left" noWrap="#{true}" overlapLabel="#{false}" label="$resource{i18nc.pswdAlias.password}" helpText="$resource{i18nc.pswdAlias.passwordHelp}">
<sun:passwordField id="NewPassword" styleClass="required" required="#{true}" columns="$int{25}" maxLength="#{sessionScope.fieldLengths['maxLength.server.NewPassword']}" text="#{pageSession.valueMap['aliaspassword']}" >
<sun:passwordField id="NewPassword" name="password" styleClass="required" required="#{true}" columns="$int{25}" maxLength="#{sessionScope.fieldLengths['maxLength.server.NewPassword']}" text="#{pageSession.valueMap['aliaspassword']}" >
<!afterCreate
getClientId(component="$this{component}" clientId="#{pageSession.ps1}");
/>
</sun:passwordField>
</sun:property>
<sun:property id="confirmPasswordProp" labelAlign="left" noWrap="#{true}" overlapLabel="#{false}" label="$resource{i18nc.pswdAlias.confirmPassword}" helpText="$resource{i18nc.pswdAlias.confirmPasswordHelp}">>
<sun:passwordField id="ConfirmPassword" styleClass="required" required="#{true}" columns="$int{25}" maxLength="#{sessionScope.fieldLengths['maxLength.server.ConfirmNewPassword']}" text="#{pageSession.confirmPassword}" >
<sun:passwordField id="ConfirmPassword" name="password" styleClass="required" required="#{true}" columns="$int{25}" maxLength="#{sessionScope.fieldLengths['maxLength.server.ConfirmNewPassword']}" text="#{pageSession.confirmPassword}" >
<!afterCreate
getClientId(component="$this{component}" clientId="#{pageSession.ps2}");
/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
setPageSessionAttribute(key="edit" value="#{true}" );
/>
</event>
<sun:form id="propertyForm">
<sun:form id="propertyForm" autoComplete="off">
#include "/common/shared/alertMsg_1.inc"
<sun:title id="propertyContentPage" title="$resource{i18nc.pswdAliasEdit.title}" helpText="$resource{i18nc.pswdAliasEdit.titleHelp}" >
<!facet pageButtonsTop>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
setPageSessionAttribute(key="edit" value="#{false}" );
/>
</event>
<sun:form id="propertyForm">
<sun:form id="propertyForm" autoComplete="off">
#include "/common/shared/alertMsg_1.inc"
<sun:title id="propertyContentPage" title="$resource{i18nc.pswdAliasNew.title}" helpText="$resource{i18nc.pswdAliasNew.titleHelp}" >
<!facet pageButtonsTop>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
getUserInfo(Realm="#{pageSession.authRealm}", configName="#{pageSession.configName}", User="#{sessionScope.userName}", GroupList="#{pageSession.group}" );
/>
</event>
<sun:form id="propertyForm">
<sun:form id="propertyForm" autoComplete="off">
#include "/common/appServer/domainTabs.inc"
#include "/common/shared/alertMsg.inc"
<!-- Page Title -->
Expand Down Expand Up @@ -86,14 +86,14 @@
<sun:staticText id="GroupList" text="#{pageSession.group}"/>
</sun:property>
<sun:property id="newPasswordProp" labelAlign="left" noWrap="#{true}" overlapLabel="#{false}" label="$resource{i18nc.domain.NewPassword}">
<sun:passwordField id="NewPassword" columns="$int{25}" maxLength="#{sessionScope.fieldLengths['maxLength.server.NewPassword']}" text="#{pageSession.password}" >
<sun:passwordField id="NewPassword" name="password" columns="$int{25}" maxLength="#{sessionScope.fieldLengths['maxLength.server.NewPassword']}" text="#{pageSession.password}" >
<!afterCreate
getClientId(component="$this{component}" clientId=>$page{ps1});
/>
</sun:passwordField>
</sun:property>
<sun:property id="confirmPasswordProp" labelAlign="left" noWrap="#{true}" overlapLabel="#{false}" label="$resource{i18nc.domain.ConfirmNewPassword}">
<sun:passwordField id="ConfirmPassword" columns="$int{25}" maxLength="#{sessionScope.fieldLengths['maxLength.server.ConfirmNewPassword']}" text="#{pageSession.confirmPassword}" >
<sun:passwordField id="ConfirmPassword" name="password" columns="$int{25}" maxLength="#{sessionScope.fieldLengths['maxLength.server.ConfirmNewPassword']}" text="#{pageSession.confirmPassword}" >
<!afterCreate
getClientId(component="$this{component}" clientId=>$page{ps2});
/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
}
/>
</event>
<sun:form id="propertyForm">
<sun:form id="propertyForm" autoComplete="off">
#include "/common/shared/alertMsg.inc"
<!-- Page Title -->
<sun:title id="propertyContentPage" title="$resource{i18nc.manageUsers.EditPageTitle}"
Expand Down Expand Up @@ -116,14 +116,14 @@
</sun:property>

<sun:property id="newPasswordProp" labelAlign="left" noWrap="#{true}" overlapLabel="#{false}" label="$resource{i18nc.manageUsers.NewPassword}">
<sun:passwordField id="NewPassword" columns="$int{25}" text="#{pageSession.password}" >
<sun:passwordField id="NewPassword" name="password" columns="$int{25}" text="#{pageSession.password}" >
<!afterCreate
getClientId(component="$this{component}" clientId=>$page{ps1});
/>
</sun:passwordField>
</sun:property>
<sun:property id="confirmPasswordProp" labelAlign="left" noWrap="#{true}" overlapLabel="#{false}" label="$resource{i18nc.manageUsers.ConfirmNewPassword}">
<sun:passwordField id="ConfirmPassword" columns="$int{25}" text="#{pageSession.confirmPassword}" >
<sun:passwordField id="ConfirmPassword" name="password" columns="$int{25}" text="#{pageSession.confirmPassword}" >
<!afterCreate
getClientId(component="$this{component}" clientId=>$page{ps2});
/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
setPageSessionAttribute(key="emptyPswdMsg", value="$resource{i18n.msg.JS.manageUser.setEmptyPassword}")
/>
</event>
<sun:form id="propertyForm">
<sun:form id="propertyForm" autoComplete="off">
#include "/common/shared/alertMsg.inc"
<!-- Page Title -->
<sun:title id="propertyContentPage" title="$resource{i18nc.manageUsers.NewPageTitle}"
Expand Down Expand Up @@ -114,7 +114,7 @@
</sun:property>

<sun:property id="newPasswordProp" labelAlign="left" noWrap="#{true}" overlapLabel="#{false}" label="$resource{i18nc.manageUsers.NewPassword}">
<sun:passwordField id="NewPassword" columns="$int{25}" text="#{requestScope.password}" >
<sun:passwordField id="NewPassword" name="password" columns="$int{25}" text="#{requestScope.password}" >
<!afterCreate
getClientId(component="$this{component}" clientId=>$page{ps1});
/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
setPageSessionAttribute(key="convertToFalseList" value={"auditEnabled","activateDefaultPrincipalToRoleMapping"})
/>
</event>
<sun:form id="propertyForm">
<sun:form id="propertyForm" autoComplete="off">
#include "/common/shared/alertMsg.inc"

<sun:title id="propertyContentPage" title="$resource{i18nc.security.Security}" helpText="$resource{i18nc.security.SecurityPageHelp}">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
<sun:textField id="DefaultPrincipal" columns="$int{55}" maxLength="#{sessionScope.fieldLengths['maxLength.security.DefaultPrincipal']}" text="#{requestScope.principal"/>
</sun:property>
<sun:property id="defaultPrincipalPasswordProp" labelAlign="left" noWrap="#{true}" overlapLabel="#{false}" label="$resource{i18nc.security.DefaultPrincipalPassword}" helpText="$resource{i18nc.security.DefaultPrincipalPasswordHelp}">
<sun:passwordField id="DefaultPrincipalPassword" columns="$int{55}" maxLength="#{sessionScope.fieldLengths['maxLength.security.DefaultPrincipalPassword']}" text="#{requestScope.password"/>
<sun:passwordField id="DefaultPrincipalPassword" name="password" columns="$int{55}" maxLength="#{sessionScope.fieldLengths['maxLength.security.DefaultPrincipalPassword']}" text="#{requestScope.password"/>
</sun:property>
<sun:property id="jaccProp" labelAlign="left" noWrap="#{true}" overlapLabel="#{false}" label="$resource{i18nc.security.Jacc}" helpText="$resource{i18nc.security.JaccHelp}">
<sun:dropDown id="Jacc" labels="$pageSession{jaccs}" selected="#{pageSession.valueMap['jacc']}" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,15 +51,15 @@
/>
</sun:image>
<f:verbatim>
<form method="POST" class="form" name="loginform" action="j_security_check">
<form method="POST" class="form" name="loginform" action="j_security_check" autocomplete="off">
<table role="presentation">
<tr>
<td><label for="Login.username" style="font-weight: bold;">$resource{i18n.common.username}</label></td>
<td><input type="text" name="j_username" id="Login.username" tabindex="1" value="#{byPassLogin ? pageSession.loginUser : ''}"></td>
</tr>
<tr>
<td><label for="Login.password" style="font-weight: bold;">$resource{i18n.common.password}</label>
<td><input type="password" name="j_password" id="Login.password" tabindex="2">
<td><input type="password" name="j_password" id="Login.password" tabindex="2" autocomplete="new-password">
<tr>
<td colspan="2" align="center">
<input type="submit" class="Btn1"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@
<sun:textField id="userNameEdit" disabled="#{edit}" styleClass="required" columns="$int{55}" maxLength="#{sessionScope.fieldLengths['maxLength.connectorSecurityMap.userName']}" text="#{pageSession.valueMap['mappedUserName']}" required="#{true}" />
</sun:property>
<sun:property id="passwordEdit" labelAlign="left" noWrap="#{true}" overlapLabel="#{false}" label="$resource{i18njca.connectorSecurityMap.password}">
<sun:passwordField id="passwordEdit" columns="$int{55}" text="#{pageSession.valueMap['mappedPassword']}"/>
<sun:passwordField id="passwordEdit" name="password" columns="$int{55}" text="#{pageSession.valueMap['mappedPassword']}"/>
</sun:property>
</sun:propertySheetSection>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@

/>
</event>
<sun:form id="propertyForm">
<sun:form id="propertyForm" autoComplete="off">
#include "/jca/connectorConnectionPoolTabs.inc"
#include "/common/shared/alertMsg_1.inc"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@

/>
</event>
<sun:form id="propertyForm">
<sun:form id="propertyForm" autoComplete="off">
#include "/jca/connectorConnectionPoolTabs.inc"
#include "/common/shared/alertMsg_1.inc"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@

<sun:property id="PswdTextProp" labelAlign="left" noWrap="#{true}" overlapLabel="#{false}" styleClass="__database"
label="$resource{i18ncs.cluster.jms.dbUserPassword}" helpText="$resource{i18ncs.cluster.jms.dbUserPasswordHelp}" >
<sun:passwordField id="NewPassword" text="#{pageSession.pswdText}" columns="$int{25}"
<sun:passwordField id="NewPassword" name="password" text="#{pageSession.pswdText}" columns="$int{25}"
maxLength="#{sessionScope.fieldLengths['maxLength.server.NewPassword']}" />
</sun:property>

Expand Down
4 changes: 2 additions & 2 deletions appserver/admingui/jms-plugin/src/main/resources/jmsHost.inc
Original file line number Diff line number Diff line change
Expand Up @@ -99,14 +99,14 @@
<sun:textField id="AdminUser" columns="$int{25}" maxLength="#{sessionScope.fieldLengths['maxLength.edJmsHost.adminUser']}" text="#{pageSession.valueMap['adminUserName']}" styleClass="required" required="#{true}" />
</sun:property>
<sun:property id="newPasswordProp" labelAlign="left" noWrap="#{true}" overlapLabel="#{false}" label="$resource{i18njms.edJmsHost.adminPwdLabel}" helpText="$resource{i18njms.edJmsHost.adminPwdHelp}">
<sun:passwordField id="NewPassword" columns="$int{25}" maxLength="#{sessionScope.fieldLengths['maxLength.edJmsHost.adminPwd']}" text="#{pageSession.valueMap['adminPassword']}" styleClass="required" required="#{true}">
<sun:passwordField id="NewPassword" name="password" columns="$int{25}" maxLength="#{sessionScope.fieldLengths['maxLength.edJmsHost.adminPwd']}" text="#{pageSession.valueMap['adminPassword']}" styleClass="required" required="#{true}">
<!afterCreate
getClientId(component="$this{component}" clientId=>$page{ps1});
/>
</sun:passwordField>
</sun:property>
<sun:property id="confirmPasswordProp" labelAlign="left" noWrap="#{true}" overlapLabel="#{false}" label="$resource{i18njms.edJmsHost.ConfirmNewPassword}">
<sun:passwordField id="ConfirmPassword" columns="$int{25}" maxLength="#{sessionScope.fieldLengths['maxLength.server.ConfirmNewPassword']}" text="#{pageSession.valueMap['adminPassword']}" styleClass="required" required="#{true}" >
<sun:passwordField id="ConfirmPassword" name="password" columns="$int{25}" maxLength="#{sessionScope.fieldLengths['maxLength.server.ConfirmNewPassword']}" text="#{pageSession.valueMap['adminPassword']}" styleClass="required" required="#{true}" >
<!afterCreate
getClientId(component="$this{component}" clientId=>$page{ps2});
/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
gf.getEntityAttrs(endpoint="#{pageSession.selfUrl}.json", valueMap="#{pageSession.valueMap}");
/>
</event>
<sun:form id="propertyForm">
<sun:form id="propertyForm" autoComplete="off">
#include "/jms/jmsHost.inc"
<sun:hidden id="helpKey" value="$resource{helpjms.jmsHostEdit}" />
</sun:form>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
gf.getDefaultValues(endpoint="#{pageSession.selfUrl}", valueMap="#{pageSession.valueMap}");
/>
</event>
<sun:form id="propertyForm">
<sun:form id="propertyForm" autoComplete="off">
#include "/jms/jmsHost.inc"
<sun:hidden id="helpKey" value="$resource{helpjms.jmsHostNew}" />
</sun:form>
Expand Down