<%
if(setupTests.isRed()) {
out.print(" ");
} else if (setupTests.isYellow()) {
out.print(" ");
} else {
out.print(" ");
}
%>
|
<%
if (setupTests.isRed()) {
out.println(" Your system does not have the necessary components to use Alkacon OpenCms. It is assumed that OpenCms will not run on your system. ");
out.println(violatedConditions);
} else if (setupTests.isYellow()) {
out.print("Your system uses components which have not been tested to work with Alkacon OpenCms. It is possible that OpenCms will not run on your system.");
out.println(questionableConditions);
} else {
out.println("Your system uses components which have been tested to work properly with Alkacon OpenCms.");
if (!"".equals(questionableConditions)) {
out.print(" But, please, be sure to check following points:");
out.println(questionableConditions);
}
}
%> |