📄 installationsummary.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="installationSummaryForm" name="installationSummaryForm" type="com.sslexplorer.install.forms.InstallationSummaryForm"/>
<table border="0" cellspacing="0" border="0">
<tr class="formBlock">
<td class="label" colspan="2">
<bean:message key="installation.installationSummary.certificate" bundle="install"/>
</td>
</tr>
<tr class="formLabel">
<td class="label" colspan="2">
<logic:equal name="installationSummaryForm" property="certificateSource" value="<%= com.sslexplorer.install.forms.SelectCertificateSourceForm.CREATE_NEW_CERTIFICATE %>">
<bean:message key="installation.installationSummary.certificate.createNew" bundle="install"/>
</logic:equal>
<logic:equal name="installationSummaryForm" property="certificateSource" value="<%= com.sslexplorer.install.forms.SelectCertificateSourceForm.IMPORT_EXISTING_CERTIFICATE %>">
<bean:message key="installation.installationSummary.certificate.importExisting" bundle="install"/>
</logic:equal>
<logic:equal name="installationSummaryForm" property="certificateSource" value="<%= com.sslexplorer.install.forms.SelectCertificateSourceForm.USE_CURRENT_CERTIFICATE %>">
<bean:message key="installation.installationSummary.certificate.useCurrent" bundle="install"/>
</logic:equal>
</td>
</tr>
<tr class="formBlock">
<td class="label" colspan="2">
<bean:message key="installation.installationSummary.userDatabase" bundle="install"/>
</td>
</tr>
<tr class="formLabel">
<td class="label">
<bean:message key="installation.installationSummary.userDatabase.name" bundle="install"/>
</td>
<td class="value">
<bean:define id="authScheme" name="installationSummaryForm" property="userDatabase" type="com.sslexplorer.boot.TypeMetaListItem"/>
<bean:message key="<%= "security.userDatabase.value." + authScheme.getValue() %>" bundle="<%= authScheme.getMessageResourcesKey() %>"/>
</td>
</tr>
<tr class="formBlock">
<td class="label" colspan="2">
<bean:message key="installation.installationSummary.webServer" bundle="install"/>
</td>
</tr>
<tr class="formLabel">
<td class="label">
<bean:message key="installation.installationSummary.webServer.port" bundle="install"/>
</td>
<td class="value">
<bean:write name="installationSummaryForm" property="webServerPort"/>
</td>
</tr>
<tr class="formLabel">
<td class="label">
<bean:message key="installation.installationSummary.webServer.protocol" bundle="install"/>
</td>
<td class="value">
<bean:write name="installationSummaryForm" property="webServerProtocol"/>
</td>
</tr>
<tr class="formLabel">
<td class="label">
<bean:message key="installation.installationSummary.webServer.listeningInterfaces" bundle="install"/>
</td>
<td class="value">
<logic:empty name="installationSummaryForm" property="webServerListeningInterfaces">
<bean:message key="installation.installationSummary.webServer.listeningInterfaces.any" bundle="install"/>
</logic:empty>
<logic:notEmpty name="installationSummaryForm" property="webServerListeningInterfaces">
<logic:iterate name="installationSummaryForm" property="webServerListeningInterfaces" id="ifname">
<bean:write name="ifname"/><br/>
</logic:iterate>
</logic:notEmpty>
</td>
</tr>
<tr class="formLabel">
<td class="label">
<bean:message key="installation.installationSummary.webServer.validExternalHostnames" bundle="install"/>
</td>
<td class="value">
<logic:empty name="installationSummaryForm" property="webServerValidExternalHostnames">
<bean:message key="installation.installationSummary.webServer.validExternalHostnames.any" bundle="install"/>
</logic:empty>
<logic:notEmpty name="installationSummaryForm" property="webServerValidExternalHostnames">
<logic:iterate name="installationSummaryForm" property="webServerValidExternalHostnames" id="hostname">
<bean:write name="hostname"/><br/>
</logic:iterate>
</logic:notEmpty>
</td>
</tr>
<tr class="formBlock">
<td class="label" colspan="2">
<bean:message key="installation.installationSummary.proxies" bundle="install"/>
</td>
</tr>
<tr class="formLabel">
<td class="label">
<bean:message key="installation.installationSummary.proxies.socks" bundle="install"/>
</td>
<td class="value">
<logic:equal name="installationSummaryForm" property="useSOCKSProxy" value="false">
<bean:message key="installation.installationSummary.proxies.socks.disabled" bundle="install"/>
</logic:equal>
<logic:equal name="installationSummaryForm" property="useSOCKSProxy" value="true">
<logic:equal name="installationSummaryForm" property="socksProxyAuthenticate" value="true">
<bean:message key="installation.installationSummary.proxies.socks.enabledAuthenticated" bundle="install"
arg0="<%= ((InstallationSummaryForm)installationSummaryForm).getSocksProxyHostname() %>"
arg1="<%= ((InstallationSummaryForm)installationSummaryForm).getSocksProxyPort() %>" />
</logic:equal>
<logic:equal name="installationSummaryForm" property="socksProxyAuthenticate" value="false">
<bean:message key="installation.installationSummary.proxies.socks.enabled" bundle="install"
arg0="<%= ((InstallationSummaryForm)installationSummaryForm).getSocksProxyHostname() %>"
arg1="<%= ((InstallationSummaryForm)installationSummaryForm).getSocksProxyPort() %>" />
</logic:equal>
</logic:equal>
</td>
</tr>
<tr class="formLabel">
<td class="label">
<bean:message key="installation.installationSummary.proxies.http" bundle="install"/>
</td>
<td class="value">
<logic:equal name="installationSummaryForm" property="useHTTPProxy" value="false">
<bean:message key="installation.installationSummary.proxies.http.disabled" bundle="install"/>
</logic:equal>
<logic:equal name="installationSummaryForm" property="useHTTPProxy" value="true">
<logic:equal name="installationSummaryForm" property="httpProxyAuthenticate" value="true">
<bean:message key="installation.installationSummary.proxies.http.enabledAuthenticated" bundle="install"
arg0="<%= ((InstallationSummaryForm)installationSummaryForm).getHttpProxyHostname() %>"
arg1="<%= ((InstallationSummaryForm)installationSummaryForm).getHttpProxyPort() %>" />
</logic:equal>
<logic:equal name="installationSummaryForm" property="httpProxyAuthenticate" value="false">
<bean:message key="installation.installationSummary.proxies.http.enabled" bundle="install"
arg0="<%= ((InstallationSummaryForm)installationSummaryForm).getHttpProxyHostname() %>"
arg1="<%= ((InstallationSummaryForm)installationSummaryForm).getHttpProxyPort() %>" />
</logic:equal>
</logic:equal>
</td>
</tr>
<tr class="formBlock">
<td class="label" colspan="2">
<bean:message key="installation.installationSummary.extensions" bundle="install"/>
</td>
</tr>
<tr class="formLabel">
<td class="value" colspan="2">
<logic:empty name="installationSummaryForm" property="extensionsToInstall">
<bean:message key="installation.installationSummary.extensions.none" bundle="install"/>
</logic:empty>
<logic:notEmpty name="installationSummaryForm" property="extensionsToInstall">
<logic:iterate name="installationSummaryForm" property="extensionsToInstall" id="extensions">
<bean:write name="extensions"/><br/>
</logic:iterate>
</logic:notEmpty>
</td>
</tr>
</table>
</div>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -