gallery_fs_preview.jsp

来自「找了很久才找到到源代码」· JSP 代码 · 共 18 行

JSP
18
字号
<%@ page import="org.opencms.jsp.*, org.opencms.workplace.galleries.*" session="false" %>
<%	
	// initialize action element for link substitution
	CmsJspActionElement cms = new CmsJspActionElement(pageContext, request, response);
	
	// get gallery instance
	A_CmsGallery wp = A_CmsGallery.createInstance(cms);
	
	String params = "?" + wp.paramsAsRequest();
	
 %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<frameset rows="25,*" border="0" frameborder="0" framespacing="0">
    <frame <%= wp.getFrameSource("gallery_buttonbar", cms.link("gallery_buttonbar.jsp" + params)) %> noresize="noresize" scrolling="no" style="border-top: 1px solid WindowFrame;">
    <frame <%= wp.getFrameSource("gallery_preview", cms.link("gallery_preview.jsp" + params)) %> scrolling="auto">
</frameset>
</html>

⌨️ 快捷键说明

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