123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- Licensed Materials - Property of IBM
- IBM Cognos Products: fmmd
- (C) Copyright IBM Corp. 2003, 2013
- US Government Users Restricted Rights - Use, duplication or disclosure
- restricted by GSA ADP Schedule Contract with IBM Corp.
- -->
- <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
- <xsl:output method="html"/>
- <xsl:template match="text()"/>
- <xsl:template match="/">
- <HTML>
- <HEAD>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
- <style type="text/css">
- .all
- {
- font: normal normal normal 10pt/12pt Tahoma, arial, geneva, helvetica, sans-serif;
- color: #000000;
- text-align: left;
- }
- </style>
- </HEAD>
- <BODY>
- <table width="100%" style="border: 1px groove; padding" border="0">
- <xsl:apply-templates/>
- </table>
- </BODY>
- </HTML>
- </xsl:template>
- <xsl:template match="comment()">
- <xsl:variable name="string">
- <xsl:value-of select="."/>
- </xsl:variable>
- <xsl:variable name="testString">
- <xsl:value-of select="translate($string,'ABCDEFGHIJKLMNOPQRSTUVWXYZ','abcdefghijklmnopqrstuvwxyz')"/>
- </xsl:variable>
- <xsl:if test="not(contains($testString,'reserved map')) and not(contains($testString, 'xml spy')) and not(contains($testString,'xmlspy'))">
- <tr>
- <th align="left" class="all">
- <xsl:value-of select="$string"/>
- <hr/>
- </th>
- </tr>
- </xsl:if>
- </xsl:template>
- </xsl:stylesheet>
|