%@ page session="true" %><%--
--%><%--
--%><%
xmlBean.initialize(Bean.getDetectedVersion());
%><%
// next page
String nextPage = "step_4_module_selection.jsp";
// previous page
String prevPage = "step_2_settings.jsp";
boolean isFormSubmitted = (request.getParameter("submit") != null);
String htmlAvailablePlugins = "";
if (Bean.isInitialized()) {
if (isFormSubmitted) {
xmlBean.execute(Bean);
response.sendRedirect(nextPage);
return;
}
htmlAvailablePlugins = xmlBean.htmlAvailablePlugins(Bean);
if (htmlAvailablePlugins.trim().length()==0) {
response.sendRedirect(nextPage);
return;
}
}
%>
<%= Bean.getHtmlPart("C_HTML_START") %>
OpenCms Update Wizard
<%= Bean.getHtmlPart("C_HEAD_START") %>
<%= Bean.getHtmlPart("C_STYLES") %>
<%= Bean.getHtmlPart("C_STYLES_SETUP") %>
<%= Bean.getHtmlPart("C_SCRIPT_HELP") %>
<%= Bean.getHtmlPart("C_HEAD_END") %>
OpenCms Update Wizard - XML Configuration Files Update
<%= Bean.getHtmlPart("C_CONTENT_SETUP_START") %>
<% if (Bean.isInitialized()) { %>
<%= Bean.getHtmlPart("C_BUTTONS_END") %>
<% } else { %>
<%= Bean.displayError("")%>
<%= Bean.getHtmlPart("C_CONTENT_END") %>
<% } %>
<%= Bean.getHtmlPart("C_HTML_END") %>