📄 step_7_save_properties.jsp
字号:
<%@ page session="true" %><%--
--%><jsp:useBean id="Bean" class="org.opencms.setup.CmsSetupBean" scope="session" /><%--
--%><jsp:setProperty name="Bean" property="*" /><%
// next page
String nextPage = "step_8_import_modules.jsp";
// previous page
String prevPage = "step_6_module_selection.jsp";
String serverUrl = request.getScheme() + "://" + request.getServerName();
int serverPort = request.getServerPort();
if (serverPort != 80) {
serverUrl += ":" + serverPort;
}
%>
<%= Bean.getHtmlPart("C_HTML_START") %>
Alkacon OpenCms Setup Wizard
<%= Bean.getHtmlPart("C_HEAD_START") %>
<%= Bean.getHtmlPart("C_STYLES") %>
<%= Bean.getHtmlPart("C_STYLES_SETUP") %>
<%= Bean.getHtmlPart("C_SCRIPT_HELP") %>
<script type="text/javascript">
function checkSubmit() {
// checks the server URL and the ethernet MAC address
var regExp = "^(http|https|ftp)\://((([a-z_0-9\-]+)+(([\:]?)+([a-z_0-9\-]+))?)(\@+)?)?(((((([0-1])?([0-9])?[0-9])|(2[0-4][0-9])|(2[0-5][0-5])))\.(((([0-1])?([0-9])?[0-9])|(2[0-4][0-9])|(2[0-5][0-5])))\.(((([0-1])?([0-9])?[0-9])|(2[0-4][0-9])|(2[0-5][0-5])))\.(((([0-1])?([0-9])?[0-9])|(2[0-4][0-9])|(2[0-5][0-5]))))|((([a-z0-9\-])+\.)+([a-z]{2}\.[a-z]{2}|[a-z]{2,4})))(([\:])(([1-9]{1}[0-9]{1,3})|([1-5]{1}[0-9]{2,4})|(6[0-5]{2}[0-3][0-6])))?$";
var isUrlOK = document.forms[0].workplaceSite.value.match(regExp);
regExp = "^([0-9a-fA-F][0-9a-fA-F]:){5}([0-9a-fA-F][0-9a-fA-F])$";
var macValue = document.forms[0].ethernetAddress.value;
var isMacOK = macValue.match(regExp);
if (isUrlOK && (isMacOK || macValue == "")) {
return true;
} else if (!isMacOK) {
alert("Please enter the valid MAC address of your server\nor leave the field empty to generate a random address.");
} else if (!isUrlOK) {
alert("Please enter a valid site for the OpenCms workplace.");
}
return false;
}
</script>
<%= Bean.getHtmlPart("C_HEAD_END") %>
Alkacon OpenCms Setup Wizard - Settings
<%= Bean.getHtmlPart("C_CONTENT_SETUP_START") %>
<% if (Bean.isInitialized()) { %>
<form action="<%= nextPage %>" method="post" class="nomargin" onsubmit="return checkSubmit();">
<table border="0" cellpadding="0" cellspacing="0" style="width: 100%; height: 350px;">
<tr>
<td style="vertical-align: top;">
<%= Bean.getHtmlPart("C_BLOCK_START", "OpenCms settings") %>
<table border="0" cellpadding="4" cellspacing="0">
<tr>
<td>Enter your server's ethernet (MAC) address</td>
<td>
<input type="text" name="ethernetAddress" value="<%= Bean.getEthernetAddress() %>" style="width: 150px;">
</td>
<td><%= Bean.getHtmlHelpIcon("1", "") %></td>
</tr>
<tr>
<td>Enter the URL of your Alkacon OpenCms site</td>
<td>
<input type="text" name="workplaceSite" value="<%= serverUrl %>" style="width: 150px;">
</td>
<td><%= Bean.getHtmlHelpIcon("3", "") %></td>
</tr>
<tr>
<td>Enter a name for your Alkacon OpenCms server</td>
<td>
<input type="text" name="serverName" value="<%= Bean.getServerName() %>" style="width: 150px;">
</td>
<td><%= Bean.getHtmlHelpIcon("2", "") %></td>
</tr>
</table>
<%= Bean.getHtmlPart("C_BLOCK_END") %>
</td></tr></table>
<%= Bean.getHtmlPart("C_CONTENT_END") %>
<%= Bean.getHtmlPart("C_BUTTONS_START") %>
<input name="back" type="button" value="<< Back" class="dialogbutton" onclick="location.href='<%= prevPage %>';">
<input name="submit" type="submit" value="Continue >>" class="dialogbutton">
<input name="cancel" type="button" value="Cancel" class="dialogbutton" onclick="location.href='index.jsp';" style="margin-left: 50px;">
</form>
<%= Bean.getHtmlPart("C_BUTTONS_END") %>
<%= Bean.getHtmlPart("C_HELP_START", "1") %>
<b>Why the ethernet address is needed:</b><br> <br>
Alkacon OpenCms generates unique keys for all resources based on a
128-bit UUID (Universally Unique IDentifier, aka GUID in the Windows world) algorithm.
To initialize this algorithm, the ethernet address of the server is required.
However, Java has no way of accessing this information from the server hardware
because of the sandbox security model.<br> <br>
You can leave this field empty, and a random ethernet address will be generated for your OpenCms server.
This means there is a <i>very, very, very slight</i> chance that someone else in the universe might create some duplicate keys.<br> <br>
<b>Please note:</b> The ethernet (MAC) address is NOT the IP address of the server.
A valid MAC ethernet address looks like this: <code>4f:a1:f1:c2:36:bf</code>.
<%= Bean.getHtmlPart("C_HELP_END") %>
<%= Bean.getHtmlPart("C_HELP_START", "2") %>
<b>The server name:</b><br> <br>
This server name will be used for various log messages in OpenCms.<br> <br>
This can be handy if you have to compare logfiles from a couple of different servers.
<%= Bean.getHtmlPart("C_HELP_END") %>
<%= Bean.getHtmlPart("C_HELP_START", "3") %>
<b>The OpenCms site URL:</b><br> <br>
Alkacon OpenCms is capable of managing multiple sites.
However, the OpenCms Workplace must always be accessed through one specific URL.<br> <br>
The site URL you enter here will be used <i>both</i> as URL to access the Workplace,
and as URL for the default site. In case you want to add other sites, or if you want to use different URLs
for default site and Workplace, you must
manually edit the <code>opencms-system.xml</code> file after the installation.
<%= Bean.getHtmlPart("C_HELP_END") %>
<% } else { %>
<%= Bean.displayError("")%>
<%= Bean.getHtmlPart("C_CONTENT_END") %>
<% } %>
<%= Bean.getHtmlPart("C_HTML_END") %>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -