clipboard.jspf

来自「这是linux下ssl vpn的实现程序」· JSPF 代码 · 共 36 行

JSPF
36
字号
<%@ 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 + =
减小字号Ctrl + -
显示快捷键?