Summary.xml revision ada1678a4262b208a7b87391f520a7767d25287c
<?xml version="1.0" encoding="UTF-8"?>
<!--
DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
The contents of this file are subject to the terms of either the GNU
General Public License Version 2 only ("GPL") or the Common Development
and Distribution License("CDDL") (collectively, the "License"). You
may not use this file except in compliance with the License. You can
obtain a copy of the License at
or packager/legal/LICENSE.txt. See the License for the specific
language governing permissions and limitations under the License.
When distributing the software, include this License Header Notice in each
file and include the License file at packager/legal/LICENSE.txt.
GPL Classpath Exception:
Oracle designates this particular file as subject to the "Classpath"
exception as provided by Oracle in the GPL Version 2 section of the License
file that accompanied this code.
Modifications:
If applicable, add the following below the License Header, with the fields
enclosed by brackets [] replaced by your own identifying information:
"Portions Copyright [year] [name of copyright owner]"
Contributor(s):
If you wish your version of this file to be governed by only the CDDL or
only the GPL Version 2, indicate your decision by adding "[Contributor]
elects to include this software in this distribution under the [CDDL or GPL
Version 2] license." If you don't indicate a single choice of license, a
recipient has the option to distribute your version of this file under
either the CDDL, the GPL Version 2 or to extend the choice of license to
its licensees as provided above. However, if you add GPL Version 2 code
and therefore, elected the GPL Version 2 license, then the option applies
only if the new code is made subject to such option by the copyright
holder.
-->
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:oor="http://openoffice.org/2001/registry"
xsi:schemaLocation="http://www.sun.com/jds/apoc/2004/template /consumables/schemas/config/apoc/policytemplate.xsd">
<apt:category apt:name="Summary" apt:label="Summary" >
<apt:page apt:name="summary_page" apt:label="Summary" >
<apt:section apt:name="summary" apt:label="Summary" >
<apt:property apt:name="SUMMARY_OF_COMPONENTS"
apt:dataPath=""
apt:type="xs:string">
<apt:prop-value></apt:prop-value>
<apt:visual>
<apt:htmlPanel/>
</apt:visual>
</apt:property>
</apt:section>
<apt:scriptHandler apt:scriptLanguage="beanshell" >
<apt:scriptCode><![CDATA[
import org.openinstaller.bus.*;
import org.openinstaller.core.*;
import org.openinstaller.provider.sims.*;
import org.openinstaller.provider.task.*;
import org.openinstaller.util.*;
import org.openinstaller.util.install.Common;
import java.io.*;
/* determines whether a summary represents a configure operation */
boolean isConfig(Summary aSum) {
return (aSum.getOperation() == OPTYPE.CONFIGURE ||
aSum.getOperation() == OPTYPE.MIGRATE ||
}
void run () {
File logsLocation = (File) Scripting.getInterpreter().get("gLogFile");
// Requesting the Summary object
theSummary = (List) Scripting.getInterpreter().get("gSummary");
theSummaryFile = (java.io.File) Scripting.getInterpreter().get("gSummaryFile");
// Populating the install data from the Summary object in a table
String theFontStart = "<font face='Sans-Serif' size='3'>";
StringBuilder theContent = new StringBuilder("<html>");
theContent.append("<body>").append(theFontStart);
/* get processing mode */
BusRequest modeReq = new BusRequest("ConfigRequest",
new EngineConfigCommand(EngineConfigCommand.COMMAND.GET_CONFIG, EngineConfigItem.DISPLAY_MODE));
BusResponse modeResp = bus.publishRequest(modeReq, "svc://general/EngineConfig");
String mode = (String)modeResp.getResult();
theSumURL = theSummaryFile.toURI().toURL();
theNextStepsURL = new URI("http://www.oracle.com/pls/topic/lookup?ctx=821-2427&id=sjsaseeig").toURL();
theLogURL = logsLocation.toURI().toURL();
/* determine if anything failed */
boolean partial = false;
for (Summary sum : theSummary) {
if (!sum.getStatus()) {
partial = true;
break;
}
}
/* get processing mode */
String theMode = Common.getProcessingMode();
if (partial) {
theContent.append("<center><h3>" + Msg.get("OVERALL_STATUS", new String[] {}) + ": <font color=\"red\">" + Msg.get("INCOMPLETE", new String[] {}) + "</font></h3></center>");
} else {
theContent.append("<center><h3>" + Msg.get("OVERALL_STATUS", new String[] {}) + ": <font color=\"green\">" + Msg.get("COMPLETE", new String[] {}) + "</font></h3></center>");
}
if (theSummaryFile != null && !theMode.equals("REMOVE")) {
theContent.append("<em>" + Msg.get("DETAILED_REPORT", new String[] {"<a href=\"" + theSumURL+"\">", "</a>", "<a href=\"" + theNextStepsURL + "\">", "</a>"}) + "</em>");
}
if (logsLocation != null) {
theContent.append("<em>" + Msg.get("LOGS_REPORT", new String[] {"<a href=\"" + theLogURL + "\">", "</a>"}) + "</em>");
}
theContent.append("<p>");
if (logsLocation != null) {
theContent.append("<br>");
if (theSummaryFile != null) {
theContent.append("<a href=\"" + theSumURL + "\"> " + theSummaryFile.getName()+"</a><br>");
}
theContent.append("<a href=\"" + theLogURL + "\"> " + logsLocation.getName()+"</a>");
}
theContent.append("<table border='0'>");
theContent.append("<tr><th align='left'>" + theFontStart + Msg.get("SUMMARY_PRODUCT_NAME", new String[] {}) + "</font></th><th align='left'>" + theFontStart + Msg.get("SUMMARY_STATUS", new String[] {}) + "</font></th></tr>");
for (Summary sum : theSummary) {
theContent.append("<tr>");
String productDescription = "";
if (sum.getProductName().equals("glassfish")) {
productDescription = "GlassFish V3";
}
if (sum.getProductName().equals("updatetool")) {
productDescription = "Update Tool Bootstrap";
}
if (sum.getProductName().equals("Engine")) {
productDescription = "Uninstallation Software";
}
theContent.append("<td>" + theFontStart + productDescription + "</font></td>");
if (!sum.getStatus()) {
theContent.append("<td><font color=\"red\">" + theFontStart + sum.getStatusMsg() + "</font></font></td>");
} else {
theContent.append("<td>" + theFontStart + sum.getStatusMsg() + "</font></td>");
}
theContent.append("</tr>");
}
theContent.append("</table></font></body></html>");
// Setting the content in the HTML panel
summary = wizard.getComponentByName(content, "SUMMARY_OF_COMPONENTS");
// set whether to show external browser or not
BusRequest opsReq = new BusRequest("ConfigRequest",
new EngineConfigCommand(EngineConfigCommand.COMMAND.GET_CONFIG, EngineConfigItem.UI_OPTIONS));
BusResponse opsResp = bus.publishRequest(opsReq, "svc://general/EngineConfig");
String mode = (String)opsResp.getResult();
if (mode != null) {
summary.setInternalFlag(mode.toLowerCase().contains("internalbrowseronly"));
}
wizard.enableHelp(true);
wizard.enableExit(true);
}
return (Runnable)this;]]>
</apt:scriptCode>
</apt:scriptHandler>
</apt:page>
</apt:category>
</apt:template>