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

📄 warningsblock.jspf

📁 这是linux下ssl vpn的实现程序
💻 JSPF
字号:
<%@ page import="com.sslexplorer.security.Constants" %>
<%@ page import="com.sslexplorer.core.BundleActionMessage" %>
<%@page import="org.apache.struts.action.ActionMessage"%>
<%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean" %>
<%@ taglib uri="http://struts.apache.org/tags-logic" prefix="logic" %>
<%@ taglib uri="http://struts.apache.org/tags-tiles" prefix="tiles" %>
<%@ taglib uri="/sslexplorer/taglibs/explorer" prefix="explorer" %>

<div id="component_warnings" class="component_messageBox">
	<table width="100%" border="0" cellpadding="0" cellspacing="0">
		<thead>
			<tr>
				<td>
					<bean:message key="messages.warnings" bundle="navigation"/>
				</td>
			</tr>
		</thead>
		<tbody>			
			<tr>
				<td>
					<div class="messages">
						<logic:notEmpty scope="request" name="<%= Constants.REQ_ATTR_WARNINGS %>">
							<explorer:messages name="<%= Constants.REQ_ATTR_WARNINGS  %>" bundle="<%= resourceBundle %>" id="msg">
								<div class="text">
									<bean:write filter="false" name="msg" />
								</div>
							</explorer:messages>
						</logic:notEmpty>
						<logic:equal name="displayGlobalWarnings" value="true">
							<logic:notEmpty name="<%= Constants.GLOBAL_WARNINGS %>">	
								<logic:iterate type="com.sslexplorer.core.BundleActionMessage" id="globalWarning" name="<%= Constants.GLOBAL_WARNINGS %>" >
										<div class="text">
											<bean:message key="<%= ((BundleActionMessage)globalWarning).getKey() %>" bundle="<%= ((BundleActionMessage)globalWarning).getBundle() %>"
														arg0="<%= ((BundleActionMessage)globalWarning).getArg0() %>"
														arg1="<%= ((BundleActionMessage)globalWarning).getArg1() %>"
														arg2="<%= ((BundleActionMessage)globalWarning).getArg2() %>"
														arg3="<%= ((BundleActionMessage)globalWarning).getArg3() %>"
														arg4="<%= ((BundleActionMessage)globalWarning).getArg4() %>"/>
										</div>
								</logic:iterate>
							</logic:notEmpty>
						</logic:equal>
					</div>
				</td>
			</tr>
		</tbody>
	</table>
</div>	

⌨️ 快捷键说明

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