⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tunnelsummary.jspf

📁 这是linux下ssl vpn的实现程序
💻 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="tunnelSummaryForm" name="tunnelSummaryForm" type="com.sslexplorer.tunnels.wizards.forms.TunnelSummaryForm"/>
	<table border="0" cellspacing="0" border="0">
		<tr class="formBlock">
			<td class="label" colspan="2">
				<bean:message key="tunnelWizard.tunnelSummary.resource" bundle="tunnels"/>
			</td>
		</tr>
		<tr class="formLabel">			
			<td class="label">
				<bean:message key="tunnelWizard.tunnelSummary.resource.name" bundle="tunnels"/>
			</td>
			<td class="value">
				<bean:write name="tunnelSummaryForm" property="resourceName"/>
			</td>
		</tr>
		<tr class="formBlock">
			<td class="label" colspan="2">
				<bean:message key="tunnelWizard.tunnelSummary.selectedPolicies" bundle="tunnels"/>
			</td>
		</tr>
		<tr class="formLabel">		
			<logic:empty name="tunnelSummaryForm" property="selectedPolicies">
				<td class="value" colspan="2">
					<bean:message key="tunnelWizard.tunnelSummary.selectedPolicies.none" bundle="tunnels"/>
				</td>
			</logic:empty>
			<logic:notEmpty name="tunnelSummaryForm" property="selectedPolicies">
				<td class="label">
					<bean:message key="tunnelWizard.tunnelSummary.selectedPolicies.names" bundle="tunnels"/>
				</td>
				<td class="value">
					<logic:iterate name="tunnelSummaryForm" property="selectedPolicies" id="tunnel">
						<bean:write name="tunnel"/><br/>
					</logic:iterate>
				</td>
			</logic:notEmpty>
		</tr>
	</table>
</div>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -