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

📄 clipboard.jspf

📁 这是linux下ssl vpn的实现程序
💻 JSPF
字号:
<%@ page import="com.sslexplorer.security.Constants" %>
<%@ page import="com.sslexplorer.vfs.clipboard.Clipboard" %>
<%@ 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_clipboard" class="component_messageBox">
	<table width="100%" border="0" cellpadding="0" cellspacing="0">
		<thead>
			<tr>
				<td>
					<bean:message key="clipboard.title" bundle="navigation"/>
				</td>
			</tr>
		</thead>
		<tbody>			
			<tr>
				<td>
					<bean:message key="clipboard.summary" bundle="navigation" arg0="<%= String.valueOf(((Clipboard)session.getAttribute(Constants.CLIPBOARD)).getContent().size()) %>"/>
				</td>
			</tr>	
			<tr>
				<td>
					<div class="messages">
						<logic:iterate name="clipboard" property="content" id="clipboardContent" type="com.sslexplorer.vfs.clipboard.ClipboardContent">
							<div class="text">
								<bean:write name="clipboardContent"/>
							</div>
						</logic:iterate>
					</div>
				</td>
			</tr>
		</tbody>
	</table>
</div>	

⌨️ 快捷键说明

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