1 <?xml version="1.0" encoding="UTF-8"?>
2 <xsl:stylesheet version="1.0"
3 xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
5 <xsl:output method="text"
7 doctype-system="xkb.dtd"
10 <xsl:template match="modelList|optionList|name|description|shortDescription|configItem"/>
11 <xsl:strip-space elements="*"/>
13 <xsl:template match="layoutList"><xsl:apply-templates select="./layout"/></xsl:template>
15 <xsl:template match="variantList"><xsl:apply-templates select="./variant"/></xsl:template>
17 <xsl:template match="layout"><xsl:text>
18 </xsl:text><xsl:value-of select="./configItem/name"/>:"<xsl:value-of select="./configItem/description"/>"<xsl:apply-templates match="./variantList/variant"/></xsl:template>
20 <xsl:template match="variant"><xsl:text>
21 </xsl:text><xsl:value-of select="../../configItem/name"/>(<xsl:value-of select="./configItem/name"/>):"<xsl:value-of select="../../configItem/description"/> - <xsl:value-of select="./configItem/description"/>"</xsl:template>