at least variants pass ok with tests
[xorg/xkeyboard-config] / tests / listCI2.xsl
1 <?xml version="1.0" encoding="UTF-8"?>
2 <xsl:stylesheet version="1.0" 
3   xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
4   >
5 <xsl:output method="text"/>
6
7   <xsl:param name="type"/>
8   <xsl:param name="parentId"/>
9   
10   <xsl:template match="configItem">
11     <xsl:if test="name(..) = $type and ../../../configItem/name = $parentId">
12       <xsl:value-of select="./name"/>
13     </xsl:if>
14   </xsl:template>
15
16 </xsl:stylesheet>