📄 clipboard.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 + -