📄 athenticationschemesummary.jspf
字号:
<%@ page import="com.sslexplorer.install.forms.InstallationSummaryForm"%>
<%@ taglib uri="http://struts.apache.org/tags-html" prefix="html"%>
<%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean"%>
<%@ taglib uri="http://struts.apache.org/tags-logic" prefix="logic"%>
<%@ taglib uri="/sslexplorer/taglibs/explorer" prefix="explorer"%>
<div id="wizardSummary">
<bean:define id="athenticationSchemeSummaryForm" name="athenticationSchemeSummaryForm" type="com.sslexplorer.security.authwizard.forms.AthenticationSchemeSummaryForm" />
<table border="0" cellspacing="0" border="0">
<tr class="formBlock">
<td class="label" colspan="2">
<bean:message key="authwizard.athenticationSchemeSummary.resource" bundle="security" />
</td>
</tr>
<tr class="formLabel">
<td class="label">
<bean:message key="authwizard.athenticationSchemeSummary.resource.name" bundle="security" />
</td>
<td class="value">
<bean:write name="athenticationSchemeSummaryForm" property="resourceName" />
</td>
</tr>
<tr class="formBlock">
<td class="label" colspan="2">
<bean:message key="authwizard.athenticationSchemeSummary.selectedPolicies" bundle="security" />
</td>
</tr>
<tr class="formLabel">
<logic:empty name="athenticationSchemeSummaryForm" property="selectedPolicies">
<td class="value" colspan="2">
<bean:message key="authwizard.athenticationSchemeSummary.selectedPolicies.none" bundle="security" />
</td>
</logic:empty>
<logic:notEmpty name="athenticationSchemeSummaryForm" property="selectedPolicies">
<td class="label">
<bean:message key="authwizard.athenticationSchemeSummary.selectedPolicies.names" bundle="security" />
</td>
<td class="value">
<logic:iterate name="athenticationSchemeSummaryForm" property="selectedPolicies" id="athenticationScheme">
<bean:write name="athenticationScheme" />
<br />
</logic:iterate>
</td>
</logic:notEmpty>
</tr>
</table>
</div>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -