%@ page session="true" %><%--
--%><%--
--%><%
// next page
String nextPage = "step_2_check_components.jsp";
boolean isInitialized = false;
boolean wizardEnabled = false;
boolean showButtons = false;
try {
if (Bean.isInitialized()) {
session.invalidate();
response.sendRedirect("index.jsp");
}
// Initialize the Bean
Bean.init(pageContext);
// check wizards accessability
wizardEnabled = Bean.getWizardEnabled();
if (!wizardEnabled) {
request.getSession().invalidate();
}
isInitialized = true;
} catch (Exception e) {
// the servlet container did not unpack the war, so lets display an error message
}
%>
<%= 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_HEAD_END") %>
Alkacon OpenCms Setup Wizard - License Agreement
<%= Bean.getHtmlPart("C_CONTENT_SETUP_START") %>
<%= Bean.getHtmlPart("C_BUTTONS_END") %>
<% } %>
<%= Bean.getHtmlPart("C_HTML_END") %>