📄 includer.jsp
字号:
<%@page language = "java" %><%@ page import="org.jahia.bin.*" %><jsp:useBean id="url" class="java.lang.String" scope="request"/> <% // http files path. %><jsp:useBean id="focus" class="java.lang.String" scope="request"/> <% // autofocus input name in the form. %><jsp:useBean id="title" class="java.lang.String" scope="request"/> <% // title of this configuration step. %><jsp:useBean id="msg" class="java.lang.String" scope="request"/> <% // bottom message [copyright or advertise]. %><% String jsp = (String) request.getParameter("jsp") + ".jsp"; Integer navigator = (Integer) request.getAttribute("navigator"); int input_size = navigator.intValue() == 0 ? 65 : 40; String baseURL = response.encodeURL(request.getContextPath() + JahiaConfigurationWizard.getServletPath() + "/"); request.setAttribute( "input", new Integer(input_size).toString() );%><html><head> <title>Jahia Configuration Wizard</title> <link rel="stylesheet" href="<%=url%>/css/jahia.css" type="text/css"> <script language="javascript" src="<%=url%>/../javascript/jahia.js"></script> <script language="javascript"> function focus() { <%if(!focus.equals("-none-")){%> document.formular.<%=focus%>.focus(); <%}%> } function submitFormular(arg,dest) { document.formular.action= '<%=baseURL%>?call='+arg+'&go='+dest; document.formular.method='post'; document.formular.submit(); } </script></head><body class="install" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" onLoad="focus();"><center><br><br><br><table cellpadding="1" cellspacing="0" bgcolor="#000000" width="530" border="0"><tr> <td> <table cellpadding="0" cellspacing="0" width="530" border="0"> <tr> <td bgcolor="#92A4AD"> <table width="100%" height="63" border="0" cellspacing="0" cellpadding="0"> <tr> <td width="126" height="63"><img src="<%=url%>/images/header.gif" width="126" height="63" alt=""></td> <td width="100%" height="63" background="<%=url%>/images/header_bg.gif"> </td> </tr> <tr> <td align="right" class="text" colspan="2">:: <%=title%> :: </td> </tr> </table> <br><br> <table cellpadding="2" cellspacing="0" border="0" width="530"> <tr> <td colspan="3" width="530"> </td> </tr> <form name="formular" method="post"> <input type="hidden" name="dummy" value="canthaveanemptyform"> <tr> <td width="80"> </td> <td width="400" class="text"><!----- - - - - - - header ends here - - - - - - -----><jsp:include page="<%=jsp%>" flush="true"/><!----- - - - - - - footer starts here - - - - - - -----> </td> <td width="50"> </td> </tr> </form> <tr> <td colspan="3" align="right"> <br><br><br> <font class="text2"><%=msg%> </font> </td> </tr> <tr> <td colspan="3"> </td> </tr> </table> </td> </tr> </table> </td></tr></table><br><br> </center></body></html><!----- - - - - - - e o f - - - - - - ----->
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -