starting test scripts
[xorg/xkeyboard-config] / tests / listCIs.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   
9   <xsl:template match="configItem">
10     <xsl:if test="name(..) = $type">
11       <xsl:value-of select="./name"/>
12     </xsl:if>
13   </xsl:template>
14
15 </xsl:stylesheet>