1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111
|
<?xml version="1.0"?>
<!--
-
- $Id: sx_output.xsl,v 1.2 2006/08/15 22:09:21 source Exp $
-
- This file is part of the OpenLink Software Virtuoso Open-Source (VOS)
- project.
-
- Copyright (C) 1998-2006 OpenLink Software
-
- This project is free software; you can redistribute it and/or modify it
- under the terms of the GNU General Public License as published by the
- Free Software Foundation; only version 2 of the License, dated June 1991.
-
- This program is distributed in the hope that it will be useful, but
- WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- General Public License for more details.
-
- You should have received a copy of the GNU General Public License along
- with this program; if not, write to the Free Software Foundation, Inc.,
- 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
-
-
-->
<xsl:stylesheet version = '1.0'
xmlns:xsl='http://www.w3.org/1999/XSL/Transform'>
<xsl:output method="html"/>
<xsl:template match="/rows">
<table border="1">
<xsl:for-each select="*">
<tr><th>Result row <xsl:value-of select="position()" /> of <xsl:value-of select="last()"/></th><td width="100%">
<xsl:apply-templates select="." />
</td></tr>
</xsl:for-each>
</table>
</xsl:template>
<xsl:template match="/rows/row">
<xsl:apply-templates select="node()" />
</xsl:template>
<xsl:template match="*">
<xsl:text><</xsl:text>
<xsl:value-of select="name()"/>
<xsl:call-template name="attr"/>
<xsl:if test="empty(node())">
<xsl:text>/></xsl:text>
</xsl:if>
<xsl:if test="not(empty(node()))">
<xsl:text>></xsl:text>
<xsl:choose>
<xsl:when test="*">
<xsl:variable name="indent">
<xsl:for-each select="ancestor::*[name() != 'rows'][name() != 'row']">    </xsl:for-each>
</xsl:variable>
<xsl:for-each select="node()">
<br/>    <xsl:value-of select="$indent"/>
<xsl:apply-templates select="." />
</xsl:for-each>
<br/><xsl:value-of select="$indent"/>
</xsl:when>
<xsl:otherwise>
<xsl:apply-templates select="node()" />
</xsl:otherwise>
</xsl:choose>
<xsl:text></</xsl:text>
<xsl:value-of select="name()"/>
<xsl:text>></xsl:text>
</xsl:if>
</xsl:template>
<xsl:template name="attr">
<xsl:for-each select="@*">
<xsl:text> </xsl:text>
<Font style="color:green"><xsl:value-of select="name()"/></Font>
<xsl:text>="</xsl:text>
<Font style="color:blue"><xsl:value-of select="."/></Font>
<xsl:text>"</xsl:text>
</xsl:for-each>
</xsl:template>
<xsl:template match="text()">
<Font style="color:red"><nobr><xsl:value-of select="." /></nobr></Font>
</xsl:template>
<!--
<xsl:template name="elem">
<xsl:text><</xsl:text>
<xsl:value-of select="name()"/>
<xsl:call-template name="attr"/>
<xsl:text>></xsl:text>
<xsl:for-each select="child::*">
<xsl:call-template name="elem"/>
</xsl:for-each>
</xsl:template>
<xsl:template name="attr">
<xsl:text> id = </xsl:text>
<xsl:value-of select="./@id"/>
<xsl:for-each select="child::*">
<xsl:value-of select="./@id"/>
<xsl:text> </xsl:text>
</xsl:for-each>
</xsl:template>
-->
</xsl:stylesheet>
|