SuperX-Kernmodul
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
1.1 KiB

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" encoding="UTF-8" omit-xml-declaration="yes" />
<xsl:template match="/">
<xsl:apply-templates select="ergebnisse" />
</xsl:template>
<xsl:template match="ergebnisse">
<xsl:apply-templates select="ergebnis" />
</xsl:template>
<xsl:template match="ergebnis">
<xsl:apply-templates select="ergebniselement" />
</xsl:template>
<xsl:template match="ergebniselement">
<xsl:apply-templates select="sqlerg" />
</xsl:template>
<xsl:template match="sqlerg">
<xsl:apply-templates select="row" />
</xsl:template>
<xsl:template match="row">
<xsl:apply-templates select="col" />
</xsl:template>
<xsl:template match="col">
<xsl:apply-templates select="wert" />
</xsl:template>
<xsl:template match="wert">
<xsl:value-of select="." disable-output-escaping="yes" />
</xsl:template>
<!-- <xsl:template match="maskenname" /> -->
</xsl:stylesheet>