?? popup_includes.jsp
字號:
<%@ page session="false" buffer="none" import="org.opencms.i18n.*,org.opencms.jsp.*" %><%
// initialise Cms Action Element
CmsJspActionElement cms = new CmsJspActionElement(pageContext, request, response);
String locale = cms.getRequestContext().getLocale().getLanguage();
if (cms.template("popuphead")) {
CmsMessages messages = cms.getMessages("templateone", locale);
String title = request.getParameter("title");
String styleSheetUri = request.getParameter("stylesheeturi");
String resourcePath = request.getParameter("resourcepath");
String conf = request.getParameter("config");
%><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="<%= locale %>">
<head>
<title><%= title %></title>
<link href="<%= styleSheetUri %>?respath=<%=resourcePath %>&config=<%= conf %>&site=<%= cms.getRequestContext().getSiteRoot() %>&__locale=<%= locale %>" rel="stylesheet" type="text/css">
<script type="text/javascript">
<!--
function showFile(filename) {
window.opener.location.href = filename;
window.opener.focus();
}
//-->
</script>
<% cms.editable(true); %>
</head>
<body style="font-size: 80%; margin: 5px;">
<p style="font-size: 80%; text-align: right; padding-top: 8px; line-height: 1px;">
<a href="javascript:window.close();"><%= messages.key("link.close") %></a>
</p>
<%
}
if (cms.template("popupfoot")) {
%></body>
</html><%
}
%>
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -