summaryrefslogtreecommitdiffstats
path: root/xslt/mrwCecChips.xsl
diff options
context:
space:
mode:
Diffstat (limited to 'xslt/mrwCecChips.xsl')
-rw-r--r--xslt/mrwCecChips.xsl73
1 files changed, 73 insertions, 0 deletions
diff --git a/xslt/mrwCecChips.xsl b/xslt/mrwCecChips.xsl
new file mode 100644
index 0000000..94f87d0
--- /dev/null
+++ b/xslt/mrwCecChips.xsl
@@ -0,0 +1,73 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!-- IBM_PROLOG_BEGIN_TAG -->
+<!-- This is an automatically generated prolog. -->
+<!-- -->
+<!-- $Source: mrwCecChips.xsl $ -->
+<!-- -->
+<!-- OpenPOWER HostBoot Project -->
+<!-- -->
+<!-- Contributors Listed Below - COPYRIGHT 2014 -->
+<!-- [+] International Business Machines Corp. -->
+<!-- -->
+<!-- -->
+<!-- Licensed under the Apache License, Version 2.0 (the "License"); -->
+<!-- you may not use this file except in compliance with the License. -->
+<!-- You may obtain a copy of the License at -->
+<!-- -->
+<!-- http://www.apache.org/licenses/LICENSE-2.0 -->
+<!-- -->
+<!-- Unless required by applicable law or agreed to in writing, software -->
+<!-- distributed under the License is distributed on an "AS IS" BASIS, -->
+<!-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or -->
+<!-- implied. See the License for the specific language governing -->
+<!-- permissions and limitations under the License. -->
+<!-- -->
+<!-- IBM_PROLOG_END_TAG -->
+<xsl:stylesheet version="1.0"
+ xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
+ xmlns:mrwpaths="http://w3.ibm.com/stg/power-firmware/schema/mrwpaths"
+ xmlns="http://w3.ibm.com/stg/power-firmware/schema/mrwpaths"
+ xmlns:ex="http://exslt.org/dates-and-times"
+ extension-element-prefixes="ex">
+
+ <!-- Pass in the system name with: xsltproc \-\-stringparam system <the systemName> -->
+ <xsl:param name="system"/>
+
+ <xsl:output method="html" indent="yes"/>
+
+ <xsl:template match="/">
+ <html>
+ <head>
+ <title>CEC Chip Information</title>
+ </head>
+ <body>
+ <h1>CEC Chip Information</h1>
+ <br/>
+ <br/>
+ <table border="3" cellpadding ="5">
+ <tr>
+ <th>Target</th>
+ <th>Instance Path</th>
+ <th>Scom Path</th>
+ <th>Scan Path</th>
+ <th>Mailbox Path</th>
+ </tr>
+
+ <xsl:for-each select="mrwpaths:chips/mrwpaths:chip">
+ <tr>
+ <td><xsl:value-of select="mrwpaths:target/mrwpaths:name"/>:n<xsl:value-of select="mrwpaths:target/mrwpaths:node"/>:p<xsl:value-of select="mrwpaths:target/mrwpaths:position"/></td>
+ <td><xsl:value-of select="mrwpaths:instance-path"/></td>
+ <td><xsl:value-of select="mrwpaths:scom-path"/></td>
+ <td><xsl:value-of select="mrwpaths:scan-path"/></td>
+ <td><xsl:value-of select="mrwpaths:mailbox-path"/></td>
+ </tr>
+ </xsl:for-each>
+ </table>
+
+ <br/><br/>
+ </body>
+
+ </html>
+ </xsl:template>
+
+</xsl:stylesheet>
OpenPOWER on IntegriCloud